mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 09:55:16 +08:00
columns拼写错误: cloumns->columns
This commit is contained in:
parent
b1b6b651c2
commit
b5110d2062
@ -5,7 +5,7 @@
|
|||||||
<basic-info-form ref="basicInfo" :info="info" />
|
<basic-info-form ref="basicInfo" :info="info" />
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane label="字段信息" name="cloum">
|
<el-tab-pane label="字段信息" name="cloum">
|
||||||
<el-table ref="dragTable" :data="cloumns" row-key="columnId" :max-height="tableHeight">
|
<el-table ref="dragTable" :data="columns" row-key="columnId" :max-height="tableHeight">
|
||||||
<el-table-column label="序号" type="index" min-width="5%" class-name="allowDrag" />
|
<el-table-column label="序号" type="index" min-width="5%" class-name="allowDrag" />
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="字段列名"
|
label="字段列名"
|
||||||
@ -147,7 +147,7 @@ export default {
|
|||||||
// 表信息
|
// 表信息
|
||||||
tables: [],
|
tables: [],
|
||||||
// 表列信息
|
// 表列信息
|
||||||
cloumns: [],
|
columns: [],
|
||||||
// 字典信息
|
// 字典信息
|
||||||
dictOptions: [],
|
dictOptions: [],
|
||||||
// 菜单信息
|
// 菜单信息
|
||||||
@ -161,7 +161,7 @@ export default {
|
|||||||
if (tableId) {
|
if (tableId) {
|
||||||
// 获取表详细信息
|
// 获取表详细信息
|
||||||
getGenTable(tableId).then(res => {
|
getGenTable(tableId).then(res => {
|
||||||
this.cloumns = res.data.rows;
|
this.columns = res.data.rows;
|
||||||
this.info = res.data.info;
|
this.info = res.data.info;
|
||||||
this.tables = res.data.tables;
|
this.tables = res.data.tables;
|
||||||
});
|
});
|
||||||
@ -184,7 +184,7 @@ export default {
|
|||||||
const validateResult = res.every(item => !!item);
|
const validateResult = res.every(item => !!item);
|
||||||
if (validateResult) {
|
if (validateResult) {
|
||||||
const genTable = Object.assign({}, basicForm.model, genForm.model);
|
const genTable = Object.assign({}, basicForm.model, genForm.model);
|
||||||
genTable.columns = this.cloumns;
|
genTable.columns = this.columns;
|
||||||
genTable.params = {
|
genTable.params = {
|
||||||
treeCode: genTable.treeCode,
|
treeCode: genTable.treeCode,
|
||||||
treeName: genTable.treeName,
|
treeName: genTable.treeName,
|
||||||
@ -220,10 +220,10 @@ export default {
|
|||||||
const sortable = Sortable.create(el, {
|
const sortable = Sortable.create(el, {
|
||||||
handle: ".allowDrag",
|
handle: ".allowDrag",
|
||||||
onEnd: evt => {
|
onEnd: evt => {
|
||||||
const targetRow = this.cloumns.splice(evt.oldIndex, 1)[0];
|
const targetRow = this.columns.splice(evt.oldIndex, 1)[0];
|
||||||
this.cloumns.splice(evt.newIndex, 0, targetRow);
|
this.columns.splice(evt.newIndex, 0, targetRow);
|
||||||
for (let index in this.cloumns) {
|
for (let index in this.columns) {
|
||||||
this.cloumns[index].sort = parseInt(index) + 1;
|
this.columns[index].sort = parseInt(index) + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user