index.vue 13 KB

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