diff --git a/src/views/PurchasingCenter/InvoiceSettlementApplication/index.vue b/src/views/PurchasingCenter/InvoiceSettlementApplication/index.vue
index 9fd5019d..f5535889 100644
--- a/src/views/PurchasingCenter/InvoiceSettlementApplication/index.vue
+++ b/src/views/PurchasingCenter/InvoiceSettlementApplication/index.vue
@@ -138,7 +138,7 @@
- {{ scope.row.入库日期 }}
+ {{ scope.row.入库日期 ? scope.row.入库日期.split(' ')[0] : '—' }}
@@ -158,7 +158,7 @@
- {{ scope.row.到货日期 }}
+ {{ scope.row.到货日期 ? scope.row.到货日期.split(' ')[0] : '—' }}
@@ -316,7 +316,7 @@
- {{ scope.row.入库日期 }}
+ {{ scope.row.入库日期 ? scope.row.入库日期.split(' ')[0] : '—' }}
@@ -336,7 +336,7 @@
- {{ scope.row.到货日期 }}
+ {{ scope.row.到货日期 ? scope.row.到货日期.split(' ')[0] : '—' }}
@@ -414,7 +414,7 @@
@@ -712,7 +712,7 @@ export default {
}).then(() => {
const group = []
for (let i = 0; i < this.group2.length; i++) {
- group.push(this.group2[i].发票结算申请单明细流水号组)
+ group.push(this.group2[i].发票结算申请单明细流水号)
}
deleteTable2(group).then(response => {
if (response.data[0].result === '1') {
diff --git a/src/views/PurchasingCenter/InvoiceSettlementApprove/index.vue b/src/views/PurchasingCenter/InvoiceSettlementApprove/index.vue
index 1bf094f6..6b002293 100644
--- a/src/views/PurchasingCenter/InvoiceSettlementApprove/index.vue
+++ b/src/views/PurchasingCenter/InvoiceSettlementApprove/index.vue
@@ -133,7 +133,7 @@
- {{ scope.row.入库日期 }}
+ {{ scope.row.入库日期 ? scope.row.入库日期.split(' ')[0] : '—' }}
@@ -153,7 +153,7 @@
- {{ scope.row.到货日期 }}
+ {{ scope.row.到货日期 ? scope.row.到货日期.split(' ')[0] : '—' }}