123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548 |
- <template>
- <view class="app-content">
- <view class="header">
- <view class="log" @tap="fall"></view>{{ navname }}
- </view>
- <view class="craids" v-if="!luggageData">
- <p>暂无行李信息</p>
- <p>请扫描需要操作的行李牌条码</p>
- </view>
- <view class="content" v-if="luggageData">
- <view class="list">
- <p>行李编号</p>
- <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.luggageNum" disabled="true"
- value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
- </view>
- <view class="list">
- <p>航班信息</p>
- <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.carrierFlights"
- disabled="true" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);"
- placeholder="" />
- </view>
- <view class="list">
- <p>航班日期</p>
- <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.carrierFlightsDate"
- disabled="true" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);"
- placeholder="" />
- </view>
- <view class="list">
- <p>当前节点</p>
- <picker @change="bindPickerChange1" :placeholderStyle="placeholderStyle" :value="index1"
- :range-key="'nodeName'" :range="nodeList">
- <view class="uni-input">{{nodeNameList[index1]}}</view>
- </picker>
- <view class="listup"></view>
- </view>
- <view class="list">
- <p>当前位置</p>
- <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false"
- :styles="style" :disabled="false" v-model="luggageData.location_describe" type="text"
- placeholder="操作位置" />
- </uni-forms>
- <view class="listup"></view>
- </view>
- <view class="list">
- <p>当前状态</p>
- <input class="input" name="yonghuming" type="text" v-model.trim="luggageData.currentResult" value=""
- placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="" />
- <view class="listup"></view>
- </view>
- <view class="list">
- <p>异常类型</p>
- <picker @change="bindPickerChange" :value="index" :range-key="'type'" :range="exceptionList">
- <view class="uni-input">{{exceptionList[index].type?exceptionList[index].type:"无"}}</view>
- </picker>
- <view class="listup"></view>
- </view>
- <view class="picturearea">
-
- <view class="name">图片上传</view>
- <!-- <view class="content_list">
- <view class="mg">
- <view class="mg_lg"></view>
- </view>
- <view class="mg">
- <view class="mg_lg"></view>
- </view>
- <view class="mg">
- <view class="mg_lg"></view>
- </view>
- </view> -->
- <!-- <sunui-upimg :url="upPicUrl" :before-upload="onBeforeUpload" ref="upload3" title="+" @upload="handleLoaded3" @change="handleChange3" :number="3">
- <template v-slot:icon>
- <text class="s-add-list-btn-icon">+</text>
- </template>
- </sunui-upimg> -->
- <mk-upload :imgList="imgList" @onDelete="onDelete" @onChoose="onChoose" />
- </view>
- </view>
- <view class="up" v-if="luggageData" @tap="sendData()">提交</view>
- </view>
- </template>
- <script>
- import Nav from '../../components/header/nav.vue'
- import mkUpload from "@/components/mk-upload/mk-upload.vue"
- import {
- translateapp
- } from "@/utils/compress.js"
- import {
- pathToBase64,
- base64ToPath
- } from 'image-tools'
- export default {
- data() {
- return {
- placeholderStyle: "color:000",
- style: {
- disableColor: "#fff",
- color: "#000"
- },
- isShow: true,
- dataheight: '20.75rem',
- scrollTop: 0,
- old: {
- scrollTop: 0
- },
- input: '',
- main: null,
- poll: null,
- filter: null,
- pusher: null,
- intentServer: null,
- arr: [],
- navname: '异常行李登记',
- imgList: [],
- ImgObjList: [],
- luggageNum: null,
- luggageData: null,
- index: 0,
- index1: 0,
- exceptionList: [{
- "type": null,
- "name": "非异常行李"
- },
- {
- "type": "DPR",
- "name": "破损"
- },
- {
- "type": "AHL",
- "name": "少收"
- },
- {
- "type": "OHD",
- "name": "多收"
- }
- ],
- exceptionNameList: ["非异常行李", "破损", "少收", "多收"],
- nodeList: [],
- nodeNameList: [],
- isGet:true
- }
- },
- created(option) {},
- onLoad(option) {
- this.luggageNum = option.luggageNum;
- this.getNode()
- if (this.luggageNum.length > 9) {
- this.getDetial(this.luggageNum)
- }
- },
- onUnload() {
- uni.$off("scancodemsg");
- },
- onShow() {
- uni.$off("scancodemsg");
- uni.$on("scancodemsg", (data) => {
- if (data.msg.length > 9) {
- this.luggageNum = data.msg.trim()
- if (this.luggageNum.length > 9) {
- if(this.isGet==true){
- this.getDetial(this.luggageNum);
- this.isGet = false;
- setTimeout(function(){
- this.isGet = true;
- },500)
- }
- }
- } else {
- uni.showToast({
- icon: 'none',
- title: "请扫描规范条码",
- duration: 5000
- });
- }
- })
- },
- onHide() {
- uni.$off("scancodemsg");
- },
- mounted() {},
- components: {
- Nav,
- mkUpload
- },
- methods: {
- async getNode() {
- let data = {
- "serviceId": 3003,
- "dataContent": {},
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0") {
- this.nodeList = res.returnData;
- this.nodeList.map(item => {
- this.nodeNameList.push(item.nodeName)
- })
- }
- })
- },
- async getDetial(num) {
- let data = {
- "serviceId": 3002,
- "page": 1,
- "pageSize": 1,
- "dataContent": {
- "luggageNum": num, //行李号
- },
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0" && res.returnData.length > 0) {
- this.luggageData = res.returnData[0]
- this.getImgList()
- this.nodeList.map((item, index) => {
- if (res.returnData[0].nodeCode == item.nodeCode) {
- this.index1 = index
- }
- })
- this.exceptionList.map((item, index) => {
- if (res.returnData[0].exception_type == item.type) {
- this.index = index
- }
- })
- } else {
- this.$scanAudio.src = "../../static/hqxl.mp3"
- this.$scanAudio.play()
- uni.showToast({
- icon: 'none',
- title: "未查询到该行李信息",
- duration: 5000
- });
- }
- })
- },
- bindPickerChange(e) {
- this.index = e.detail.value
- this.luggageData.exception_type = this.exceptionList[this.index].type;
- },
- bindPickerChange1(e) {
- this.index1 = e.detail.value
- this.luggageData.nodeCode = this.nodeList[this.index1].nodeCode;
- this.luggageData.location_describe = this.nodeList[this.index1].nodeDescribe;
- },
- async sendData() {
- this.luggageData.sourceAirport = this.$storage.get('airportName');
- this.luggageData.ID = null;
- this.luggageData.dataType = "BPM";
- this.luggageData.agentNumber = this.$storage.getJson("users").user_name;
- this.luggageData.device_ID = uni.getDeviceInfo().deviceId;
- let data = {
- "serviceId": 3005,
- "dataContent": [
- this.luggageData
- ],
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0") {
- uni.showToast({
- icon: 'none',
- title: "操作成功",
- duration: 5000
- });
- } else {
- this.$scanAudio.src = "../../static/czsb.mp3"
- this.$scanAudio.play()
- uni.showToast({
- icon: 'none',
- title: "操作失败",
- duration: 5000
- });
- }
- })
- },
- fall() {
- uni.navigateBack({
- delta: 1
- })
- },
- async sendImg(upImgList) {
- let data = {
- "serviceId": 30051,
- "dataContent": upImgList,
- "event": "1"
- }
- await this.$http.httpPost('/openApi/newdata', data).then(res => {
- if (res.code == "0") {
- uni.hideLoading();
- this.getImgList()
- uni.showToast({
- icon: 'none',
- title: "上传成功",
- duration: 5000
- });
- } else {
- uni.showToast({
- icon: 'none',
- title: "上传失败",
- duration: 5000
- });
- }
- })
- },
- async getImgList() {
- let data = {
- "serviceId": 30051,
- "page": 1,
- "pageSize": 999,
- "dataContent": {
- "carrflights": this.luggageData.carrierFlights,
- "carrierFlightsDate": this.luggageData.carrierFlightsDate,
- "luggageNum": this.luggageData.luggageNum
- },
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0") {
- this.imgList = [];
- this.ImgObjList = res.returnData;
- res.returnData.map(item => {
- if (item.luggagePic) {
- this.imgList.push(item.luggagePic);
- }
- })
- } else {
- this.imgList = [];
- uni.showToast({
- icon: 'none',
- title: "获取图片失败",
- duration: 5000
- });
- }
- })
- },
- async deleteImg(index) {
- let data = {
- "serviceId": 30051,
- "dataContent": [{
- "filter": [{
- "left": "(",
- "column": "id",
- "comparator": "=",
- "value": this.ImgObjList[index].id,
- "right": ")",
- "connector": "and"
- }]
- }],
- "event": "3"
- }
- await this.$http.httpPost('/openApi/movedata', data).then(res => {
- if (res.code == "0") {
- this.getImgList()
- wx.showToast({
- title: '删除成功',
- icon: 'success',
- duration: 3000
- });
- } else {
- uni.showToast({
- icon: 'none',
- title: "删除图片失败",
- duration: 5000
- });
- }
- })
- },
- onDelete(index) {
- console.log(index)
- //删除成功回调后执行 只做演示
- uni.showLoading({
- title: '删除中'
- });
- this.deleteImg(index)
- },
- onChoose(e) {
- console.log(e)
- uni.showLoading({
- title: '上传中'
- });
- // let upImgList = []
- // this.newImgList = []
- e.tempFilePaths.map(item => {
- translateapp(item, 70, imgUrl => {
- pathToBase64(imgUrl).then(path => {
- let upImgList = []
- let newData = {
- "carrflights": this.luggageData.carrierFlights,
- "carrierFlightsDate": this.luggageData.carrierFlightsDate,
- "luggageNum": this.luggageData.luggageNum,
- "luggagePic": path,
- }
- // this.newImgList.push(path)
- upImgList.push(newData)
- this.sendImg(upImgList)
- // upImgList.push(newData)
- }).catch(error => {
- uni.hideLoading();
- })
- })
- })
- },
- onPreviewTake(index) {
- console.log(index)
- wx.showActionSheet({
- itemList: ['预览图片', '删除图片'],
- success(res) {
- console.log(res.tapIndex)
- },
- fail(res) {
- console.log(res.errMsg)
- }
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .app-content {
- >.up {
- position: fixed;
- bottom: 10px;
- left: calc((100% - 20.5625rem) / 2);
- width: 20.5625rem;
- height: 3rem;
- 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%);
- border-radius: .25rem;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 1rem;
- margin: 0 auto;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- >.header {
- width: 100%;
- height: 4.375rem;
- display: flex;
- justify-content: center;
- align-items: center;
- // background: rgba(49,85,99,1);
- color: rgb(16, 17, 22);
- font-family: Noto Sans SC;
- font-size: 1rem;
- position: relative;
- >.log {
- width: .375rem;
- height: .75rem;
- font-size: .75rem;
- position: absolute;
- left: 1.5rem;
- background: url('../../static/ico@1x.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- >.craids {
- margin-top: 10rem;
- height: 5.625rem;
- padding: 0 2.5625rem 0 2.5625rem;
- display: flex;
- justify-content: center;
- align-items: center;
- >p {
- color: rgb(75, 84, 91);
- font-family: Noto Sans SC;
- font-size: 13px;
- font-weight: 500;
- }
- }
- >.content {
- margin-left: 1.5rem;
- height: calc(100vh - 8rem);
- overflow-x: hidden;
- overflow-y: auto;
- >.list {
- height: 3.375rem;
- display: flex;
- align-items: center;
- border-bottom: 1px solid rgb(238, 238, 238);
- >p {
- color: rgb(0, 0, 0);
- font-family: Noto Sans SC;
- font-size: .8125rem;
- font-weight: 500;
- margin-right: 2.1875rem;
- }
- >.listup {
- width: .25rem;
- height: .5rem;
- background: url('../../static/icos.png') no-repeat;
- background-size: 100% 100%;
- position: absolute;
- right: 1.5rem;
- }
- }
- >.picturearea {
- margin-top: 1.875rem;
- >.name {
- color: rgb(0, 0, 0);
- font-family: Noto Sans SC;
- font-size: .8125rem;
- font-weight: 500;
- margin-bottom: 1.25rem;
- }
- >.content_list {
- width: 100%;
- display: flex;
- margin-top: 1.25rem;
- >.mg {
- width: 5.5rem;
- height: 5.5rem;
- background: rgb(197, 207, 211);
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: .625rem;
- >.mg_lg {
- width: 1.75rem;
- height: 1.75rem;
- background: url('../../static/shi.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- }
- }
- }
- }
- </style>
|