|
|
@ -198,6 +198,7 @@ export default { |
|
|
|
configVisible: false, |
|
|
|
configVisible: false, |
|
|
|
configLoading: false, |
|
|
|
configLoading: false, |
|
|
|
categoryId: '', |
|
|
|
categoryId: '', |
|
|
|
|
|
|
|
categoryOriginId: '', |
|
|
|
configIds: [], |
|
|
|
configIds: [], |
|
|
|
updateTime: '', |
|
|
|
updateTime: '', |
|
|
|
keywordConfig: '', |
|
|
|
keywordConfig: '', |
|
|
@ -538,6 +539,7 @@ export default { |
|
|
|
}, |
|
|
|
}, |
|
|
|
typeConfigClick(data){ |
|
|
|
typeConfigClick(data){ |
|
|
|
this.categoryId = data.id |
|
|
|
this.categoryId = data.id |
|
|
|
|
|
|
|
this.categoryOriginId = data.originId |
|
|
|
this.getConfigTable() |
|
|
|
this.getConfigTable() |
|
|
|
}, |
|
|
|
}, |
|
|
|
closeConfig(){ |
|
|
|
closeConfig(){ |
|
|
@ -565,7 +567,7 @@ export default { |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 获取配置数据里面分类下的表 |
|
|
|
// 获取配置数据里面分类下的表 |
|
|
|
getConfigTable(){ |
|
|
|
getConfigTable(){ |
|
|
|
this.$post(`${this.api.getIdQueryTable}?categoryId=${this.categoryId}&showName=${this.keywordConfig}&pageNum=${this.pageConfig}&pageSize=${this.pageSizeConfig}&updateTime=${this.updateTime ? this.updateTime : ''}`).then(res => { |
|
|
|
this.$post(`${this.api.getIdQueryTable}?categoryId=${this.categoryOriginId}&showName=${this.keywordConfig}&pageNum=${this.pageConfig}&pageSize=${this.pageSizeConfig}&updateTime=${this.updateTime ? this.updateTime : ''}`).then(res => { |
|
|
|
let list = res.pageList.records |
|
|
|
let list = res.pageList.records |
|
|
|
list.map(n => { |
|
|
|
list.map(n => { |
|
|
|
// 如果有更新时间则转化格式 |
|
|
|
// 如果有更新时间则转化格式 |
|
|
|