|
@@ -103,11 +103,7 @@
|
|
align="center"
|
|
align="center"
|
|
min-width="180"
|
|
min-width="180"
|
|
></el-table-column>
|
|
></el-table-column>
|
|
- <el-table-column
|
|
|
|
- label="禁用/启用"
|
|
|
|
- prop="status"
|
|
|
|
- align="center"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-table-column label="禁用/启用" prop="status" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div>
|
|
<div>
|
|
<div>
|
|
<div>
|
|
@@ -189,7 +185,8 @@ export default {
|
|
},
|
|
},
|
|
classifyList: [],
|
|
classifyList: [],
|
|
screenHeight: document.body.clientHeight - 320,
|
|
screenHeight: document.body.clientHeight - 320,
|
|
- tableDataheight: 0
|
|
|
|
|
|
+ tableDataheight: 0,
|
|
|
|
+ getClassificName: this.$store.state.classificName
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -199,6 +196,13 @@ export default {
|
|
this.screenHeight = document.body.clientHeight - 320
|
|
this.screenHeight = document.body.clientHeight - 320
|
|
})()
|
|
})()
|
|
}
|
|
}
|
|
|
|
+ if (this.getClassificName) {
|
|
|
|
+ this.visbleChange(true)
|
|
|
|
+ this.form.typeId = this.getClassificName.typeId
|
|
|
|
+ this.$store.commit('getClassificName', '')
|
|
|
|
+ } else {
|
|
|
|
+ this.form.typeId = ''
|
|
|
|
+ }
|
|
this.listDataInit()
|
|
this.listDataInit()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|