index.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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="content">
  5. <view class="list">
  6. <p>行李编号</p>
  7. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入行李编号" />
  8. </view>
  9. <view class="list">
  10. <p>当前位置</p>
  11. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入当前位置" />
  12. </view>
  13. <view class="list">
  14. <p>当前状态</p>
  15. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入当前状态" />
  16. </view>
  17. <view class="list">
  18. <p>航班信息</p>
  19. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入航班信息" />
  20. </view>
  21. <view class="list">
  22. <p>异常原因</p>
  23. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入异常原因" />
  24. </view>
  25. <view class="picturearea">
  26. <view class="name">图片上传</view>
  27. <view class="content_list">
  28. <view class="mg">
  29. <view class="mg_lg"></view>
  30. </view>
  31. <view class="mg">
  32. <view class="mg_lg"></view>
  33. </view>
  34. <view class="mg">
  35. <view class="mg_lg"></view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. import Nav from '../../components/header/nav.vue'
  44. export default {
  45. data() {
  46. return {
  47. isShow: true,
  48. dataheight: '20.75rem',
  49. scrollTop: 0,
  50. old: {
  51. scrollTop: 0
  52. },
  53. input: '',
  54. main: null,
  55. poll: null,
  56. filter:null,
  57. pusher:null,
  58. intentServer:null,
  59. arr: [],
  60. navname: '异常行李登记',
  61. }
  62. },
  63. created(option) {
  64. },
  65. onLoad(){
  66. },
  67. onUnload() {
  68. },
  69. onShow() {
  70. },
  71. mounted() {
  72. },
  73. components: {
  74. Nav
  75. },
  76. methods: {
  77. fall () {
  78. uni.redirectTo({
  79. url: "/pages/sorting/index"
  80. })
  81. },
  82. },
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. .app-content{
  87. >.header{
  88. width: 100%;
  89. height: 4.375rem;
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. // background: rgba(49,85,99,1);
  94. color: rgb(16, 17, 22);
  95. font-family: Noto Sans SC;
  96. font-size: 1rem;
  97. position: relative;
  98. >.log{
  99. width: .375rem;
  100. height: .75rem;
  101. font-size: .75rem;
  102. position: absolute;
  103. left: 1.5rem;
  104. background: url('../../static/ico@1x.png') no-repeat;
  105. background-size: 100% 100%;
  106. }
  107. >.up{
  108. position: absolute;
  109. right: 1.5rem;
  110. color: rgb(37, 121, 160);
  111. font-family: Noto Sans SC;
  112. font-size: .875rem;
  113. font-weight: 500;
  114. }
  115. }
  116. >.content{
  117. margin-left: 1.5rem;
  118. >.list{
  119. height: 3.375rem;
  120. display: flex;
  121. align-items: center;
  122. border-bottom: 1px solid rgb(238, 238, 238);
  123. >p{
  124. color: rgb(0, 0, 0);
  125. font-family: Noto Sans SC;
  126. font-size: .8125rem;
  127. font-weight: 500;
  128. margin-right: 2.1875rem;
  129. }
  130. }
  131. >.picturearea{
  132. margin-top: 1.875rem;
  133. >.name{
  134. color: rgb(0, 0, 0);
  135. font-family: Noto Sans SC;
  136. font-size: .8125rem;
  137. font-weight: 500;
  138. }
  139. >.content_list{
  140. width: 100%;
  141. display: flex;
  142. margin-top: 1.25rem;
  143. >.mg{
  144. width: 5.5rem;
  145. height: 5.5rem;
  146. background: rgb(197, 207, 211);
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. margin-right: .625rem;
  151. >.mg_lg{
  152. width: 1.75rem;
  153. height: 1.75rem;
  154. background: url('../../static/shi.png') no-repeat;
  155. background-size: 100% 100%;
  156. }
  157. }
  158. }
  159. }
  160. }
  161. }
  162. </style>