配置数据权限
-
@@ -286,9 +285,9 @@ export default {
function handleId(data){
data.map(n => {
n.originId = n.id
- n.id = String(++that.typeIndex)
+ n.id = String(++that.typeIndex) // 分类id跟表id有可能会重复,所以把分类id都加上个基数,防止冲突,同时用originId保存起来真正的id
n.label = n.categoryName
- n.disabled = true
+ n.disabled = true // 一律禁止勾选
if(n.children.length){
handleId(n.children)
}
@@ -471,6 +470,7 @@ export default {
let list = this.checkedIds
this.tableId = []
const proList = []
+ // 勾选的分类id分别去查询下面的表id,也可以全部id用逗号分隔去查,这里遍历去查是因为这样速度更快
list.map(e => {
proList.push(new Promise((resolve,reject) => {
this.$get(`${this.api.getAllTableIdBycategoryId}?categoryId=${e}`).then(res => {
@@ -481,6 +481,7 @@ export default {
})
}))
})
+ // 全部分类id遍历查询完resolve回去
return Promise.all(proList).then(res => {
resolve()
}).catch(err => {})
@@ -490,10 +491,8 @@ export default {
if(!this.productName) return this.$message.warning('请输入数据产品名称')
if(!this.market) return this.$message.warning('请输入市场价格')
if(isNaN(this.market)) return this.$message.warning('市场价格请输入数字')
- // if(!this.$refs.type.getCheckedNodes().length) return this.$message.warning('请选择数据')
-
- this.submited = true
-
+ if(!this.checkedIds.length) return this.$message.warning('请选择数据')
+ this.submited = true // 提交状态
this.getIds().then(() => {
let tableId = Array.from(new Set(this.tableId))
if(!tableId.length) return this.$message.warning('请选择数据')
@@ -508,7 +507,7 @@ export default {
orderNum: '',
status: '',
tableNum: tableId.length,
- updateTime: '',
+ updateTime: ''
}
if(this.id){
this.$post(this.api.updateProduct,data).then(res => {
@@ -531,15 +530,15 @@ export default {
}
})
},
-
configData(){
this.configVisible = true
this.getConfigType()
+ // 编辑的时候才需要获取外面的弹框的已选数据,传到配置数据里去默认勾选
if (this.id) {
let list = this.$refs.type.getCheckedNodes()
let configIds = []
list.map(n => {
- if(!n.name) configIds.push(n.originId)
+ if(!n.name) configIds.push(n.originId) // 分类没有name。只需要分类id,因为配置数据里是以分类为维度的,所以获取表id无法默认勾选
})
this.configIds = configIds
}
@@ -598,6 +597,7 @@ export default {
this.$get(`${this.api.previewData}?tableName=${row.name}&tableId=${row.id}`).then(res => {
let comment = res.comment
let previewHead = []
+ // 不显示id和操作时间
comment.map(n => {
n.field != 'id' && n.field != 'operation_time' && previewHead.push(n)
})
@@ -606,6 +606,7 @@ export default {
let data = res.data
data.map(n => {
for(let i in n){
+ // 把返回的时间格式化
if(typeof n[i] == 'string' && n[i].endsWith('+0000')) n[i] = this.formatDate('yyyy-MM-dd hh:mm:ss',new Date(n[i]))
}
})
@@ -619,7 +620,7 @@ export default {
list.map(n => {
if(n.children && n.children.length){
this.getTableId(n.children)
- if(checked.includes(n.originId) && n.children[0].name){
+ if(checked.includes(n.originId) && n.children[0].name){ // 选中的并且是表(表才有name)
this.configCheckedTableId = [...this.configCheckedTableId,...n.children.map(n => n.id)]
}else{
this.getTableId(n.children)
@@ -628,7 +629,7 @@ export default {
})
},
confirmConfig(){
- this.configChecked = this.$refs.typeConfig.getCheckedKeys().map(n => n)
+ this.configChecked = this.$refs.typeConfig.getCheckedKeys().map(n => n) // 获取选中的id
this.checkedIds = this.configChecked
this.configVisible = false
this.$nextTick(() => {