|
@@ -57,7 +57,7 @@
|
|
size="small"
|
|
size="small"
|
|
style="width: 215px">
|
|
style="width: 215px">
|
|
<el-option
|
|
<el-option
|
|
- v-for="dict in zciInvoiceStatusOptions"
|
|
|
|
|
|
+ v-for="dict in invoiceStatusOptions"
|
|
:key="dict.dictValue"
|
|
:key="dict.dictValue"
|
|
:label="dict.dictLabel"
|
|
:label="dict.dictLabel"
|
|
:value="dict.dictValue"
|
|
:value="dict.dictValue"
|
|
@@ -186,7 +186,7 @@
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="发票状态" prop="zciInvoiceStatus">
|
|
|
|
|
|
+ <!-- <el-form-item label="发票状态" prop="zciInvoiceStatus">
|
|
<el-select v-model="invoiceParams.zciInvoiceStatus"
|
|
<el-select v-model="invoiceParams.zciInvoiceStatus"
|
|
placeholder="发票状态"
|
|
placeholder="发票状态"
|
|
clearable
|
|
clearable
|
|
@@ -199,7 +199,7 @@
|
|
:value="dict.dictValue"
|
|
:value="dict.dictValue"
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
- </el-form-item>
|
|
|
|
|
|
+ </el-form-item> -->
|
|
<el-form-item label="创建时间">
|
|
<el-form-item label="创建时间">
|
|
<el-date-picker v-model="dateInvoiceRange" size="small" style="width: 225px"
|
|
<el-date-picker v-model="dateInvoiceRange" size="small" style="width: 225px"
|
|
value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期"
|
|
value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期"
|
|
@@ -380,6 +380,7 @@ export default {
|
|
zciStatusOptions:[],
|
|
zciStatusOptions:[],
|
|
//发票状态
|
|
//发票状态
|
|
zciInvoiceStatusOptions:[],
|
|
zciInvoiceStatusOptions:[],
|
|
|
|
+ invoiceStatusOptions : [],
|
|
//融资状态
|
|
//融资状态
|
|
zfrStatusOptions:[],
|
|
zfrStatusOptions:[],
|
|
//操作员Id
|
|
//操作员Id
|
|
@@ -510,9 +511,9 @@ export default {
|
|
},
|
|
},
|
|
// 表单校验
|
|
// 表单校验
|
|
rules: {
|
|
rules: {
|
|
- zciExpressNo: [
|
|
|
|
- { required: true, message: "快递单号不能为空", trigger: "blur" },
|
|
|
|
- ]
|
|
|
|
|
|
+ // zciExpressNo: [
|
|
|
|
+ // { required: true, message: "快递单号不能为空", trigger: "blur" },
|
|
|
|
+ // ]
|
|
},
|
|
},
|
|
};
|
|
};
|
|
},
|
|
},
|
|
@@ -520,30 +521,33 @@ export default {
|
|
this.getDicts("ser_zci_status").then(response => {
|
|
this.getDicts("ser_zci_status").then(response => {
|
|
this.zciStatusOptions = response.data;
|
|
this.zciStatusOptions = response.data;
|
|
});
|
|
});
|
|
- this.getDicts(" ser_zci_invoice_status").then(response => {
|
|
|
|
|
|
+ this.getDicts("ser_zci_invoice_status").then(response => {
|
|
this.zciInvoiceStatusOptions = response.data;
|
|
this.zciInvoiceStatusOptions = response.data;
|
|
});
|
|
});
|
|
- this.getDicts(" ser_zfr_status").then(response => {
|
|
|
|
- this.zfrStatusOptions = response.data;
|
|
|
|
- });
|
|
|
|
- this.getList();
|
|
|
|
- this.getInvoice();
|
|
|
|
- this.getUser();
|
|
|
|
- },
|
|
|
|
- activated() {
|
|
|
|
- this.getDicts("ser_zci_status").then(response => {
|
|
|
|
- this.zciStatusOptions = response.data;
|
|
|
|
- });
|
|
|
|
- this.getDicts(" ser_zci_invoice_status").then(response => {
|
|
|
|
- this.zciInvoiceStatusOptions = response.data;
|
|
|
|
|
|
+ this.getDicts("ser_invoice_status").then(response => {
|
|
|
|
+ this.invoiceStatusOptions = response.data;
|
|
});
|
|
});
|
|
- this.getDicts(" ser_zfr_status").then(response => {
|
|
|
|
|
|
+ this.getDicts("ser_zfr_status").then(response => {
|
|
this.zfrStatusOptions = response.data;
|
|
this.zfrStatusOptions = response.data;
|
|
});
|
|
});
|
|
this.getList();
|
|
this.getList();
|
|
this.getInvoice();
|
|
this.getInvoice();
|
|
this.getUser();
|
|
this.getUser();
|
|
},
|
|
},
|
|
|
|
+ // activated() {
|
|
|
|
+ // this.getDicts("ser_zci_status").then(response => {
|
|
|
|
+ // this.zciStatusOptions = response.data;
|
|
|
|
+ // });
|
|
|
|
+ // this.getDicts(" ser_zci_invoice_status").then(response => {
|
|
|
|
+ // this.zciInvoiceStatusOptions = response.data;
|
|
|
|
+ // });
|
|
|
|
+ // this.getDicts(" ser_zfr_status").then(response => {
|
|
|
|
+ // this.zfrStatusOptions = response.data;
|
|
|
|
+ // });
|
|
|
|
+ // this.getList();
|
|
|
|
+ // this.getInvoice();
|
|
|
|
+ // this.getUser();
|
|
|
|
+ // },
|
|
mounted() {
|
|
mounted() {
|
|
this.columnQuery();
|
|
this.columnQuery();
|
|
},
|
|
},
|