index.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="app-content">
  3. <view class="header"><view class="log" @tap="fall"></view>{{ navname }}<view class="up"></view></view>
  4. <view class="navdetails">
  5. <p>航班信息</p>
  6. <span>{{ information }}</span>
  7. </view>
  8. <liu-goods-swiper :goodsList="goodsList" :imgWidth="192" :imgHeight="152" @="chooseItem"></liu-goods-swiper>
  9. <view class="content">
  10. <view class="list" v-for="(item, index) in detailedTable" :key="index">
  11. {{ item.name }}
  12. <p>{{item.state == 0 ? '完好': '完好'}}</p>
  13. <!-- <view class="listup"></view> -->
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import Nav from '../../components/header/nav.vue'
  20. export default {
  21. data() {
  22. return {
  23. navname: '装车详情',
  24. action:0,
  25. information: 'HU7410 CKG - CSX 离港',
  26. goodsList:[
  27. {
  28. id: 1,
  29. name: '拖车CKG3UCKRT00007',
  30. descr: '10件',
  31. },
  32. {
  33. id: 2,
  34. name: '拖车CKG3UCKRT00007',
  35. descr: '10件',
  36. },
  37. {
  38. id: 3,
  39. name: '拖车CKG3UCKRT00007',
  40. descr: '10件',
  41. },
  42. {
  43. id: 4,
  44. name: '拖车CKG3UCKRT00007',
  45. descr: '10件',
  46. }
  47. ],
  48. detailedTable: [
  49. {
  50. name: '行李编号 3880324451111',
  51. state: 0
  52. },
  53. {
  54. name: '行李编号 3880324451111',
  55. state: 0
  56. },
  57. {
  58. name: '行李编号 3880324451111',
  59. state: 0
  60. },
  61. {
  62. name: '行李编号 3880324451111',
  63. state: 0
  64. },
  65. {
  66. name: '行李编号 3880324451111',
  67. state: 1
  68. }
  69. ]
  70. }
  71. },
  72. created(option) {
  73. },
  74. onLoad(){
  75. },
  76. onUnload() {
  77. },
  78. onShow() {
  79. },
  80. mounted() {
  81. },
  82. components: {
  83. Nav
  84. },
  85. methods: {
  86. lop(index) {
  87. this.action = index
  88. },
  89. fall () {
  90. uni.redirectTo({
  91. url: "/pages/myrecords/index"
  92. })
  93. },
  94. },
  95. }
  96. </script>
  97. <style lang="scss" scoped>
  98. .app-content{
  99. >.header{
  100. width: 100%;
  101. height: 4.375rem;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. // background: rgba(49,85,99,1);
  106. color: rgb(16, 17, 22);
  107. font-family: Noto Sans SC;
  108. font-size: 1rem;
  109. position: relative;
  110. >.log{
  111. width: .375rem;
  112. height: .75rem;
  113. font-size: .75rem;
  114. position: absolute;
  115. left: 1.5rem;
  116. background: url('../../static/ico@1x.png') no-repeat;
  117. background-size: 100% 100%;
  118. }
  119. >.up{
  120. width: .8456rem;
  121. height: .8456rem;
  122. position: absolute;
  123. right: 1.5rem;
  124. // background: url('../../static/search.png') no-repeat;
  125. // background-size: 100% 100%;
  126. // color: rgb(37, 121, 160);
  127. // font-family: Noto Sans SC;
  128. // font-size: .875rem;
  129. // font-weight: 500;
  130. }
  131. }
  132. >.navdetails{
  133. width: 100%;
  134. height: 5.1875rem;
  135. display: flex;
  136. flex-direction: column;
  137. align-content: start;
  138. justify-content: center;
  139. padding: 0 1.5rem 0 1.5rem;
  140. background: linear-gradient(180.00deg, rgba(49,85,99,1.00),rgba(25.37,45.98,53.94,1.00) 100%);
  141. >p{
  142. color: rgb(255, 255, 255);
  143. font-family: Noto Sans SC;
  144. font-size: 16px;
  145. font-weight: 700;
  146. margin-bottom: .25rem;
  147. }
  148. >span{
  149. color: rgb(255, 255, 255);
  150. font-family: Noto Sans SC;
  151. font-size: 14px;
  152. font-weight: 700;
  153. }
  154. }
  155. >.select{
  156. height: 5.1875rem;
  157. >.list{
  158. float: left;
  159. width: 10rem;
  160. height: 4.125rem;
  161. box-sizing: border-box;
  162. background: rgb(234, 241, 245);
  163. border: 1px solid rgb(37, 121, 160);
  164. box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  165. border-radius:.125rem;
  166. }
  167. }
  168. >.content{
  169. margin-left: 1.5rem;
  170. >.list{
  171. height: 3.375rem;
  172. display: flex;
  173. align-items: center;
  174. border-bottom: 1px solid rgb(238, 238, 238);
  175. position: relative;
  176. color: rgb(0, 0, 0);
  177. font-family: Noto Sans SC;
  178. font-size: 13px;
  179. font-weight: 400;
  180. >p{
  181. color: rgb(50, 182, 117);
  182. font-family: Noto Sans SC;
  183. font-size: 13px;
  184. font-weight: 700;
  185. position: absolute;
  186. right: 1.5rem;
  187. }
  188. // >.listup{
  189. // width: .25rem;
  190. // height: .5rem;
  191. // background: url('../../static/icos.png') no-repeat;
  192. // background-size: 100% 100%;
  193. // position: absolute;
  194. // right: 1.5rem;
  195. // }
  196. }
  197. >.picturearea{
  198. margin-top: 1.875rem;
  199. >.name{
  200. color: rgb(0, 0, 0);
  201. font-family: Noto Sans SC;
  202. font-size: .8125rem;
  203. font-weight: 500;
  204. }
  205. >.content_list{
  206. width: 100%;
  207. display: flex;
  208. margin-top: 1.25rem;
  209. >.mg{
  210. width: 5.5rem;
  211. height: 5.5rem;
  212. background: rgb(197, 207, 211);
  213. display: flex;
  214. align-items: center;
  215. justify-content: center;
  216. margin-right: .625rem;
  217. >.mg_lg{
  218. width: 1.75rem;
  219. height: 1.75rem;
  220. background: url('../../static/shi.png') no-repeat;
  221. background-size: 100% 100%;
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. </style>