扫描轨迹已结束
This commit is contained in:
parent
c78c32719b
commit
6bdd0b2a40
@ -66,6 +66,9 @@
|
|||||||
v-hasPermi="['emis:emisTmsScanRecord:batchScan']"
|
v-hasPermi="['emis:emisTmsScanRecord:batchScan']"
|
||||||
>批量扫描</el-button>
|
>批量扫描</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-checkbox v-model="blLastTrack" label="1" style="line-height: 32px;" >轨迹已结束</el-checkbox>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -159,7 +162,7 @@ export default {
|
|||||||
emisTmsScanRecordList: [],
|
emisTmsScanRecordList: [],
|
||||||
queryParams:{},
|
queryParams:{},
|
||||||
tableHeight: 200,
|
tableHeight: 200,
|
||||||
|
blLastTrack:0,
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 表单校验
|
// 表单校验
|
||||||
@ -416,8 +419,7 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 检查
|
// 检查
|
||||||
let scanInfo = {scanType:"20",opType:2,scanData:scanData}
|
let scanInfo = {scanType:"20",opType:2,scanData:scanData, blLastTrack:this.blLastTrack?1:0}
|
||||||
console.log(scanInfo)
|
|
||||||
|
|
||||||
doScan(scanInfo).then(response => {
|
doScan(scanInfo).then(response => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
|
|||||||
@ -56,6 +56,12 @@
|
|||||||
<el-form-item :label="$t('目的地')" prop="destCode" label-width="100px">
|
<el-form-item :label="$t('目的地')" prop="destCode" label-width="100px">
|
||||||
<DestinationPicker v-model="queryParams.destCode" @onChange="onDestinationSelect" ></DestinationPicker>
|
<DestinationPicker v-model="queryParams.destCode" @onChange="onDestinationSelect" ></DestinationPicker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('轨迹已结束')">
|
||||||
|
<el-select v-model="queryParams.blLastTrack" clearable :placeholder="$t('请选择')" >
|
||||||
|
<el-option :label="$t('是')" value="1"></el-option>
|
||||||
|
<el-option :label="$t('否')" value="0"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -162,7 +168,12 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :label="$t('扫描重量')" align="center" prop="scanWeight" min-width="100" />
|
<el-table-column :label="$t('扫描重量')" align="center" prop="scanWeight" min-width="100" />
|
||||||
<el-table-column :label="$t('车牌号')" align="center" prop="carNo" min-width="100" />
|
<el-table-column :label="$t('车牌号')" align="center" prop="carNo" min-width="100" />
|
||||||
|
<el-table-column :label="$t('轨迹已结束')" align="center" prop="blLastTrack" min-width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-tag type="error" v-if="scope.row.blLastTrack==1">已结束</el-tag>
|
||||||
|
<el-tag type="success" v-else>未结束</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</xd-table>
|
</xd-table>
|
||||||
|
|
||||||
<!-- 添加或修改网点电子面单申请对话框 -->
|
<!-- 添加或修改网点电子面单申请对话框 -->
|
||||||
@ -305,6 +316,7 @@ export default {
|
|||||||
queryType:"1",// 选择运单类型,默认为 运单号:1,订单号:0
|
queryType:"1",// 选择运单类型,默认为 运单号:1,订单号:0
|
||||||
// scanType:"",
|
// scanType:"",
|
||||||
isSubBill:"",
|
isSubBill:"",
|
||||||
|
blLastTrack:null,
|
||||||
},
|
},
|
||||||
// 修改参数
|
// 修改参数
|
||||||
modifyParams:{
|
modifyParams:{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user