相关bug修改

ywj_dev
anthonywj 2 years ago
parent 81e765cfee
commit 19bd9c41b3

@ -11,7 +11,7 @@
<el-col :span="6"> <el-col :span="6">
<el-form-item label="状态:" prop="inCodeStatus"> <el-form-item label="状态:" prop="inCodeStatus" clearable>
<el-select v-model="query.inCodeStatus" style="width: 90%"> <el-select v-model="query.inCodeStatus" style="width: 90%">
<el-option label="未打印" value="1"></el-option> <el-option label="未打印" value="1"></el-option>
<el-option label="已打印" value="2"></el-option> <el-option label="已打印" value="2"></el-option>

@ -386,7 +386,7 @@ export default {
getBusTypeByInv() { getBusTypeByInv() {
let query = { let query = {
code: this.orderFormData.invCode, code: this.orderFormData.invCode,
busType: 2,// vueType: "supDelivery",
}; };
findByInvUser(query) findByInvUser(query)
.then((response) => { .then((response) => {

@ -442,6 +442,7 @@ export default {
billNo: "" billNo: ""
}, },
actDateRange: [], actDateRange: [],
auditDateRange:[],
pickerOptions: { pickerOptions: {
shortcuts: [ shortcuts: [
{ {
@ -535,6 +536,15 @@ export default {
this.filterQuery.startTime = null; this.filterQuery.startTime = null;
this.filterQuery.endTime = null; this.filterQuery.endTime = null;
} }
if (this.auditDateRange !== null) {
this.filterQuery.startAduditTime = this.auditDateRange[0];
this.filterQuery.endAduditTime = this.auditDateRange[1];
} else {
this.filterQuery.startAduditTime = null;
this.filterQuery.endAduditTime = null;
}
this.filterQuery.page = 1; this.filterQuery.page = 1;
this.getList(); this.getList();
}, },

@ -723,7 +723,6 @@ export default {
this.confirmStatus = this.currentAudit.auditStatus; this.confirmStatus = this.currentAudit.auditStatus;
}, },
revoke(inputQuery) { revoke(inputQuery) {
this.$confirm("是否确定撤回证书状态至未确认?", "提示", { this.$confirm("是否确定撤回证书状态至未确认?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",

Loading…
Cancel
Save