index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view> <button type="primary" class="send" size="small" v-if="luggageData" @tap="sendData()">提交</button>
  5. </view>
  6. <!-- <view class="nav">
  7. <view :class="action === index ? 'nav_lists': 'nav_list'" v-for="(item, index) in list" :key="index" @tap="lop(index)">{{item.name}}</view>
  8. </view> -->
  9. <uni-swiper-dot :info="info" :current="current" field="content" :mode="mode">
  10. <swiper class="swiper-box" @change="change" style="height:11rem">
  11. <swiper-item v-for="(item ,index) in info" :key="index">
  12. <view class="swiper-item">
  13. <image style="width:100%" src="../../static/bg.png" mode="widthFix"></image>
  14. </view>
  15. </swiper-item>
  16. </swiper>
  17. </uni-swiper-dot>
  18. <view class="content" :style="{top:dataheight}">
  19. <uni-section title="行李详情" type="line"></uni-section>
  20. <view class="choice" @touchmove="movetran" v-if="luggageData">
  21. <scroll-view scroll-y="true" class="scroll-Y">
  22. <view class="list">
  23. <view class="lable">航班号</view>
  24. <uni-easyinput :inputBorder="false" :styles="style" :disabled="true"
  25. v-model="luggageData.carrierFlights" type="text" placeholder="航班号" />
  26. </uni-forms>
  27. <!-- <view class="listup"></view> -->
  28. </view>
  29. <view class="list">
  30. <view class="lable">航班日期</view>
  31. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="true"
  32. v-model="luggageData.carrierFlightsDate" type="text" placeholder="航班日期" />
  33. </uni-forms>
  34. <!-- <view class="listup"></view> -->
  35. </view>
  36. <view class="list">
  37. <view class="lable">行李牌号</view>
  38. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="true"
  39. v-model="luggageData.luggageNum" type="text" placeholder="行李牌号" />
  40. </uni-forms>
  41. <!-- <view class="listup"></view> -->
  42. </view>
  43. <view class="list">
  44. <view class="lable">操作节点</view>
  45. <picker @change="bindPickerChange" :value="index" :range-key="'nodeName'" :range="nodeList">
  46. <view class="uni-input">{{nodeNameList[index]}}</view>
  47. </picker>
  48. <view class="listup"></view>
  49. </view>
  50. <view class="list">
  51. <view class="lable">操作位置</view>
  52. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  53. v-model="luggageData.location_describe" type="text" placeholder="操作位置" />
  54. </uni-forms>
  55. <view class="listup"></view>
  56. </view>
  57. <view class="list">
  58. <view class="lable">操作时间</view>
  59. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="true"
  60. v-model="luggageData.processing_time" type="text" placeholder="操作时间" />
  61. </uni-forms>
  62. <!-- <view class="listup"></view> -->
  63. </view>
  64. <view class="list">
  65. <view class="lable">操作人</view>
  66. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="true"
  67. v-model="luggageData.agentNumber" type="text" placeholder="操作人" />
  68. </uni-forms>
  69. <!-- <view class="listup"></view> -->
  70. </view>
  71. <view class="list">
  72. <view class="lable">发往节点</view>
  73. <picker @change="bindPickerChange2" :value="index2" :range-key="'nodeName'" :range="nodeList">
  74. <view class="uni-input">{{nodeNameList[index2]}}</view>
  75. </picker>
  76. <view class="listup"></view>
  77. </view>
  78. <view class="list">
  79. <view class="lable">发往位置</view>
  80. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  81. v-model="luggageData.to_location_describe" type="text" placeholder="发往位置" />
  82. </uni-forms>
  83. <view class="listup"></view>
  84. </view>
  85. <view class="list">
  86. <view class="lable">特殊行李类型</view>
  87. <picker @change="bindPickerChange3" :value="index3" :range-key="'specialTypeName'" :range="specialTypeList">
  88. <view class="uni-input">{{specialTypeNameList[index3]}}</view>
  89. </picker>
  90. <view class="listup"></view>
  91. </view>
  92. <view class="list">
  93. <view class="lable">异常类型</view>
  94. <picker @change="bindPickerChange4" :value="index4" :range-key="'name'" :range="exceptionList">
  95. <view class="uni-input">{{exceptionNameList[index4]}}</view>
  96. </picker>
  97. <view class="listup"></view>
  98. </view>
  99. <view class="list">
  100. <view class="lable">非正常状态码</view>
  101. <picker @change="bindPickerChange5" :value="index5" :range-key="'name'" :range="abnormalList">
  102. <view class="uni-input">{{abnormalNameList[index5]}}</view>
  103. </picker>
  104. <view class="listup"></view>
  105. </view>
  106. <!-- <view class="list">
  107. <view class="lable">当前结果</view>
  108. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  109. v-model="luggageData.currentResult" type="text" placeholder="当前结果" />
  110. </uni-forms>
  111. <view class="listup"></view>
  112. </view> -->
  113. <view class="list">
  114. <view class="lable">装载序号</view>
  115. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  116. v-model="luggageData.loadNumber" type="text" placeholder="装载序号" />
  117. </uni-forms>
  118. <view class="listup"></view>
  119. </view>
  120. <view class="list">
  121. <view class="lable">容器编号</view>
  122. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  123. v-model="luggageData.container_ID" type="text" placeholder="容器编号" />
  124. </uni-forms>
  125. <view class="listup"></view>
  126. </view>
  127. <view class="list">
  128. <view class="lable">备注</view>
  129. <uni-easyinput :inputBorder="false" :clearable="false" :styles="style" :disabled="false"
  130. v-model="luggageData.luggage_describe" type="text" placeholder="备注" />
  131. </uni-forms>
  132. <view class="listup"></view>
  133. </view>
  134. </scroll-view>
  135. </view>
  136. </view>
  137. <luanqing-date-picker ref="datePickerObj" :isSimple="mode === 'simple'" :isMultiple="mode === 'multiple'"
  138. @finishSelectDate="finishSelectDate" :defaultCheckedList="['2023-03-28','2023-09-25']">
  139. </luanqing-date-picker>
  140. <uv-datetime-picker :show="show" v-model="value1" mode="datetime" @confirm='confirm'
  141. @close='show = false'></uv-datetime-picker>
  142. </view>
  143. </template>
  144. <script>
  145. export default {
  146. data() {
  147. return {
  148. style: {
  149. disableColor: "#fff",
  150. color: "#000"
  151. },
  152. dataheight: '10.75rem',
  153. datatime: '2023-06-02',
  154. datacontime: '',
  155. luggageData: null,
  156. luggageDataOld:null,
  157. info: [{
  158. content: '内容 A'
  159. }, {
  160. content: '内容 B'
  161. }, {
  162. content: '内容 C'
  163. }],
  164. current: 0,
  165. mode: 'round',
  166. show: false,
  167. value1: Number(new Date()),
  168. formatter: 'yy',
  169. index:0,
  170. index2:0,
  171. index3:0,
  172. index4:0,
  173. index5:0,
  174. nodeList:[],
  175. nodeNameList:[],
  176. nextNode:null,
  177. luggageNum:null,
  178. specialTypeList:[],
  179. specialTypeNameList:[],
  180. exceptionList:[
  181. {
  182. "type":null,
  183. "name":"非异常行李"
  184. },
  185. {
  186. "type":"DPR",
  187. "name":"破损"
  188. },
  189. {
  190. "type":"AHL",
  191. "name":"少收"
  192. },
  193. {
  194. "type":"OHD",
  195. "name":"多收"
  196. }
  197. ],
  198. exceptionNameList:["非异常行李","破损","少收","多收"],
  199. abnormalList:[
  200. {
  201. "type":null,
  202. "name":"无"
  203. },
  204. {
  205. "type":"NAL",
  206. "name":"未被授权的装载"
  207. },
  208. {
  209. "type":"OFF",
  210. "name":"已卸载"
  211. },
  212. {
  213. "type":"UNS",
  214. "name":"未找到"
  215. },
  216. {
  217. "type":"OND",
  218. "name":"在场未装载,未被授权"
  219. },
  220. {
  221. "type":"ONA",
  222. "name":"在场未装载,已授权"
  223. }
  224. ],
  225. abnormalNameList:["无","未被授权的装载","已卸载","未找到","在场未装载,未被授权","在场未装载,已授权"],
  226. isShow:true
  227. }
  228. },
  229. created(option) {
  230. },
  231. onLoad(option) {
  232. this.luggageNum = option.luggageNum
  233. this.getNode()
  234. this.getSpecialTypeList()
  235. this.getDetial(this.luggageNum)
  236. },
  237. onUnload() {},
  238. onShow() {
  239. uni.$on("scancodemsg", (data) => {
  240. if (data.msg.length > 9) {
  241. this.luggageNum = Number(data.msg)
  242. this.getDetial(this.luggageNum)
  243. }
  244. });
  245. },
  246. onHide() {
  247. uni.$off("scancodemsg");
  248. },
  249. components: {},
  250. methods: {
  251. async getNode() {
  252. let data = {
  253. "serviceId": 3003,
  254. "dataContent": {},
  255. "event": "0"
  256. }
  257. await this.$http.httpPost('/openApi/query', data).then(res => {
  258. if (res.code == "0") {
  259. this.nodeList = res.returnData;
  260. this.nodeList.map(item => {
  261. this.nodeNameList.push(item.nodeName)
  262. })
  263. }
  264. })
  265. },
  266. async getSpecialTypeList(){
  267. let data = {
  268. "serviceId": 16,
  269. "dataContent": {},
  270. "event": "0"
  271. }
  272. await this.$http.httpPost('/openApi/query', data).then(res => {
  273. if (res.code == "0") {
  274. this.specialTypeList = res.returnData;
  275. this.specialTypeList.unshift(
  276. {
  277. "specialType": null,
  278. "specialTypeName": "非特殊行李",
  279. }
  280. )
  281. this.specialTypeList.map(item => {
  282. this.specialTypeNameList.push(item.specialTypeName)
  283. })
  284. }
  285. })
  286. },
  287. async getDetial(num) {
  288. let data = {
  289. "serviceId": 3002,
  290. "page": 1,
  291. "pageSize": 1,
  292. "dataContent": {
  293. "luggageNum": num, //行李号
  294. },
  295. "event": "0"
  296. }
  297. await this.$http.httpPost('/openApi/query', data).then(res => {
  298. this.luggageData = null
  299. if (res.code == "0" && res.returnData.length>0) {
  300. this.luggageData = res.returnData[0]
  301. this.luggageDataOld = JSON.parse(JSON.stringify(res.returnData[0]))
  302. this.nodeList.map((item,index)=>{
  303. if(res.returnData[0].nodeCode == item.nodeCode){
  304. this.index = index
  305. this.index2 = index + 1
  306. }
  307. })
  308. this.specialTypeList.map((item,index)=>{
  309. if(res.returnData[0].specialType == item.specialType){
  310. this.index3 = index
  311. }
  312. })
  313. this.exceptionList.map((item,index)=>{
  314. if(res.returnData[0].exception_type == item.type){
  315. this.index4 = index
  316. }
  317. })
  318. this.abnormalList.map((item,index)=>{
  319. if(res.returnData[0].abnormalState == item.type){
  320. this.index5 = index
  321. }
  322. })
  323. }
  324. else{
  325. uni.showToast({
  326. icon:'none',
  327. title: "未查询到该行李信息",
  328. duration: 5000
  329. });
  330. }
  331. })
  332. },
  333. async sendData(){
  334. this.luggageData.sourceAirport = this.$storage.get('airportName');
  335. let data = {
  336. "serviceId": 3005,
  337. "dataContent": [
  338. this.luggageData
  339. ],
  340. "event": "0"
  341. }
  342. await this.$http.httpPost('/openApi/query', data).then(res => {
  343. console.log(res)
  344. if (res.code == "0") {
  345. uni.showToast({
  346. icon:'none',
  347. title: "操作成功",
  348. duration: 5000
  349. });
  350. }
  351. else{
  352. uni.showToast({
  353. icon:'none',
  354. title: "操作失败",
  355. duration: 5000
  356. });
  357. }
  358. })
  359. },
  360. bindPickerChange(e){
  361. this.index = e.detail.value
  362. this.luggageData.nodeCode = this.nodeList[this.index].nodeCode;
  363. this.luggageData.location_describe = this.nodeList[this.index].nodeDescribe;
  364. this.index2 = this.index + 1
  365. this.luggageData.to_location_describe = this.nodeList[this.index2].nodeDescribe;
  366. },
  367. bindPickerChange2(e){
  368. this.index2 = e.detail.value
  369. this.luggageData.to_location_describe = this.nodeList[this.index2].nodeDescribe;
  370. },
  371. bindPickerChange3(e){
  372. this.index3 = e.detail.value
  373. this.luggageData.specialType = this.nodeList[this.index3].specialType;
  374. },
  375. bindPickerChange4(e){
  376. this.index4 = e.detail.value
  377. this.luggageData.exception_type = this.exceptionList[this.index4].type;
  378. },
  379. bindPickerChange5(e){
  380. this.index5 = e.detail.value
  381. this.luggageData.abnormalState = this.abnormalList[this.index5].type;
  382. },
  383. confirm(e) {
  384. this.show = false
  385. console.log(e.value)
  386. let timestamp = e.value
  387. // 此处时间戳以毫秒为单位
  388. let date = new Date(parseInt(timestamp));
  389. let Year = date.getFullYear();
  390. let Moth = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
  391. let Day = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate());
  392. let Hour = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours());
  393. let Minute = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
  394. let Sechond = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
  395. let GMT = Year + '-' + Moth + '-' + Day + ' ' + Hour + ':' + Minute
  396. this.datacontime = GMT
  397. },
  398. finishSelectDate(e) {
  399. this.datatime = e[0]
  400. console.error("选择了日期:", e);
  401. },
  402. movetran(e) {
  403. let arr = uni.getSystemInfoSync().windowHeight;
  404. this.dataheight = (e.changedTouches[0].clientY / 16) + 'rem'
  405. if (e.changedTouches[0].clientY / 16 > 10.75) {
  406. this.dataheight = 10.75 + 'rem'
  407. } else if (e.changedTouches[0].clientY / 16 < 3.75) {
  408. this.dataheight = 3.75 + 'rem'
  409. }
  410. },
  411. uplist() {
  412. uni.redirectTo({
  413. url: "/pages/loadingdetails/index"
  414. })
  415. },
  416. lop(index) {
  417. this.action = index
  418. },
  419. seach() {
  420. uni.redirectTo({
  421. url: "/pages/search/index"
  422. })
  423. },
  424. fall() {
  425. uni.navigateBack({
  426. delta: 1
  427. })
  428. },
  429. change(e) {
  430. this.current = e.detail.current;
  431. }
  432. },
  433. }
  434. </script>
  435. <style lang="scss" scoped>
  436. .app-content {
  437. >.header {
  438. width: 100%;
  439. height: 4.375rem;
  440. display: flex;
  441. justify-content: space-between;
  442. align-items: center;
  443. // background: rgba(49,85,99,1);
  444. color: rgb(16, 17, 22);
  445. font-family: Noto Sans SC;
  446. font-size: 1rem;
  447. position: fixed;
  448. left: 0;
  449. top: 0;
  450. z-index: 1;
  451. >.log {
  452. width: .375rem;
  453. height: .75rem;
  454. font-size: .75rem;
  455. position: absolute;
  456. left: 1.5rem;
  457. background: url('../../static/ico@1x.png') no-repeat;
  458. background-size: 100% 100%;
  459. }
  460. >.send{
  461. position: absolute;
  462. right: 1.5rem;
  463. height: 1.5rem;
  464. font-size: 1rem;
  465. line-height: 1.5rem;
  466. }
  467. >.up {
  468. width: .8456rem;
  469. height: .8456rem;
  470. position: absolute;
  471. right: 1.5rem;
  472. background: url('../../static/search.png') no-repeat;
  473. background-size: 100% 100%;
  474. // color: rgb(37, 121, 160);
  475. // font-family: Noto Sans SC;
  476. // font-size: .875rem;
  477. // font-weight: 500;
  478. }
  479. }
  480. >.content {
  481. width: 100%;
  482. // height: calc(100vh - 20.9375rem - 4.375rem);
  483. padding-bottom: 0;
  484. position: absolute;
  485. bottom: 0;
  486. top: 10.75rem;
  487. border-radius: 6px 6px 0px 0px;
  488. overflow: hidden;
  489. background: rgb(255, 255, 255);
  490. >.choice {
  491. width: 100%;
  492. // height: 3.75rem;
  493. display: flex;
  494. align-items: center;
  495. padding: 0 0 0 0.8rem;
  496. box-sizing: border-box;
  497. >.scroll-Y {
  498. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  499. width: 100%;
  500. height: 27.75rem;
  501. .list {
  502. height: 3.375rem;
  503. display: flex;
  504. align-items: center;
  505. border-bottom: 1px solid rgb(238, 238, 238);
  506. position: relative;
  507. color: rgb(0, 0, 0);
  508. font-family: Noto Sans SC;
  509. font-size: 13px;
  510. font-weight: 400;
  511. >.lable {
  512. color: rgb(0, 0, 0);
  513. font-family: Noto Sans SC;
  514. font-size: 13px;
  515. font-weight: 500;
  516. line-height: 19px;
  517. letter-spacing: 0px;
  518. text-align: left;
  519. width: 6rem;
  520. }
  521. >.listup {
  522. width: .25rem;
  523. height: .5rem;
  524. background: url('../../static/icos.png') no-repeat;
  525. background-size: 100% 100%;
  526. position: absolute;
  527. right: 1.5rem;
  528. }
  529. }
  530. }
  531. }
  532. .but {
  533. width: 20.5625rem;
  534. height: 2.5rem;
  535. 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%);
  536. border-radius: .25rem;
  537. color: rgb(255, 255, 255);
  538. font-family: Noto Sans SC;
  539. font-size: 1rem;
  540. margin: 0 auto;
  541. display: flex;
  542. align-items: center;
  543. justify-content: center;
  544. margin-top: 0.25rem;
  545. margin-bottom: 2.25rem;
  546. }
  547. }
  548. }
  549. </style>