|
@@ -11,6 +11,7 @@ let UrlList = reactive(null)
|
|
|
// 获取当前板块接口列表
|
|
|
onMounted(async () => {
|
|
|
UrlList = await getGroupUrl(["prizeSet"]);
|
|
|
+ databaseIdQuery();
|
|
|
|
|
|
})
|
|
|
const props = defineProps<{
|
|
@@ -38,6 +39,7 @@ const UpdateForm: any = ref({
|
|
|
levelDiffFlag: "", //级差
|
|
|
afterPrizeFlag: "", //发奖后是否继续
|
|
|
conditionMode: "", //条件模式
|
|
|
+ databaseId: null, //查询数据库
|
|
|
|
|
|
});
|
|
|
// 执行模式选项数据
|
|
@@ -87,6 +89,7 @@ const submit = async (formEl) => {
|
|
|
levelDiffFlag: "", //级差
|
|
|
afterPrizeFlag: "", //发奖后是否继续
|
|
|
conditionMode: "", //条件模式
|
|
|
+ databaseId: null, //查询数据库
|
|
|
|
|
|
};
|
|
|
// 关闭修改弹窗;
|
|
@@ -109,6 +112,15 @@ const submit = async (formEl) => {
|
|
|
};
|
|
|
|
|
|
|
|
|
+//获取查询库数据
|
|
|
+const databaseIdOptionList = ref([]);
|
|
|
+const databaseIdQuery = async () => {
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriDatabaseSetDic.method, url: UrlList.prizeSet.prigetPriDatabaseSetDic.url, params: {} });
|
|
|
+ if (status === 1) {
|
|
|
+ databaseIdOptionList.value = data.records;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
|
|
|
|
|
|
// 表单校验规则
|
|
@@ -154,6 +166,7 @@ const closeUpdatePriLoopSetVisible = () => {
|
|
|
levelDiffFlag: "", //级差
|
|
|
afterPrizeFlag: "", //发奖后是否继续
|
|
|
conditionMode: "", //条件模式
|
|
|
+ databaseId: null, //查询数据库
|
|
|
|
|
|
};
|
|
|
closeFn();
|
|
@@ -177,6 +190,13 @@ const isFullscreen = ref(false)
|
|
|
clearable,
|
|
|
)
|
|
|
el-option(:label="item.label", :value="item.id" v-for="(item,index) in loopModelOptionList")
|
|
|
+ el-form-item(label="数据库", prop="databaseId")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.databaseId",
|
|
|
+ placeholder="请选择数据库",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.title", :value="item.id" v-for="(item,index) in databaseIdOptionList")
|
|
|
el-form-item(label='父ID字段' prop="parentField")
|
|
|
el-input(v-model='UpdateForm.parentField' autocomplete='off'
|
|
|
placeholder="请输入父ID字段")
|