图书馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
3.6 KiB

4 months ago
4 months ago
4 weeks ago
4 months ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 months ago
4 weeks ago
4 weeks ago
4 months ago
4 months ago
4 weeks ago
4 months ago
4 months ago
4 months ago
4 months ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 months ago
4 months ago
4 weeks ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page-container">
  3. <!-- 顶部背景 + 标题 -->
  4. <view class="top-bar">
  5. <image class="top-bar-bg" src="@/static/images/mingqi-beij@2x.png" mode="aspectFill"></image>
  6. <view class="library-info">
  7. <image class="avatar" src="@/static/images/logo.jpg" mode="aspectFill"></image>
  8. <view class="library-name">葛店经济技术开发区图书馆</view>
  9. <view class="sub-title">信用免押金办证流程</view>
  10. </view>
  11. </view>
  12. <view class="online-card">
  13. <view class="online-item">
  14. <text>支付宝扫码进入借阅宝生活号</text>
  15. <image src="/subpkg/static/register/1.jpg" mode="widthFix" />
  16. </view>
  17. <view class="online-item">
  18. <text>进入服务点击图书馆</text>
  19. <image src="/subpkg/static/register/2.jpg" mode="widthFix" />
  20. </view>
  21. <view class="online-item">
  22. <text>点击切换进入葛店经济技术开发区图书馆</text>
  23. <text>然后点击暂无借阅证点击注册</text>
  24. <image src="/subpkg/static/register/3.jpg" mode="widthFix" />
  25. </view>
  26. <view class="online-item">
  27. <text>进入我馆办证界面设置密码</text>
  28. <image src="/subpkg/static/register/4.jpg" mode="widthFix" />
  29. </view>
  30. <view class="online-item">
  31. <text>点击去授权</text>
  32. <image src="/subpkg/static/register/5.jpg" mode="widthFix" />
  33. </view>
  34. <view class="online-item">
  35. <text>下一步然后点击同意协议</text>
  36. <image src="/subpkg/static/register/6.jpg" mode="widthFix" />
  37. </view>
  38. <view class="online-item">
  39. <text>注册成功后点击前往服务大厅</text>
  40. <text>借阅证即成功办理</text>
  41. <image src="/subpkg/static/register/7.jpg" mode="widthFix" />
  42. </view>
  43. </view>
  44. <view class="tips-card">
  45. <view class="tips-title">借阅宝注册成功即可凭<text style="padding: 0 8px; color: #007AFF;">电子证</text>借阅图书</view>
  46. <view class="tips-text">
  47. 若需换取实体读者证需持本人身份证原件前往二楼总服务办理
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. };
  57. },
  58. onLoad() {
  59. },
  60. methods: {
  61. }
  62. };
  63. </script>
  64. <style lang="scss" scoped>
  65. page {
  66. background-color: #f5f7fa;
  67. }
  68. .page-container {
  69. min-height: 100vh;
  70. background-color: #f5f7fa;
  71. padding-bottom: 20px;
  72. }
  73. /* 顶部 */
  74. .top-bar {
  75. height: 210px;
  76. .library-info {
  77. position: relative;
  78. z-index: 2;
  79. color: #fff;
  80. }
  81. }
  82. .online-card {
  83. margin: -30px 12px 12px;
  84. position: relative;
  85. z-index: 3;
  86. .online-item {
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. margin-bottom: 20px;
  91. padding: 16px;
  92. background: #fff;
  93. border-radius: 12px;
  94. box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  95. text{
  96. font-size: 14px;
  97. font-weight: bold;
  98. color: #000;
  99. margin-bottom: 10px;
  100. }
  101. }
  102. image {
  103. width: 100%;
  104. max-width: 100%;
  105. display: block;
  106. margin: 0 auto;
  107. border-radius: 8px;
  108. // box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  109. }
  110. }
  111. /* 温馨提示 */
  112. .tips-card {
  113. margin: 0 12px;
  114. background: #fff;
  115. border-radius: 10px;
  116. padding: 15px;
  117. box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  118. .tips-title {
  119. font-size: 16px;
  120. font-weight: bold;
  121. color: #333;
  122. margin-bottom: 8px;
  123. }
  124. .tips-text {
  125. font-size: 12px;
  126. color: #666;
  127. line-height: 1.6;
  128. }
  129. }
  130. </style>