From fec61f965088248911bdd14071c2bcedc3cca5a4 Mon Sep 17 00:00:00 2001
From: 疯狂的狮子Li <15040126243@163.com>
Date: 星期三, 19 六月 2024 14:30:19 +0800
Subject: [PATCH] update 优化 clientid写死问题
---
src/views/tool/gen/editTable.vue | 47 +++++++++++++++++++++++++++++------------------
1 files changed, 29 insertions(+), 18 deletions(-)
diff --git a/src/views/tool/gen/editTable.vue b/src/views/tool/gen/editTable.vue
index 7361bdb..bbb0889 100644
--- a/src/views/tool/gen/editTable.vue
+++ b/src/views/tool/gen/editTable.vue
@@ -35,22 +35,22 @@
<el-table-column label="鎻掑叆" min-width="5%">
<template #default="scope">
- <el-checkbox true-label="1" false-label="0" v-model="scope.row.isInsert"></el-checkbox>
+ <el-checkbox v-model="scope.row.isInsert" true-value="1" false-value="0"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="缂栬緫" min-width="5%">
<template #default="scope">
- <el-checkbox true-label="1" false-label="0" v-model="scope.row.isEdit"></el-checkbox>
+ <el-checkbox v-model="scope.row.isEdit" true-value="1" false-value="0"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="鍒楄〃" min-width="5%">
<template #default="scope">
- <el-checkbox true-label="1" false-label="0" v-model="scope.row.isList"></el-checkbox>
+ <el-checkbox v-model="scope.row.isList" true-value="1" false-value="0"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="鏌ヨ" min-width="5%">
<template #default="scope">
- <el-checkbox true-label="1" false-label="0" v-model="scope.row.isQuery"></el-checkbox>
+ <el-checkbox v-model="scope.row.isQuery" true-value="1" false-value="0"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="鏌ヨ鏂瑰紡" min-width="10%">
@@ -69,7 +69,7 @@
</el-table-column>
<el-table-column label="蹇呭~" min-width="5%">
<template #default="scope">
- <el-checkbox true-label="1" false-label="0" v-model="scope.row.isRequired"></el-checkbox>
+ <el-checkbox v-model="scope.row.isRequired" true-value="1" false-value="0"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="鏄剧ず绫诲瀷" min-width="12%">
@@ -104,7 +104,7 @@
</el-tab-pane>
</el-tabs>
<el-form label-width="100px">
- <div style="text-align: center;margin-left:-100px;margin-top:10px;">
+ <div style="text-align: center; margin-left: -100px; margin-top: 10px">
<el-button type="primary" @click="submitForm()">鎻愪氦</el-button>
<el-button @click="close()">杩斿洖</el-button>
</div>
@@ -118,7 +118,8 @@
import { optionselect as getDictOptionselect } from '@/api/system/dict/type';
import { DictTypeVO } from '@/api/system/dict/type/types';
import BasicInfoForm from './basicInfoForm.vue';
-import GenInfoForm from "./genInfoForm.vue";
+import GenInfoForm from './genInfoForm.vue';
+import { RouteLocationNormalized } from 'vue-router';
const route = useRoute();
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
@@ -135,11 +136,11 @@
/** 鎻愪氦鎸夐挳 */
const submitForm = () => {
- const basicForm = basicInfo.value.$refs.basicInfoForm;
- const genForm = genInfo.value.$refs.genInfoForm;
+ const basicForm = basicInfo.value?.$refs.basicInfoForm;
+ const genForm = genInfo.value?.$refs.genInfoForm;
- Promise.all([basicForm, genForm].map(getFormPromise)).then(async res => {
- const validateResult = res.every(item => !!item);
+ Promise.all([basicForm, genForm].map(getFormPromise)).then(async (res) => {
+ const validateResult = res.every((item) => !!item);
if (validateResult) {
const genTable: any = Object.assign({}, info.value);
genTable.columns = columns.value;
@@ -155,24 +156,34 @@
close();
}
} else {
- proxy?.$modal.msgError("琛ㄥ崟鏍¢獙鏈�氳繃锛岃閲嶆柊妫�鏌ユ彁浜ゅ唴瀹�");
+ proxy?.$modal.msgError('琛ㄥ崟鏍¢獙鏈�氳繃锛岃閲嶆柊妫�鏌ユ彁浜ゅ唴瀹�');
}
});
-}
+};
const getFormPromise = (form: any) => {
- return new Promise(resolve => {
+ return new Promise((resolve) => {
form.validate((res: any) => {
resolve(res);
});
});
-}
+};
const close = () => {
- const obj = {path: "/tool/gen", query: {t: Date.now(), pageNum: route.query.pageNum}};
+ const obj: RouteLocationNormalized = {
+ path: '/tool/gen',
+ fullPath: '',
+ hash: '',
+ matched: [],
+ meta: undefined,
+ name: undefined,
+ params: undefined,
+ redirectedFrom: undefined,
+ query: { t: Date.now().toString(), pageNum: route.query.pageNum }
+ };
proxy?.$tab.closeOpenPage(obj);
-}
+};
(async () => {
- const tableId = route.params && route.params.tableId as string;
+ const tableId = route.params && (route.params.tableId as string);
if (tableId) {
// 鑾峰彇琛ㄨ缁嗕俊鎭�
const res = await getGenTable(tableId);
--
Gitblit v1.9.3