@ -195,7 +195,7 @@
</el-row>
<el-row :gutter="0" >
<el-col :span="20" style="margin-top: 0px;margin-bottom: 10px;margin-left: 80px">
<el-checkbox v-model="checked">定向查询</el-checkbox>
<el-checkbox v-model="checked" v-if="!this.formData.billNo">定向查询</el-checkbox>
</el-col>
<el-alert
@ -475,7 +475,7 @@ export default {
//扫码相关
scanCode: "",
isSuccess: false,
checked: true,
checked: false,
scanTitle: "扫码结果:",
result: " \n",
msgTip: "信息提醒:",
@ -531,6 +531,7 @@ export default {
if (res.code == 20000) {
if (res.data.billNo != null) {
this.formData = res.data
this.checked = false
}
})
@ -676,7 +676,7 @@ export default {
this.filterQuery.busType = this.busType
// this.filterQuery.fromCorp = this.fromCorp
this.filterQuery.excludeWorkCode = this.workPlaceCode
this.filterQuery.tagStatus = 1
this.filterQuery.tagStatus = -2
orderPage(this.filterQuery).then(res => {
this.loading = false
this.otherList = res.data.list || []