|
@@ -434,8 +434,8 @@ export default {
|
|
|
},
|
|
|
eledite () {
|
|
|
this.flag = false;
|
|
|
- const arrbegin = _.cloneDeep(this.tableOptionscp);
|
|
|
- this.tableOptions = arrbegin;
|
|
|
+ // const arrbegin = _.cloneDeep(this.tableOptionscp);
|
|
|
+ // this.tableOptions = arrbegin;
|
|
|
},
|
|
|
load () {
|
|
|
//
|
|
@@ -651,12 +651,12 @@ export default {
|
|
|
: await moveData(params);
|
|
|
if (code == 0) {
|
|
|
this.$message.success("操作成功");
|
|
|
- this.resetTable();
|
|
|
- this.getQuery(this.queryId);
|
|
|
this.flag = false;
|
|
|
this.rmFlag = false;
|
|
|
this.tableObj = {};
|
|
|
this.tableForm = {};
|
|
|
+ this.resetTable();
|
|
|
+ this.load();
|
|
|
// this.$router.go(0);
|
|
|
} else {
|
|
|
this.$message.error("操作失败");
|
|
@@ -694,6 +694,30 @@ export default {
|
|
|
if (item.needGroup) {
|
|
|
this.tableGroups.push(item.columnName);
|
|
|
}
|
|
|
+ if (item.listqueryTemplateID || item.listqueryTemplateID == 0) {
|
|
|
+ this.tableArrs.push(item.columnName);
|
|
|
+ // const reqUt = this.getSelectData(item.listqueryTemplateID)
|
|
|
+ // reqUts.push(reqUt)
|
|
|
+ if (!this.tableOptions[item.columnName]) {
|
|
|
+ //开始位置beginPosition 结束位置endPosition (区分开始结束位置必须传null)
|
|
|
+ if (
|
|
|
+ item.columnName == "alarmSceneId"
|
|
|
+ ) {
|
|
|
+ this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
+ item.listqueryTemplateID,
|
|
|
+ this.urlParams,
|
|
|
+ true
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
+ item.listqueryTemplateID
|
|
|
+ );
|
|
|
+ }
|
|
|
+ this.tabledatacopy[item.columnName] = _.cloneDeep(
|
|
|
+ this.tableOptions[item.columnName]
|
|
|
+ );
|
|
|
+ }
|
|
|
+ }
|
|
|
});
|
|
|
const dats = this.setTableFilters(this.tableData, this.tableDataFilters)
|
|
|
this.tableDataFilters = _.cloneDeep(dats)
|
|
@@ -733,14 +757,39 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
//获取弹框-下拉数据
|
|
|
- async getSelectData (id, name) {
|
|
|
+ async getSelectData (id, name = [], flag = false) {
|
|
|
// name ? [name] : name === null ? [null]: [],
|
|
|
const { code, returnData } = await Query({
|
|
|
- id,
|
|
|
- dataContent: name ? [name] : name === null ? [null] : [],
|
|
|
+ serviceId: id,
|
|
|
+ dataContent: name,
|
|
|
+ event: '0'
|
|
|
});
|
|
|
if (code == 0) {
|
|
|
- return returnData.listValues;
|
|
|
+ const datas = [...returnData]
|
|
|
+ if (datas && datas.length) {
|
|
|
+ const datasObj = datas[0]
|
|
|
+ const arrs = []
|
|
|
+ if (flag) {
|
|
|
+ for (const key in datasObj) {
|
|
|
+ const obj = {
|
|
|
+ v: datasObj[key],
|
|
|
+ k: datasObj[key]
|
|
|
+ }
|
|
|
+ arrs.push(obj)
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ for (const key in datasObj) {
|
|
|
+ const obj = {
|
|
|
+ k: datasObj[key],
|
|
|
+ v: key
|
|
|
+ }
|
|
|
+ arrs.push(obj)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return arrs
|
|
|
+ } else {
|
|
|
+ return []
|
|
|
+ }
|
|
|
} else {
|
|
|
return [];
|
|
|
}
|