- {{ scope.row.出库时间 }}
+ {{ scope.row.出库时间 ? scope.row.出库时间.split(' ')[0] : '' }}
@@ -1004,7 +1026,11 @@ export default {
radio2: 1,
radio3: 1,
basicshow: true,
+ genneralshow: false,
purchaseshow: true,
+ standardshow: false,
+ housebasicshow: true,
+ housepurchaseshow: false,
HouseDataBasic: [],
HouseDataBasicOut: [],
HouseDataBasicIn: [],
@@ -1020,12 +1046,31 @@ export default {
handleClick(tab, event) {
},
BasicShow() {
- this.basicshow = true
- this.purchaseshow = false
+ if (this.radio === 1) {
+ this.basicshow = true
+ this.genneralshow = false
+ } else if (this.radio === 2) {
+ this.basicshow = false
+ this.genneralshow = true
+ }
},
GeneralShow() {
- this.purchaseshow = true
- this.basicshow = false
+ if (this.radio === 3) {
+ this.purchaseshow = true
+ this.standardshow = false
+ } else {
+ this.purchaseshow = false
+ this.standardshow = true
+ }
+ },
+ HouseShow() {
+ if (this.radio === 5) {
+ this.housebasicshow = true
+ this.housepurchaseshow = false
+ } else {
+ this.housebasicshow = false
+ this.housepurchaseshow = true
+ }
},
fetchData() {
this.getSelect(initProject, ['项目名称', '项目流水号'], 'Project') // 项目名称
diff --git a/src/views/ManufacturingCenter/GroupMatching/index.vue b/src/views/ManufacturingCenter/GroupMatching/index.vue
index 162f5595..2b57204b 100644
--- a/src/views/ManufacturingCenter/GroupMatching/index.vue
+++ b/src/views/ManufacturingCenter/GroupMatching/index.vue
@@ -158,13 +158,83 @@
+ @size-change="handleSizeChange4"
+ @current-change="handleCurrentChange4"/>
+
+
+
+