index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>{{ navname }}
  5. </view>
  6. <view class="craids" v-if="!luggageData">
  7. <p>暂无行李信息</p>
  8. <p>请扫描需要操作的行李牌条码</p>
  9. </view>
  10. <view class="content" v-if="luggageData">
  11. <view class="list">
  12. <p>行李编号</p>
  13. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.luggageNum" disabled="true"
  14. value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
  15. </view>
  16. <view class="list">
  17. <p>航班信息</p>
  18. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.carrierFlights"
  19. disabled="true" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);"
  20. placeholder="" />
  21. </view>
  22. <view class="list">
  23. <p>航班日期</p>
  24. <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.carrierFlightsDate"
  25. disabled="true" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);"
  26. placeholder="" />
  27. </view>
  28. <view class="list">
  29. <p>当前节点</p>
  30. <picker @change="bindPickerChange1" style="line-height: 2.375rem;background-color: antiquewhite;" :placeholderStyle="placeholderStyle" :value="index1"
  31. :range-key="'nodeName'" :range="nodeList">
  32. <view class="uni-input">{{nodeNameList[index1]}}</view>
  33. </picker>
  34. </view>
  35. <view class="list">
  36. <p>当前位置</p>
  37. <uni-easyinput :inputBorder="false" style="line-height: 2.375rem;background-color: antiquewhite;" :placeholderStyle="placeholderStyle" :clearable="false"
  38. :styles="style" :disabled="false" v-model="luggageData.location_describe" type="text"
  39. placeholder="操作位置" />
  40. </uni-forms>
  41. </view>
  42. <view class="list">
  43. <p>当前状态</p>
  44. <uni-easyinput :inputBorder="false" style="line-height: 2.375rem;background-color: antiquewhite;" :placeholderStyle="placeholderStyle" :clearable="false"
  45. :styles="style" :disabled="false" v-model="luggageData.currentResult" type="text"
  46. placeholder="当前状态" />
  47. </view>
  48. <view class="list">
  49. <p>异常类型</p>
  50. <picker @change="bindPickerChange" style="line-height: 2.375rem;background-color: antiquewhite;" :value="index" :range-key="'name'" :range="exceptionList">
  51. <view class="uni-input">{{exceptionList[index].type?exceptionList[index].name:"无"}}</view>
  52. </picker>
  53. </view>
  54. <view class="picturearea">
  55. <view class="name">图片上传</view>
  56. <mk-upload :imgList="imgList" @onDelete="onDelete" @onChoose="onChoose" />
  57. </view>
  58. </view>
  59. <view class="up" v-if="luggageData" @tap="sendData()">提交</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. import {
  66. translateapp
  67. } from "@/utils/compress.js"
  68. import {
  69. pathToBase64,
  70. base64ToPath
  71. } from 'image-tools'
  72. export default {
  73. data() {
  74. return {
  75. placeholderStyle: "color:000;",
  76. style: {
  77. disableColor: "#fff",
  78. color: "#000"
  79. },
  80. isShow: true,
  81. dataheight: '20.75rem',
  82. scrollTop: 0,
  83. old: {
  84. scrollTop: 0
  85. },
  86. input: '',
  87. main: null,
  88. poll: null,
  89. filter: null,
  90. pusher: null,
  91. intentServer: null,
  92. arr: [],
  93. navname: '异常行李登记',
  94. imgList: [],
  95. ImgObjList: [],
  96. luggageNum: null,
  97. luggageData: null,
  98. index: 0,
  99. index1: 0,
  100. exceptionList: [{
  101. "type": null,
  102. "name": "非异常行李"
  103. },
  104. {
  105. "type": "DPR",
  106. "name": "破损"
  107. },
  108. {
  109. "type": "AHL",
  110. "name": "少收"
  111. },
  112. {
  113. "type": "OHD",
  114. "name": "多收"
  115. }
  116. ],
  117. exceptionNameList: ["非异常行李", "破损", "少收", "多收"],
  118. nodeList: [],
  119. nodeNameList: [],
  120. isGet:true
  121. }
  122. },
  123. created(option) {},
  124. onLoad(option) {
  125. this.luggageNum = option.luggageNum;
  126. this.getNode()
  127. if (this.luggageNum.length > 9) {
  128. this.getDetial(this.luggageNum)
  129. }
  130. },
  131. onUnload() {
  132. uni.$off("scancodemsg");
  133. },
  134. onShow() {
  135. uni.$off("scancodemsg");
  136. uni.$on("scancodemsg", (data) => {
  137. if (data.msg.length > 9) {
  138. this.luggageNum = data.msg.trim()
  139. if (this.luggageNum.length > 9) {
  140. if(this.isGet==true){
  141. this.getDetial(this.luggageNum);
  142. this.isGet = false;
  143. setTimeout(function(){
  144. this.isGet = true;
  145. },500)
  146. }
  147. }
  148. } else {
  149. uni.showToast({
  150. icon: 'none',
  151. title: "请扫描规范条码",
  152. duration: 5000
  153. });
  154. }
  155. })
  156. },
  157. onHide() {
  158. uni.$off("scancodemsg");
  159. },
  160. mounted() {},
  161. components: {
  162. Nav,
  163. mkUpload
  164. },
  165. methods: {
  166. async getNode() {
  167. let data = {
  168. "serviceId": 3003,
  169. "dataContent": {},
  170. "event": "0"
  171. }
  172. await this.$http.httpPost('/openApi/query', data).then(res => {
  173. if (res.code == "0") {
  174. this.nodeList = res.returnData;
  175. this.nodeList.map(item => {
  176. this.nodeNameList.push(item.nodeName)
  177. })
  178. }
  179. })
  180. },
  181. async getDetial(num) {
  182. let data = {
  183. "serviceId": 3002,
  184. "page": 1,
  185. "pageSize": 1,
  186. "dataContent": {
  187. "luggageNum": num, //行李号
  188. },
  189. "event": "0"
  190. }
  191. await this.$http.httpPost('/openApi/query', data).then(res => {
  192. if (res.code == "0" && res.returnData.length > 0) {
  193. this.luggageData = res.returnData[0]
  194. this.getImgList()
  195. this.nodeList.map((item, index) => {
  196. if (res.returnData[0].nodeCode == item.nodeCode) {
  197. this.index1 = index
  198. if(!this.luggageData.location_describe){
  199. this.luggageData.location_describe = item.nodeDescribe
  200. }
  201. }
  202. })
  203. this.exceptionList.map((item, index) => {
  204. if (res.returnData[0].exception_type == item.type) {
  205. this.index = index
  206. }
  207. })
  208. } else {
  209. this.$scanAudio.src = "../../static/hqxl.mp3"
  210. this.$scanAudio.play()
  211. uni.showToast({
  212. icon: 'none',
  213. title: "未查询到该行李信息",
  214. duration: 5000
  215. });
  216. }
  217. })
  218. },
  219. bindPickerChange(e) {
  220. this.index = e.detail.value
  221. this.luggageData.exception_type = this.exceptionList[this.index].type;
  222. },
  223. bindPickerChange1(e) {
  224. this.index1 = e.detail.value
  225. this.luggageData.nodeCode = this.nodeList[this.index1].nodeCode;
  226. this.luggageData.location_describe = this.nodeList[this.index1].nodeDescribe;
  227. },
  228. async sendData() {
  229. this.luggageData.sourceAirport = this.$storage.get('airportName');
  230. this.luggageData.ID = null;
  231. this.luggageData.dataType = "BPM";
  232. this.luggageData.agentNumber = this.$storage.getJson("users").user_name;
  233. this.luggageData.device_ID = uni.getDeviceInfo().deviceId;
  234. let data = {
  235. "serviceId": 3005,
  236. "dataContent": [
  237. this.luggageData
  238. ],
  239. "event": "0"
  240. }
  241. await this.$http.httpPost('/openApi/query', data).then(res => {
  242. if (res.code == "0") {
  243. uni.showToast({
  244. icon: 'none',
  245. title: "操作成功",
  246. duration: 5000
  247. });
  248. } else {
  249. this.$scanAudio.src = "../../static/czsb.mp3"
  250. this.$scanAudio.play()
  251. uni.showToast({
  252. icon: 'none',
  253. title: "操作失败",
  254. duration: 5000
  255. });
  256. }
  257. })
  258. },
  259. fall() {
  260. uni.navigateBack({
  261. delta: 1
  262. })
  263. },
  264. async sendImg(upImgList) {
  265. let data = {
  266. "serviceId": 30051,
  267. "dataContent": upImgList,
  268. "event": "1"
  269. }
  270. await this.$http.httpPost('/openApi/newdata', data).then(res => {
  271. if (res.code == "0") {
  272. uni.hideLoading();
  273. this.getImgList()
  274. uni.showToast({
  275. icon: 'none',
  276. title: "上传成功",
  277. duration: 5000
  278. });
  279. } else {
  280. uni.showToast({
  281. icon: 'none',
  282. title: "上传失败",
  283. duration: 5000
  284. });
  285. }
  286. })
  287. },
  288. async getImgList() {
  289. let data = {
  290. "serviceId": 30051,
  291. "page": 1,
  292. "pageSize": 999,
  293. "dataContent": {
  294. "carrflights": this.luggageData.carrierFlights,
  295. "carrierFlightsDate": this.luggageData.carrierFlightsDate,
  296. "luggageNum": this.luggageData.luggageNum
  297. },
  298. "event": "0"
  299. }
  300. await this.$http.httpPost('/openApi/query', data).then(res => {
  301. if (res.code == "0") {
  302. this.imgList = [];
  303. this.ImgObjList = res.returnData;
  304. res.returnData.map(item => {
  305. if (item.luggagePic) {
  306. this.imgList.push(item.luggagePic);
  307. }
  308. })
  309. } else {
  310. this.imgList = [];
  311. uni.showToast({
  312. icon: 'none',
  313. title: "获取图片失败",
  314. duration: 5000
  315. });
  316. }
  317. })
  318. },
  319. async deleteImg(index) {
  320. let data = {
  321. "serviceId": 30051,
  322. "dataContent": [{
  323. "filter": [{
  324. "left": "(",
  325. "column": "id",
  326. "comparator": "=",
  327. "value": this.ImgObjList[index].id,
  328. "right": ")",
  329. "connector": "and"
  330. }]
  331. }],
  332. "event": "3"
  333. }
  334. await this.$http.httpPost('/openApi/movedata', data).then(res => {
  335. if (res.code == "0") {
  336. this.getImgList()
  337. wx.showToast({
  338. title: '删除成功',
  339. icon: 'success',
  340. duration: 3000
  341. });
  342. } else {
  343. uni.showToast({
  344. icon: 'none',
  345. title: "删除图片失败",
  346. duration: 5000
  347. });
  348. }
  349. })
  350. },
  351. onDelete(index) {
  352. console.log(index)
  353. //删除成功回调后执行 只做演示
  354. uni.showLoading({
  355. title: '删除中'
  356. });
  357. this.deleteImg(index)
  358. },
  359. onChoose(e) {
  360. console.log(e)
  361. uni.showLoading({
  362. title: '上传中'
  363. });
  364. // let upImgList = []
  365. // this.newImgList = []
  366. e.tempFilePaths.map(item => {
  367. translateapp(item, 70, imgUrl => {
  368. pathToBase64(imgUrl).then(path => {
  369. let upImgList = []
  370. let newData = {
  371. "carrflights": this.luggageData.carrierFlights,
  372. "carrierFlightsDate": this.luggageData.carrierFlightsDate,
  373. "luggageNum": this.luggageData.luggageNum,
  374. "luggagePic": path,
  375. "piclocation":this.luggageData.location_describe
  376. }
  377. // this.newImgList.push(path)
  378. upImgList.push(newData)
  379. this.sendImg(upImgList)
  380. // upImgList.push(newData)
  381. }).catch(error => {
  382. uni.hideLoading();
  383. })
  384. })
  385. })
  386. },
  387. onPreviewTake(index) {
  388. console.log(index)
  389. wx.showActionSheet({
  390. itemList: ['预览图片', '删除图片'],
  391. success(res) {
  392. console.log(res.tapIndex)
  393. },
  394. fail(res) {
  395. console.log(res.errMsg)
  396. }
  397. })
  398. },
  399. },
  400. }
  401. </script>
  402. <style lang="scss" scoped>
  403. .app-content {
  404. >.up {
  405. position: fixed;
  406. bottom: 10px;
  407. left: calc((100% - 20.5625rem) / 2);
  408. width: 20.5625rem;
  409. height: 3rem;
  410. background: linear-gradient(179.10deg, rgba(51, 161, 165, 1.00) 11.326%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%);
  411. border-radius: .25rem;
  412. color: rgb(255, 255, 255);
  413. font-family: Noto Sans SC;
  414. font-size: 1rem;
  415. margin: 0 auto;
  416. display: flex;
  417. align-items: center;
  418. justify-content: center;
  419. }
  420. >.header {
  421. width: 100%;
  422. height: 4.375rem;
  423. display: flex;
  424. justify-content: center;
  425. align-items: center;
  426. // background: rgba(49,85,99,1);
  427. color: rgb(16, 17, 22);
  428. font-family: Noto Sans SC;
  429. font-size: 1rem;
  430. position: relative;
  431. >.log {
  432. width: .375rem;
  433. height: .75rem;
  434. font-size: .75rem;
  435. position: absolute;
  436. left: 1.5rem;
  437. background: url('../../static/ico@1x.png') no-repeat;
  438. background-size: 100% 100%;
  439. }
  440. }
  441. >.craids {
  442. margin-top: 10rem;
  443. height: 5.625rem;
  444. padding: 0 2.5625rem 0 2.5625rem;
  445. display: flex;
  446. justify-content: center;
  447. align-items: center;
  448. >p {
  449. color: rgb(75, 84, 91);
  450. font-family: Noto Sans SC;
  451. font-size: 13px;
  452. font-weight: 500;
  453. }
  454. }
  455. >.content {
  456. margin-left: 1.5rem;
  457. height: calc(100vh - 8rem);
  458. overflow-x: hidden;
  459. overflow-y: auto;
  460. >.list {
  461. height: 3.375rem;
  462. display: flex;
  463. align-items: center;
  464. border-bottom: 1px solid rgb(238, 238, 238);
  465. .uni-input {
  466. width: 240px;
  467. padding-left: 10px;
  468. }
  469. >p {
  470. color: rgb(0, 0, 0);
  471. font-family: Noto Sans SC;
  472. font-size: .8125rem;
  473. font-weight: 500;
  474. margin-right: 2.1875rem;
  475. }
  476. >.listup {
  477. width: .25rem;
  478. height: .5rem;
  479. background: url('../../static/icos.png') no-repeat;
  480. background-size: 100% 100%;
  481. position: absolute;
  482. right: 1.5rem;
  483. }
  484. }
  485. >.picturearea {
  486. margin-top: 1.875rem;
  487. >.name {
  488. color: rgb(0, 0, 0);
  489. font-family: Noto Sans SC;
  490. font-size: .8125rem;
  491. font-weight: 500;
  492. margin-bottom: 1.25rem;
  493. }
  494. >.content_list {
  495. width: 100%;
  496. display: flex;
  497. margin-top: 1.25rem;
  498. >.mg {
  499. width: 5.5rem;
  500. height: 5.5rem;
  501. background: rgb(197, 207, 211);
  502. display: flex;
  503. align-items: center;
  504. justify-content: center;
  505. margin-right: .625rem;
  506. >.mg_lg {
  507. width: 1.75rem;
  508. height: 1.75rem;
  509. background: url('../../static/shi.png') no-repeat;
  510. background-size: 100% 100%;
  511. }
  512. }
  513. }
  514. }
  515. }
  516. }
  517. </style>