|
@@ -71,7 +71,6 @@
|
|
|
<el-table-column label="表格组名" align="center" prop="groupName" />
|
|
|
<el-table-column label="描述" align="center" prop="groupDescription" />
|
|
|
<el-table-column label="表格数" align="center" prop="groupCount" />
|
|
|
-
|
|
|
<el-table-column label="成员表格" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<el-popover trigger="hover" placement="top">
|
|
@@ -1070,7 +1069,7 @@ export default {
|
|
|
|
|
|
this.relyFileds.tableFieldList = this.tableFieldList;
|
|
|
this.relyFileds.tableName = this.tableItemForm.tableName;
|
|
|
- this.tableItemForm.rowId = Date.now();
|
|
|
+ // this.tableItemForm.rowId = Date.now();
|
|
|
let newTableData = {
|
|
|
//收集到的表格编辑结果
|
|
|
dtName: this.tableItemForm.title,
|
|
@@ -1081,7 +1080,7 @@ export default {
|
|
|
timeFormate: this.tableItemForm.timeFormate,
|
|
|
primaryKey: this.tableItemForm.selectFields,
|
|
|
tId: this.tId,
|
|
|
- tableKey: tableKey,
|
|
|
+ tableKey: this.tableItemForm.rowId || tableKey,
|
|
|
sortOrder: this.tableItemForm.isAsc,
|
|
|
sqlKey: sqlKey,
|
|
|
dtColumnName: columns,
|
|
@@ -1211,7 +1210,6 @@ export default {
|
|
|
this.tableFieldList = echoData.tableFieldData;
|
|
|
this.tableItemForm.tId = row.tId;
|
|
|
this.tableItemForm.rowId = row.tableKey;
|
|
|
- console.log(typeof row.sortOrder);
|
|
|
this.$set(this.tableItemForm, "isAsc", row.sortOrder);
|
|
|
// this.tableItemForm.isAsc = row.sortOrder;
|
|
|
this.tableItemForm.orderByColumn = row.orderByColumn;
|
|
@@ -1348,6 +1346,8 @@ export default {
|
|
|
this.$message.error("请包含多个表格");
|
|
|
return;
|
|
|
}
|
|
|
+ // console.log(this.tableDataList);
|
|
|
+ // return;
|
|
|
if (this.groupTitle) {
|
|
|
let uuid = uuidv4();
|
|
|
let groupKeyObj = {
|
|
@@ -1589,7 +1589,7 @@ export default {
|
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
|
this.queryParams.pageNum = 1;
|
|
|
- this.getList();
|
|
|
+ this.getTableList();
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|