按钮文案修改
This commit is contained in:
parent
88d84bbcb5
commit
3dc501d617
|
@ -63,7 +63,7 @@
|
|||
<template slot-scope="scope">
|
||||
<el-popconfirm
|
||||
confirm-button-text="确认"
|
||||
cancel-button-text="不用了"
|
||||
cancel-button-text="取消"
|
||||
icon="el-icon-info"
|
||||
icon-color="red"
|
||||
title="确定删除该实例数据吗?"
|
||||
|
@ -86,117 +86,117 @@ export default {
|
|||
props: {
|
||||
dataForm: {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
default: () => {}
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: "",
|
||||
default: ''
|
||||
},
|
||||
typeList: {
|
||||
type: Array,
|
||||
default: () => [],
|
||||
},
|
||||
default: () => []
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
dataInfo: {
|
||||
handler(newVal) {
|
||||
this.dataInfo = newVal;
|
||||
this.$emit("update", {
|
||||
handler (newVal) {
|
||||
this.dataInfo = newVal
|
||||
this.$emit('update', {
|
||||
title: this.title,
|
||||
list: newVal,
|
||||
});
|
||||
list: newVal
|
||||
})
|
||||
},
|
||||
deep: true,
|
||||
immediate: true,
|
||||
immediate: true
|
||||
},
|
||||
count: {
|
||||
handler(newVal) {
|
||||
this.count = newVal;
|
||||
this.$emit("updateCount", {
|
||||
handler (newVal) {
|
||||
this.count = newVal
|
||||
this.$emit('updateCount', {
|
||||
title: this.title,
|
||||
count: newVal,
|
||||
});
|
||||
count: newVal
|
||||
})
|
||||
},
|
||||
deep: true,
|
||||
immediate: true,
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
count: "",
|
||||
dataInfo: [],
|
||||
};
|
||||
count: '',
|
||||
dataInfo: []
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
addBaseInfo() {
|
||||
let data = {
|
||||
name: "",
|
||||
type: "",
|
||||
dept: "",
|
||||
};
|
||||
this.dataInfo.push(data);
|
||||
addBaseInfo () {
|
||||
const data = {
|
||||
name: '',
|
||||
type: '',
|
||||
dept: ''
|
||||
}
|
||||
this.dataInfo.push(data)
|
||||
},
|
||||
handleDelete(row) {
|
||||
this.dataInfo.splice(row, 1);
|
||||
handleDelete (row) {
|
||||
this.dataInfo.splice(row, 1)
|
||||
},
|
||||
getDataInfo(dataForm) {
|
||||
let arr = [];
|
||||
getDataInfo (dataForm) {
|
||||
let arr = []
|
||||
if (dataForm && (dataForm.id || dataForm.id === 0)) {
|
||||
if (this.title === "基础设施") {
|
||||
this.count = dataForm.infrastructureCount;
|
||||
if (this.title === '基础设施') {
|
||||
this.count = dataForm.infrastructureCount
|
||||
}
|
||||
if (this.title === "组件服务") {
|
||||
this.count = dataForm.componentCount;
|
||||
if (this.title === '组件服务') {
|
||||
this.count = dataForm.componentCount
|
||||
}
|
||||
if (this.title === "数据资源") {
|
||||
this.count = dataForm.dataSourceCount;
|
||||
if (this.title === '数据资源') {
|
||||
this.count = dataForm.dataSourceCount
|
||||
}
|
||||
|
||||
let fuseAttrList = dataForm.fuseAttrList || [];
|
||||
let obj = fuseAttrList.find((v) => v.attrType === this.title) || {};
|
||||
let attrValue = JSON.parse(obj.attrValue || "[]");
|
||||
const fuseAttrList = dataForm.fuseAttrList || []
|
||||
const obj = fuseAttrList.find((v) => v.attrType === this.title) || {}
|
||||
const attrValue = JSON.parse(obj.attrValue || '[]')
|
||||
if (attrValue.length > 0) {
|
||||
attrValue.map((v) => {
|
||||
arr.push(v);
|
||||
});
|
||||
arr.push(v)
|
||||
})
|
||||
} else {
|
||||
arr = [];
|
||||
arr = []
|
||||
}
|
||||
} else {
|
||||
arr = [];
|
||||
arr = []
|
||||
}
|
||||
|
||||
this.dataInfo = arr;
|
||||
this.dataInfo = arr
|
||||
},
|
||||
// 新增
|
||||
addItem() {
|
||||
let index = this.dataInfo.length - 1;
|
||||
if (this.dataInfo[index][this.keyTextObj.descObj.key] === "") {
|
||||
return this.$message.warning("请填写完整信息!");
|
||||
addItem () {
|
||||
const index = this.dataInfo.length - 1
|
||||
if (this.dataInfo[index][this.keyTextObj.descObj.key] === '') {
|
||||
return this.$message.warning('请填写完整信息!')
|
||||
}
|
||||
this.dataInfo.push({
|
||||
[this.keyTextObj.descObj.key]: "",
|
||||
});
|
||||
[this.keyTextObj.descObj.key]: ''
|
||||
})
|
||||
},
|
||||
// 删除
|
||||
deleteItem(index) {
|
||||
this.$confirm("确认是否删除?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
deleteItem (index) {
|
||||
this.$confirm('确认是否删除?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
})
|
||||
.then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "删除成功!",
|
||||
});
|
||||
this.dataInfo.splice(index, 1);
|
||||
type: 'success',
|
||||
message: '删除成功!'
|
||||
})
|
||||
this.dataInfo.splice(index, 1)
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
.catch(() => {})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .el-table thead {
|
||||
|
@ -245,4 +245,4 @@ export default {
|
|||
.add-btn {
|
||||
margin-left: 10px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue