|
|
|
@ -106,7 +106,8 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="确认状态:" prop="confirmStatus">
|
|
|
|
|
<el-select v-model="filterQuery.confirmStatus" placeholder="请选择确认状态" clearable="true" style="width: 90%"
|
|
|
|
|
<el-select v-model="filterQuery.confirmStatus" placeholder="请选择确认状态" clearable="true"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
@change="invChange">
|
|
|
|
|
<el-option label="确认" :value="1"></el-option>
|
|
|
|
|
<el-option label="未确认" :value="0"></el-option>
|
|
|
|
@ -608,7 +609,7 @@ export default {
|
|
|
|
|
checkDateStatus: {
|
|
|
|
|
1: "已确认",
|
|
|
|
|
0: "未确认",
|
|
|
|
|
null:"未确认"
|
|
|
|
|
null: "未确认"
|
|
|
|
|
},
|
|
|
|
|
storageList: [],
|
|
|
|
|
invList: [],
|
|
|
|
@ -864,10 +865,11 @@ export default {
|
|
|
|
|
deleteById(row)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
console.log(response.data.length)
|
|
|
|
|
if (response.data.length == 0) {
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
this.getBizDetailListInv(this.subRow);
|
|
|
|
|
this.$message({
|
|
|
|
|