Mine.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="top">
  3. <view class="head">
  4. <view>
  5. <view class="left">
  6. <view class="title">益禾堂</view>
  7. <text class="text1">已认证</text>
  8. </view>
  9. <text class="text2">南京市**学校江宁学院一楼食堂</text>
  10. </view>
  11. <image class="imgBox" src="https://bpic.588ku.com/illus_water_img/21/07/05/ecab6de5a7b2972500459ba95cf97deb.jpg"></image>
  12. </view>
  13. <view class="content">
  14. <u-cell-group :border="false" class="from">
  15. <view class="list" @click="navigateTo('/pages/Storesettings')">
  16. <image class="imgBox2" src="https://ticket-exchange.oss-cn-hangzhou.aliyuncs.com/image/2021-09-27-15-13-23CQyDfDRP.png"></image>
  17. <u-cell-item title="店铺设置" is-link></u-cell-item>
  18. </view>
  19. <view class="list" @click="navigateTo('/pages/Applicationshop')">
  20. <image class="imgBox2" src="https://ticket-exchange.oss-cn-hangzhou.aliyuncs.com/image/2021-09-27-15-13-44aNgKvtbx.png"></image>
  21. <u-cell-item title="认证信息" is-link></u-cell-item>
  22. </view>
  23. <view class="list" @click="navigateTo('/pages/Standard')">
  24. <image class="imgBox2" src="https://ticket-exchange.oss-cn-hangzhou.aliyuncs.com/image/2021-09-27-15-14-29lqHkdIPq.png"></image>
  25. <u-cell-item title="交易规范" is-link></u-cell-item>
  26. </view>
  27. <view class="list" @click="navigateTo('/pages/Setup')">
  28. <image class="imgBox2" src="https://ticket-exchange.oss-cn-hangzhou.aliyuncs.com/image/2021-09-27-15-15-07XGsWDCTu.png"></image>
  29. <u-cell-item title="设置" is-link></u-cell-item>
  30. </view>
  31. </u-cell-group>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import { mapState } from 'vuex';
  37. export default {
  38. data() {
  39. return {
  40. };
  41. },
  42. computed: {
  43. ...mapState(['systemInfo'])
  44. },
  45. methods: {
  46. }
  47. };
  48. </script>
  49. <style lang="scss" scoped>
  50. .top {
  51. background: #214bbe;
  52. height: 114px;
  53. .head{
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-between;
  57. padding: 10px 30px 20px;
  58. .left{
  59. display: flex;
  60. align-items: center;
  61. .title{
  62. font-size: 22px;
  63. font-weight: bold;
  64. color: #FFFFFF;
  65. line-height: 26px;
  66. }
  67. .text1{
  68. width: 64px;
  69. height: 20px;
  70. background: rgba(255, 255, 255, 0.2);
  71. border-radius: 2px;
  72. font-size: 13px;
  73. font-weight: 400;
  74. color: #FFFFFF;
  75. line-height: 20px;
  76. text-align: center;
  77. margin-left: 10px;
  78. }
  79. }
  80. .text2{
  81. font-size: 13px;
  82. font-weight: 400;
  83. color: #A7BEFF;
  84. line-height: 24px;
  85. margin-top: 6px;
  86. }
  87. .imgBox{
  88. width: 70px;
  89. height: 70px;
  90. border-radius: 50%;
  91. }
  92. }
  93. .content {
  94. background: #ffffff;
  95. border-radius: 16px 16px 0px 0px;
  96. padding: 20px;
  97. display: flex;
  98. align-items: center;
  99. }
  100. .from{
  101. /deep/ .u-iconfont {
  102. font-size: 14px !important;
  103. }
  104. /deep/ .u-cell_title {
  105. font-size: 14px;
  106. }
  107. /deep/ .u-cell {
  108. padding: 20px 0;
  109. color: #000000;
  110. font-weight: bold;
  111. }
  112. /deep/ .u-cell__value {
  113. color: #000000;
  114. font-weight: 400;
  115. }
  116. /deep/ .u-field {
  117. padding: 23px 0;
  118. color: #000000;
  119. font-weight: bold;
  120. text-align: right;
  121. }
  122. /deep/ .uni-input-input {
  123. text-align: right;
  124. font-weight: 400;
  125. }
  126. /deep/ .u-label {
  127. span {
  128. width: 90px;
  129. }
  130. }
  131. /deep/ .u-cell__value{
  132. height: 27px;
  133. }
  134. .list{
  135. display: flex;
  136. align-items: center;
  137. .imgBox2{
  138. width: 27px;
  139. height: 24px;
  140. margin-right: 14px;
  141. }
  142. }
  143. }
  144. }
  145. </style>