index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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'>
  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. name: '卸机'
  30. },{
  31. name: '卸车'
  32. }],
  33. detailedTable: [
  34. {
  35. name: '离港:HU7410 CKG-CSX (113/171)'
  36. },
  37. {
  38. name: '离港:HU7410 CKG-CSX (113/171)'
  39. },
  40. {
  41. name: '离港:HU7410 CKG-CSX (113/171)'
  42. },
  43. {
  44. name: '离港:HU7410 CKG-CSX (113/171)'
  45. },
  46. {
  47. name: '离港:HU7410 CKG-CSX (113/171)'
  48. }
  49. ]
  50. }
  51. },
  52. created(option) {
  53. },
  54. onLoad(){
  55. },
  56. onUnload() {
  57. },
  58. onShow() {
  59. },
  60. mounted() {
  61. },
  62. components: {
  63. Nav
  64. },
  65. methods: {
  66. uplist () {
  67. uni.redirectTo({
  68. url: "/pages/loadingdetails/index"
  69. })
  70. },
  71. lop(index) {
  72. this.action = index
  73. },
  74. seach () {
  75. uni.redirectTo({
  76. url: "/pages/search/index"
  77. })
  78. },
  79. fall () {
  80. uni.switchTab({
  81. url: "/pages/mypage/index"
  82. })
  83. }
  84. },
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .app-content{
  89. >.header{
  90. width: 100%;
  91. height: 4.375rem;
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. // background: rgba(49,85,99,1);
  96. color: rgb(16, 17, 22);
  97. font-family: Noto Sans SC;
  98. font-size: 1rem;
  99. position: relative;
  100. >.log{
  101. width: .375rem;
  102. height: .75rem;
  103. font-size: .75rem;
  104. position: absolute;
  105. left: 1.5rem;
  106. background: url('../../static/ico@1x.png') no-repeat;
  107. background-size: 100% 100%;
  108. }
  109. >.up{
  110. width: .8456rem;
  111. height: .8456rem;
  112. position: absolute;
  113. right: 1.5rem;
  114. background: url('../../static/search.png') no-repeat;
  115. background-size: 100% 100%;
  116. // color: rgb(37, 121, 160);
  117. // font-family: Noto Sans SC;
  118. // font-size: .875rem;
  119. // font-weight: 500;
  120. }
  121. }
  122. >.nav{
  123. height: 2rem;
  124. display: flex;
  125. align-items: center;
  126. padding: 0 .75rem 0 .75rem;
  127. >.nav_list{
  128. margin: 0 .75rem 0 .75rem;
  129. color: rgb(16, 17, 22);
  130. font-family: Noto Sans SC;
  131. font-size: 14px;
  132. height: 100%;
  133. }
  134. >.nav_lists{
  135. margin: 0 .75rem 0 .75rem;
  136. color: rgb(37, 121, 160);
  137. font-family: Noto Sans SC;
  138. font-size: 14px;
  139. font-size: 14px;
  140. height: 100%;
  141. border-bottom: 2px solid rgb(37, 121, 160);
  142. }
  143. }
  144. >.content{
  145. margin-left: 1.5rem;
  146. >.list{
  147. height: 3.375rem;
  148. display: flex;
  149. align-items: center;
  150. border-bottom: 1px solid rgb(238, 238, 238);
  151. position: relative;
  152. color: rgb(0, 0, 0);
  153. font-family: Noto Sans SC;
  154. font-size: 13px;
  155. font-weight: 400;
  156. >p{
  157. color: rgb(0, 0, 0);
  158. font-family: Noto Sans SC;
  159. font-size: 13px;
  160. font-weight: 400;
  161. margin-right: 2.1875rem;
  162. }
  163. >.listup{
  164. width: .25rem;
  165. height: .5rem;
  166. background: url('../../static/icos.png') no-repeat;
  167. background-size: 100% 100%;
  168. position: absolute;
  169. right: 1.5rem;
  170. }
  171. }
  172. >.picturearea{
  173. margin-top: 1.875rem;
  174. >.name{
  175. color: rgb(0, 0, 0);
  176. font-family: Noto Sans SC;
  177. font-size: .8125rem;
  178. font-weight: 500;
  179. }
  180. >.content_list{
  181. width: 100%;
  182. display: flex;
  183. margin-top: 1.25rem;
  184. >.mg{
  185. width: 5.5rem;
  186. height: 5.5rem;
  187. background: rgb(197, 207, 211);
  188. display: flex;
  189. align-items: center;
  190. justify-content: center;
  191. margin-right: .625rem;
  192. >.mg_lg{
  193. width: 1.75rem;
  194. height: 1.75rem;
  195. background: url('../../static/shi.png') no-repeat;
  196. background-size: 100% 100%;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. </style>