index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <view class="app-content">
  3. <view class="header"><view class="log" @tap="fall"></view>{{ navname }}<view class="up" @tap="seach"></view></view>
  4. <view class="nav">
  5. <view :class="action === index ? 'nav_lists': 'nav_list'" v-for="(item, index) in list" :key="index" @tap="lop(index)">{{item.name}}</view>
  6. </view>
  7. <view class="content">
  8. <view class="list" v-for="(item, index) in detailedTable" :key="index" @tap = 'uplist(item)'>
  9. {{ item.name }}
  10. <view class="listup"></view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. import Nav from '../../components/header/nav.vue'
  17. export default {
  18. data() {
  19. return {
  20. navname: '帮助',
  21. action:0,
  22. list: [{
  23. name: '功能模块'
  24. },{
  25. name: '业务流程'
  26. },{
  27. name: '常见问题'
  28. }],
  29. detailedTable: [
  30. {
  31. name: 'App启动'
  32. },
  33. {
  34. name: '用户登录'
  35. },
  36. {
  37. name: '首页'
  38. },
  39. {
  40. name: '行李处理'
  41. },
  42. {
  43. name: '行李提取'
  44. },
  45. {
  46. name: '消息'
  47. },
  48. {
  49. name: '我的'
  50. },
  51. ]
  52. }
  53. },
  54. created(option) {
  55. },
  56. onLoad(){
  57. },
  58. onUnload() {
  59. },
  60. onShow() {
  61. },
  62. mounted() {
  63. },
  64. components: {
  65. Nav
  66. },
  67. methods: {
  68. uplist (item) {
  69. if (item.name) {
  70. }
  71. // uni.redirectTo({
  72. // url: "/pages/loadingdetails/index"
  73. // })
  74. },
  75. lop(index) {
  76. this.action = index
  77. },
  78. seach () {
  79. uni.redirectTo({
  80. url: "/pages/search/index"
  81. })
  82. },
  83. fall () {
  84. uni.switchTab({
  85. url: "/pages/mypage/index"
  86. })
  87. }
  88. },
  89. }
  90. </script>
  91. <style lang="scss" scoped>
  92. .app-content{
  93. >.header{
  94. width: 100%;
  95. height: 4.375rem;
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. // background: rgba(49,85,99,1);
  100. color: rgb(16, 17, 22);
  101. font-family: Noto Sans SC;
  102. font-size: 1rem;
  103. position: relative;
  104. >.log{
  105. width: .375rem;
  106. height: .75rem;
  107. font-size: .75rem;
  108. position: absolute;
  109. left: 1.5rem;
  110. background: url('../../static/ico@1x.png') no-repeat;
  111. background-size: 100% 100%;
  112. }
  113. >.up{
  114. width: .8456rem;
  115. height: .8456rem;
  116. position: absolute;
  117. right: 1.5rem;
  118. // background: url('../../static/search.png') no-repeat;
  119. // background-size: 100% 100%;
  120. // color: rgb(37, 121, 160);
  121. // font-family: Noto Sans SC;
  122. // font-size: .875rem;
  123. // font-weight: 500;
  124. }
  125. }
  126. >.nav{
  127. height: 2rem;
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. padding: 0 .75rem 0 .75rem;
  132. >.nav_list{
  133. margin: 0 .75rem 0 .75rem;
  134. color: rgb(16, 17, 22);
  135. font-family: Noto Sans SC;
  136. font-size: 14px;
  137. height: 100%;
  138. }
  139. >.nav_lists{
  140. margin: 0 .75rem 0 .75rem;
  141. color: rgb(37, 121, 160);
  142. font-family: Noto Sans SC;
  143. font-size: 14px;
  144. font-size: 14px;
  145. height: 100%;
  146. border-bottom: 2px solid rgb(37, 121, 160);
  147. }
  148. }
  149. >.content{
  150. margin-left: 1.5rem;
  151. >.list{
  152. height: 3.375rem;
  153. display: flex;
  154. align-items: center;
  155. border-bottom: 1px solid rgb(238, 238, 238);
  156. position: relative;
  157. color: rgb(0, 0, 0);
  158. font-family: Noto Sans SC;
  159. font-size: 13px;
  160. font-weight: 400;
  161. >p{
  162. color: rgb(0, 0, 0);
  163. font-family: Noto Sans SC;
  164. font-size: 13px;
  165. font-weight: 400;
  166. margin-right: 2.1875rem;
  167. }
  168. >.listup{
  169. width: .25rem;
  170. height: .5rem;
  171. background: url('../../static/icos.png') no-repeat;
  172. background-size: 100% 100%;
  173. position: absolute;
  174. right: 1.5rem;
  175. }
  176. }
  177. >.picturearea{
  178. margin-top: 1.875rem;
  179. >.name{
  180. color: rgb(0, 0, 0);
  181. font-family: Noto Sans SC;
  182. font-size: .8125rem;
  183. font-weight: 500;
  184. }
  185. >.content_list{
  186. width: 100%;
  187. display: flex;
  188. margin-top: 1.25rem;
  189. >.mg{
  190. width: 5.5rem;
  191. height: 5.5rem;
  192. background: rgb(197, 207, 211);
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. margin-right: .625rem;
  197. >.mg_lg{
  198. width: 1.75rem;
  199. height: 1.75rem;
  200. background: url('../../static/shi.png') no-repeat;
  201. background-size: 100% 100%;
  202. }
  203. }
  204. }
  205. }
  206. }
  207. }
  208. </style>