index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>{{ navname }}
  5. <view class="up" @tap="sendData()">完成</view>
  6. </view>
  7. <view class="craids" v-if="!luggageData">
  8. <p>暂无行李信息</p>
  9. <p>请扫描需要操作的行李牌条码</p>
  10. </view>
  11. <view class="content" v-if="luggageData">
  12. <view class="list">
  13. <p>行李编号</p>
  14. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.luggageNum" disabled="true" value=""
  15. 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" v-model.trim="luggageData.location_describe" disabled="true" value=""
  20. placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
  21. </view>
  22. <view class="list">
  23. <p>当前状态</p>
  24. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.abnormalState" disabled="true" value=""
  25. placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
  26. </view>
  27. <view class="list">
  28. <p>航班信息</p>
  29. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.flightNo" disabled="true" value=""
  30. placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
  31. </view>
  32. <view class="list">
  33. <p>异常类型</p>
  34. <picker @change="bindPickerChange" :value="index" :range-key="'name'" :range="exceptionList">
  35. <view class="uni-input">{{exceptionNameList[index]}}</view>
  36. </picker>
  37. <view class="listup"></view>
  38. </view>
  39. <view class="picturearea">
  40. <view class="name">图片上传</view>
  41. <!-- <view class="content_list">
  42. <view class="mg">
  43. <view class="mg_lg"></view>
  44. </view>
  45. <view class="mg">
  46. <view class="mg_lg"></view>
  47. </view>
  48. <view class="mg">
  49. <view class="mg_lg"></view>
  50. </view>
  51. </view> -->
  52. <!-- <sunui-upimg :url="upPicUrl" :before-upload="onBeforeUpload" ref="upload3" title="+" @upload="handleLoaded3" @change="handleChange3" :number="3">
  53. <template v-slot:icon>
  54. <text class="s-add-list-btn-icon">+</text>
  55. </template>
  56. </sunui-upimg> -->
  57. <mk-upload :imgList="imgList" @onDelete="onDelete" @onChoose="onChoose" />
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import Nav from '../../components/header/nav.vue'
  64. import mkUpload from "@/components/mk-upload/mk-upload.vue"
  65. export default {
  66. data() {
  67. return {
  68. isShow: true,
  69. dataheight: '20.75rem',
  70. scrollTop: 0,
  71. old: {
  72. scrollTop: 0
  73. },
  74. input: '',
  75. main: null,
  76. poll: null,
  77. filter: null,
  78. pusher: null,
  79. intentServer: null,
  80. arr: [],
  81. navname: '异常行李登记',
  82. imgList: [],
  83. luggageNum:null,
  84. luggageData:null,
  85. index:0,
  86. exceptionList:[
  87. {
  88. "type":null,
  89. "name":"非异常行李"
  90. },
  91. {
  92. "type":"DPR",
  93. "name":"破损"
  94. },
  95. {
  96. "type":"AHL",
  97. "name":"少收"
  98. },
  99. {
  100. "type":"OHD",
  101. "name":"多收"
  102. }
  103. ],
  104. exceptionNameList:["非异常行李","破损","少收","多收"],
  105. }
  106. },
  107. created(option) {},
  108. onLoad(option) {
  109. this.luggageNum = option.luggageNum;
  110. if(this.luggageNum.length>9){
  111. this.getDetial(this.luggageNum)
  112. }
  113. },
  114. onUnload() {},
  115. onShow() {
  116. uni.$on("scancodemsg", (data) => {
  117. if (data.msg.length > 9) {
  118. this.luggageNum = Number(data.msg)
  119. // this.luggageNum = 3784730658
  120. this.getDetial(this.luggageNum)
  121. }
  122. });
  123. },
  124. onHide() {
  125. uni.$off("scancodemsg");
  126. },
  127. mounted() {},
  128. components: {
  129. Nav,
  130. mkUpload
  131. },
  132. methods: {
  133. async getDetial(num) {
  134. let data = {
  135. "serviceId": 3002,
  136. "page": 1,
  137. "pageSize": 1,
  138. "dataContent": {
  139. "luggageNum": num, //行李号
  140. },
  141. "event": "0"
  142. }
  143. await this.$http.httpPost('/openApi/query', data).then(res => {
  144. if (res.code == "0" && res.returnData.length>0){
  145. this.luggageData = res.returnData[0]
  146. }
  147. else{
  148. uni.showToast({
  149. icon:'none',
  150. title: "未查询到该行李信息",
  151. duration: 5000
  152. });
  153. }
  154. })
  155. },
  156. bindPickerChange(e){
  157. this.index = e.detail.value
  158. this.luggageData.exception_type = this.exceptionList[this.index].type;
  159. },
  160. async sendData(){
  161. this.luggageData.sourceAirport = this.$storage.get('airportName');
  162. let data = {
  163. "serviceId": 3005,
  164. "dataContent": [
  165. this.luggageData
  166. ],
  167. "event": "0"
  168. }
  169. await this.$http.httpPost('/openApi/query', data).then(res => {
  170. if (res.code == "0") {
  171. uni.showToast({
  172. icon:'none',
  173. title: "操作成功",
  174. duration: 5000
  175. });
  176. }
  177. else{
  178. uni.showToast({
  179. icon:'none',
  180. title: "操作失败",
  181. duration: 5000
  182. });
  183. }
  184. })
  185. },
  186. fall() {
  187. uni.navigateBack({
  188. delta: 1
  189. })
  190. },
  191. onDelete(index) {
  192. console.log(index)
  193. //删除成功回调后执行 只做演示
  194. uni.showLoading({
  195. title: '删除中'
  196. });
  197. setTimeout(() => {
  198. this.imgList.splice(index, 1);
  199. wx.showToast({
  200. title: '删除成功',
  201. icon: 'success',
  202. duration: 1000
  203. });
  204. }, 1000);
  205. },
  206. onChoose(e) {
  207. console.log(e)
  208. //上传成功后回调执行push 只做演示
  209. uni.showLoading({
  210. title: '上传中'
  211. });
  212. setTimeout(() => {
  213. const tempFilePaths = e.tempFilePaths;
  214. this.imgList.push(tempFilePaths[0]);
  215. uni.hideLoading();
  216. }, 1000);
  217. },
  218. onPreviewTake(index) {
  219. console.log(index)
  220. wx.showActionSheet({
  221. itemList: ['预览图片', '删除图片'],
  222. success(res) {
  223. console.log(res.tapIndex)
  224. },
  225. fail(res) {
  226. console.log(res.errMsg)
  227. }
  228. })
  229. },
  230. },
  231. }
  232. </script>
  233. <style lang="scss" scoped>
  234. .app-content {
  235. >.header {
  236. width: 100%;
  237. height: 4.375rem;
  238. display: flex;
  239. justify-content: center;
  240. align-items: center;
  241. // background: rgba(49,85,99,1);
  242. color: rgb(16, 17, 22);
  243. font-family: Noto Sans SC;
  244. font-size: 1rem;
  245. position: relative;
  246. >.log {
  247. width: .375rem;
  248. height: .75rem;
  249. font-size: .75rem;
  250. position: absolute;
  251. left: 1.5rem;
  252. background: url('../../static/ico@1x.png') no-repeat;
  253. background-size: 100% 100%;
  254. }
  255. >.up {
  256. position: absolute;
  257. right: 1.5rem;
  258. color: rgb(37, 121, 160);
  259. font-family: Noto Sans SC;
  260. font-size: .875rem;
  261. font-weight: 500;
  262. }
  263. }
  264. >.craids{
  265. margin-top:10rem;
  266. height: 5.625rem;
  267. padding: 0 2.5625rem 0 2.5625rem;
  268. display: flex;
  269. justify-content: center;
  270. align-items: center;
  271. >p{
  272. color: rgb(75, 84, 91);
  273. font-family: Noto Sans SC;
  274. font-size: 13px;
  275. font-weight: 500;
  276. }
  277. }
  278. >.content {
  279. margin-left: 1.5rem;
  280. >.list {
  281. height: 3.375rem;
  282. display: flex;
  283. align-items: center;
  284. border-bottom: 1px solid rgb(238, 238, 238);
  285. >p {
  286. color: rgb(0, 0, 0);
  287. font-family: Noto Sans SC;
  288. font-size: .8125rem;
  289. font-weight: 500;
  290. margin-right: 2.1875rem;
  291. }
  292. >.listup {
  293. width: .25rem;
  294. height: .5rem;
  295. background: url('../../static/icos.png') no-repeat;
  296. background-size: 100% 100%;
  297. position: absolute;
  298. right: 1.5rem;
  299. }
  300. }
  301. >.picturearea {
  302. margin-top: 1.875rem;
  303. >.name {
  304. color: rgb(0, 0, 0);
  305. font-family: Noto Sans SC;
  306. font-size: .8125rem;
  307. font-weight: 500;
  308. margin-bottom: 1.25rem;
  309. }
  310. >.content_list {
  311. width: 100%;
  312. display: flex;
  313. margin-top: 1.25rem;
  314. >.mg {
  315. width: 5.5rem;
  316. height: 5.5rem;
  317. background: rgb(197, 207, 211);
  318. display: flex;
  319. align-items: center;
  320. justify-content: center;
  321. margin-right: .625rem;
  322. >.mg_lg {
  323. width: 1.75rem;
  324. height: 1.75rem;
  325. background: url('../../static/shi.png') no-repeat;
  326. background-size: 100% 100%;
  327. }
  328. }
  329. }
  330. }
  331. }
  332. }
  333. </style>