index.vue 9.6 KB

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