index.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <view class="user-info-wrap">
  3. <uni-list>
  4. <uni-list-item class="bordBot" :to="item.to" :title="item.title" showArrow thumb-size="sm" v-for="(item,index) in list" :key="index" />
  5. </uni-list>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. list:[
  13. {title:'娇骄儿会员服务须知',to:'/myPages/TermsOfService/index?name='+'娇骄儿会员服务须知'+'&type=' + 1},
  14. {title:'娇骄儿会员储值须知',to:'/myPages/TermsOfService/index?name='+'娇骄儿会员储值须知'+'&type=' + 8},
  15. {title:'娇骄儿隐私政策',to:'/myPages/TermsOfService/index?name='+'娇骄儿隐私政策'+'&type=' + 3},
  16. {title:'娇骄儿预约须知',to:'/myPages/TermsOfService/index?name='+'娇骄儿预约须知'+'&type=' + 5},
  17. {title:'娇骄儿服务对象协议',to:'/myPages/TermsOfService/index?name='+'娇骄儿服务对象协议'+'&type=' + 6},
  18. // {title:'储值使用说明',to:'/myPages/TermsOfService/index?name='+'储值使用说明'+'&type=' + 9},
  19. {title:'娇骄儿88卡权益服务协议',to:'/myPages/TermsOfService/index?name='+'娇骄儿88卡权益服务协议'+'&type=' + 4}
  20. ],
  21. };
  22. },
  23. mounted() {
  24. },
  25. onLoad(e) {
  26. },
  27. methods: {
  28. }
  29. };
  30. </script>
  31. <style lang="scss">
  32. .bordBot{
  33. border-bottom: 1px solid #F7F7F7;
  34. }
  35. .user-info-wrap{
  36. margin-left: 12px;
  37. margin-right: 12px;
  38. /* 导航菜单 */
  39. .nav-bar{
  40. background: #fff;
  41. border-radius: 10px;
  42. margin-top: 12px;
  43. /* 商店信息 */
  44. .nav-content{
  45. padding-top: 10px;
  46. padding-bottom: 6px;
  47. border-bottom: 1px solid #f7f7f7;
  48. .nav-info{
  49. display: flex;
  50. padding-left: 10px;
  51. .logo {
  52. width: 12%;
  53. text-align: center;
  54. image{
  55. width: 24px;
  56. height: 24px;
  57. }
  58. }
  59. .nav-desc{
  60. width: 60%;
  61. display: flex;
  62. line-height: 30px;
  63. .nav-name{
  64. font-size: 16px;
  65. width: 60%;
  66. }
  67. .change-store{
  68. text-align: right;
  69. width: 40%;
  70. font-size: 12px;
  71. color: #666;
  72. }
  73. }
  74. .arrow-right{
  75. width:40%;
  76. text-align: right;
  77. margin: 0 auto;
  78. cursor: pointer;
  79. padding-top: 3px;
  80. display: flex;
  81. justify-content: flex-end;
  82. align-items: center;
  83. image{
  84. width: 18px;
  85. height: 18px;
  86. }
  87. .head-img {
  88. text-align: center;
  89. image{
  90. width: 24px;
  91. height: 24px;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. }
  98. .sure-btn{
  99. margin-top: 20px;
  100. width: 100%;
  101. .btn{
  102. background: #FF6C7B;
  103. text-align: center;
  104. border-radius: 14px;
  105. height: 36px;
  106. line-height: 36px;
  107. color: #fff;
  108. font-size: 16px;
  109. }
  110. }
  111. }
  112. </style>