|
@@ -257,7 +257,7 @@
|
|
v-for="val in orderByFieldList"
|
|
v-for="val in orderByFieldList"
|
|
:key="val.fieldName"
|
|
:key="val.fieldName"
|
|
:label="val.fieldDescription"
|
|
:label="val.fieldDescription"
|
|
- :value="val.fieldName"
|
|
|
|
|
|
+ :value="val.tableName + '.' + val.fieldName"
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -1065,6 +1065,7 @@ export default {
|
|
tableFieldData: this.tableFieldList,
|
|
tableFieldData: this.tableFieldList,
|
|
formData: this.formData,
|
|
formData: this.formData,
|
|
};
|
|
};
|
|
|
|
+ let isAsc = this.formData.isAsc == "ASC" ? 1 : 0;
|
|
let data = {
|
|
let data = {
|
|
tId: this.tId,
|
|
tId: this.tId,
|
|
dtName: this.formData.menuName,
|
|
dtName: this.formData.menuName,
|
|
@@ -1072,6 +1073,8 @@ export default {
|
|
// tableKey: this.formData.routePath, // 暂定
|
|
// tableKey: this.formData.routePath, // 暂定
|
|
dtTableName: this.tableName,
|
|
dtTableName: this.tableName,
|
|
primaryKey: this.formData.primaryKey,
|
|
primaryKey: this.formData.primaryKey,
|
|
|
|
+ orderByColumn: this.formData.orderByColumn,
|
|
|
|
+ isAsc,
|
|
sqlKey: uuid,
|
|
sqlKey: uuid,
|
|
dtColumnName: columns, //列字段标题名称(存储显示字段信息
|
|
dtColumnName: columns, //列字段标题名称(存储显示字段信息
|
|
timeFormat: this.formData.timeFormate,
|
|
timeFormat: this.formData.timeFormate,
|