index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. <!-- <sunui-upimg :url="upPicUrl" :before-upload="onBeforeUpload" ref="upload3" title="+" @upload="handleLoaded3" @change="handleChange3" :number="3">
  39. <template v-slot:icon>
  40. <text class="s-add-list-btn-icon">+</text>
  41. </template>
  42. </sunui-upimg> -->
  43. <mk-upload
  44. :imgList="imgList"
  45. @onDelete="onDelete"
  46. @onChoose="onChoose"
  47. />
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import Nav from '../../components/header/nav.vue'
  54. import mkUpload from "@/components/mk-upload/mk-upload.vue"
  55. export default {
  56. data() {
  57. return {
  58. isShow: true,
  59. dataheight: '20.75rem',
  60. scrollTop: 0,
  61. old: {
  62. scrollTop: 0
  63. },
  64. input: '',
  65. main: null,
  66. poll: null,
  67. filter:null,
  68. pusher:null,
  69. intentServer:null,
  70. arr: [],
  71. navname: '异常行李登记',
  72. imgList: [
  73. ]
  74. }
  75. },
  76. created(option) {
  77. },
  78. onLoad(){
  79. },
  80. onUnload() {
  81. },
  82. onShow() {
  83. },
  84. mounted() {
  85. },
  86. components: {
  87. Nav,
  88. mkUpload
  89. },
  90. methods: {
  91. fall () {
  92. uni.redirectTo({
  93. url: "/pages/sorting/index"
  94. })
  95. },
  96. onDelete(index){
  97. console.log(index)
  98. //删除成功回调后执行 只做演示
  99. uni.showLoading({
  100. title: '删除中'
  101. });
  102. setTimeout(()=>{
  103. this.imgList.splice(index, 1);
  104. wx.showToast({
  105. title: '删除成功',
  106. icon: 'success',
  107. duration: 1000
  108. });
  109. }, 1000);
  110. },
  111. onChoose(e){
  112. console.log(e)
  113. //上传成功后回调执行push 只做演示
  114. uni.showLoading({
  115. title: '上传中'
  116. });
  117. setTimeout(()=>{
  118. const tempFilePaths = e.tempFilePaths;
  119. this.imgList.push(tempFilePaths[0]);
  120. uni.hideLoading();
  121. }, 1000);
  122. },
  123. onPreviewTake(index){
  124. console.log(index)
  125. wx.showActionSheet({
  126. itemList: ['预览图片', '删除图片'],
  127. success (res) {
  128. console.log(res.tapIndex)
  129. },
  130. fail (res) {
  131. console.log(res.errMsg)
  132. }
  133. })
  134. },
  135. },
  136. }
  137. </script>
  138. <style lang="scss" scoped>
  139. .app-content{
  140. >.header{
  141. width: 100%;
  142. height: 4.375rem;
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. // background: rgba(49,85,99,1);
  147. color: rgb(16, 17, 22);
  148. font-family: Noto Sans SC;
  149. font-size: 1rem;
  150. position: relative;
  151. >.log{
  152. width: .375rem;
  153. height: .75rem;
  154. font-size: .75rem;
  155. position: absolute;
  156. left: 1.5rem;
  157. background: url('../../static/ico@1x.png') no-repeat;
  158. background-size: 100% 100%;
  159. }
  160. >.up{
  161. position: absolute;
  162. right: 1.5rem;
  163. color: rgb(37, 121, 160);
  164. font-family: Noto Sans SC;
  165. font-size: .875rem;
  166. font-weight: 500;
  167. }
  168. }
  169. >.content{
  170. margin-left: 1.5rem;
  171. >.list{
  172. height: 3.375rem;
  173. display: flex;
  174. align-items: center;
  175. border-bottom: 1px solid rgb(238, 238, 238);
  176. >p{
  177. color: rgb(0, 0, 0);
  178. font-family: Noto Sans SC;
  179. font-size: .8125rem;
  180. font-weight: 500;
  181. margin-right: 2.1875rem;
  182. }
  183. }
  184. >.picturearea{
  185. margin-top: 1.875rem;
  186. >.name{
  187. color: rgb(0, 0, 0);
  188. font-family: Noto Sans SC;
  189. font-size: .8125rem;
  190. font-weight: 500;
  191. margin-bottom: 1.25rem;
  192. }
  193. >.content_list{
  194. width: 100%;
  195. display: flex;
  196. margin-top: 1.25rem;
  197. >.mg{
  198. width: 5.5rem;
  199. height: 5.5rem;
  200. background: rgb(197, 207, 211);
  201. display: flex;
  202. align-items: center;
  203. justify-content: center;
  204. margin-right: .625rem;
  205. >.mg_lg{
  206. width: 1.75rem;
  207. height: 1.75rem;
  208. background: url('../../static/shi.png') no-repeat;
  209. background-size: 100% 100%;
  210. }
  211. }
  212. }
  213. }
  214. }
  215. }
  216. </style>