|
@@ -38,8 +38,7 @@ let UpdateForm = ref({
|
|
tableEnName: "", //查询表
|
|
tableEnName: "", //查询表
|
|
parentField: "", //父ID字段
|
|
parentField: "", //父ID字段
|
|
sonField: "", //子ID字段
|
|
sonField: "", //子ID字段
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ levelDiffFlag: "",//级差
|
|
});
|
|
});
|
|
// 表单实例
|
|
// 表单实例
|
|
const ruleFormRef = ref()
|
|
const ruleFormRef = ref()
|
|
@@ -82,6 +81,7 @@ const submit = async (formEl) => {
|
|
tableEnName: "", //查询表
|
|
tableEnName: "", //查询表
|
|
parentField: "", //父ID字段
|
|
parentField: "", //父ID字段
|
|
sonField: "", //子ID字段
|
|
sonField: "", //子ID字段
|
|
|
|
+ levelDiffFlag: "",//级差
|
|
|
|
|
|
};
|
|
};
|
|
// 关闭新增弹窗;
|
|
// 关闭新增弹窗;
|
|
@@ -100,40 +100,100 @@ const submit = async (formEl) => {
|
|
type: "error"
|
|
type: "error"
|
|
});
|
|
});
|
|
}
|
|
}
|
|
- })
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-//获取配置ID数据
|
|
|
|
-const listIdQuery = async () => {
|
|
|
|
- const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: {} });
|
|
|
|
- if (status === 1) {
|
|
|
|
- listIdOptionList.value = data.records;
|
|
|
|
}
|
|
}
|
|
-};
|
|
|
|
|
|
+ // 配置ID选项数据
|
|
|
|
+const listIdOptionList = ref([]);
|
|
|
|
+ // 执行模式选项数据
|
|
|
|
+ const loopModelOptionList = [
|
|
|
|
+ { id: 'field', label: '父子关联字段' },
|
|
|
|
+ ]
|
|
|
|
|
|
|
|
+ // 选项卡参数(默认值为列表某项的id)
|
|
|
|
+ const activeId = ref('1')
|
|
|
|
+ // 提交函数
|
|
|
|
+ const submit = async (formEl) => {
|
|
|
|
+ // 表单校验拦截
|
|
|
|
+ if (!formEl) return
|
|
|
|
+ await formEl.validate(async (valid, fields) => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ //表单校验成功回调
|
|
|
|
+ console.log('submit!')
|
|
|
|
|
|
|
|
|
|
-// 表单校验规则
|
|
|
|
-const rules = reactive({
|
|
|
|
|
|
+ // 需动态生成接口
|
|
|
|
+ const { status, msg }: any = await http.Request({
|
|
|
|
+ method: UrlList.prizeSet.priaddPriLoopSet.method,
|
|
|
|
+ url: UrlList.prizeSet.priaddPriLoopSet.url,
|
|
|
|
+ params: UpdateForm.value
|
|
|
|
+ });
|
|
|
|
+ if (status === 1) {
|
|
|
|
+ //业务成功回调
|
|
|
|
+ ElMessage({
|
|
|
|
+ message: "新增成功",
|
|
|
|
+ type: "success"
|
|
|
|
+ });
|
|
|
|
+ UpdateForm.value = {
|
|
|
|
+ listId: props.listId, //配置ID
|
|
|
|
+ loopModel: "", //执行模式
|
|
|
|
+ parentField: "", //父ID字段
|
|
|
|
+ sonField: "", //子ID字段
|
|
|
|
+ tableEnName: "", //查询表
|
|
|
|
+ levelDiffFlag: "", //级差
|
|
|
|
|
|
-})
|
|
|
|
-// 关闭弹窗回调函数
|
|
|
|
-const closeFn: any = inject("closeAddVisible");
|
|
|
|
-const closeVisible = () => {
|
|
|
|
- // 清空表单项;
|
|
|
|
- UpdateForm.value = {
|
|
|
|
- listId: props.listId, //配置ID
|
|
|
|
- loopModel: "", //执行模式
|
|
|
|
- tableEnName: "", //查询表
|
|
|
|
- parentField: "", //父ID字段
|
|
|
|
- sonField: "", //子ID字段
|
|
|
|
|
|
+ };
|
|
|
|
+ // 关闭新增弹窗;
|
|
|
|
+ closeVisible()
|
|
|
|
+ } else {
|
|
|
|
+ //业务失败回调
|
|
|
|
+ ElMessageBox.alert(msg, "提示", {
|
|
|
|
+ confirmButtonText: "关闭",
|
|
|
|
+ type: "warning"
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ //表单校验失败回调
|
|
|
|
+ ElMessage({
|
|
|
|
+ message: "请输入完整信息",
|
|
|
|
+ type: "error"
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ };
|
|
|
|
|
|
|
|
+ //获取配置ID数据
|
|
|
|
+ const listIdQuery = async () => {
|
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: {} });
|
|
|
|
+ if (status === 1) {
|
|
|
|
+ listIdOptionList.value = data.records;
|
|
|
|
+ }
|
|
};
|
|
};
|
|
- closeFn();
|
|
|
|
-};
|
|
|
|
|
|
|
|
-// 弹窗是否全屏
|
|
|
|
-const isFullscreen = ref(false)
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ // 表单校验规则
|
|
|
|
+ const rules = reactive({
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+ // 关闭弹窗回调函数
|
|
|
|
+ const closeFn: any = inject("closeAddVisible");
|
|
|
|
+ const closeVisible = () => {
|
|
|
|
+ // 清空表单项;
|
|
|
|
+ UpdateForm.value = {
|
|
|
|
+ listId: props.listId, //配置ID
|
|
|
|
+ loopModel: "", //执行模式
|
|
|
|
+ tableEnName: "", //查询表
|
|
|
|
+ parentField: "", //父ID字段
|
|
|
|
+ sonField: "", //子ID字段
|
|
|
|
+ levelDiffFlag: "",//级差
|
|
|
|
+
|
|
|
|
+ };
|
|
|
|
+ closeFn();
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ // 弹窗是否全屏
|
|
|
|
+ const isFullscreen = ref(false)
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template lang="pug">
|
|
<template lang="pug">
|
|
@@ -160,6 +220,9 @@ const isFullscreen = ref(false)
|
|
el-form-item(label='父ID字段' prop="parentField")
|
|
el-form-item(label='父ID字段' prop="parentField")
|
|
el-input(v-model='UpdateForm.parentField' autocomplete='off'
|
|
el-input(v-model='UpdateForm.parentField' autocomplete='off'
|
|
placeholder="请输入父ID字段")
|
|
placeholder="请输入父ID字段")
|
|
|
|
+
|
|
|
|
+ el-form-item(label='级差' prop="levelDiffFlag")
|
|
|
|
+ el-switch(v-model="UpdateForm.levelDiffFlag")
|
|
el-form-item(label='子ID字段' prop="sonField")
|
|
el-form-item(label='子ID字段' prop="sonField")
|
|
el-input(v-model='UpdateForm.sonField' autocomplete='off'
|
|
el-input(v-model='UpdateForm.sonField' autocomplete='off'
|
|
placeholder="请输入子ID字段")
|
|
placeholder="请输入子ID字段")
|