|
@@ -11,6 +11,7 @@ let UrlList = reactive(null)
|
|
// 获取当前板块接口列表
|
|
// 获取当前板块接口列表
|
|
onMounted(async () => {
|
|
onMounted(async () => {
|
|
UrlList = await getGroupUrl(["prizeSet"]);
|
|
UrlList = await getGroupUrl(["prizeSet"]);
|
|
|
|
+ objectTableIdQuery();
|
|
|
|
|
|
})
|
|
})
|
|
const props = defineProps<{
|
|
const props = defineProps<{
|
|
@@ -42,9 +43,9 @@ const UpdateForm: any = ref({
|
|
});
|
|
});
|
|
// 匹配条件选项数据
|
|
// 匹配条件选项数据
|
|
const fieldQueryKindOptionList = [
|
|
const fieldQueryKindOptionList = [
|
|
- { id: 1, label: '模糊匹配' },
|
|
|
|
- { id: 2, label: '精确匹配' },
|
|
|
|
- { id: 3, label: '范围匹配' },
|
|
|
|
|
|
+ { id: '1', label: '模糊匹配' },
|
|
|
|
+ { id: '2', label: '精确匹配' },
|
|
|
|
+ { id: '3', label: '范围匹配' },
|
|
]
|
|
]
|
|
// 匹配方式选项数据
|
|
// 匹配方式选项数据
|
|
const fieldQueryModelOptionList = [
|
|
const fieldQueryModelOptionList = [
|
|
@@ -56,8 +57,11 @@ const fieldQueryModelOptionList = [
|
|
const fieldQueryValueTypeOptionList = [
|
|
const fieldQueryValueTypeOptionList = [
|
|
{ id: 'text', label: '文本' },
|
|
{ id: 'text', label: '文本' },
|
|
{ id: 'number', label: '数字' },
|
|
{ id: 'number', label: '数字' },
|
|
- { id: 'range', label: '范围' },
|
|
|
|
|
|
+ { id: 'date', label: '日期' },
|
|
|
|
+ { id: 'datetime', label: '时间' },
|
|
]
|
|
]
|
|
|
|
+// 对象表选项数据
|
|
|
|
+const objectTableIdOptionList = ref([]);
|
|
|
|
|
|
// 表单实例
|
|
// 表单实例
|
|
const ruleFormRef = ref()
|
|
const ruleFormRef = ref()
|
|
@@ -86,14 +90,14 @@ const submit = async (formEl) => {
|
|
type: "success"
|
|
type: "success"
|
|
});
|
|
});
|
|
UpdateForm.value = {
|
|
UpdateForm.value = {
|
|
- id: null, //ID
|
|
|
|
- fieldName: "", //字段名称
|
|
|
|
- fieldEnName: "", //字段名
|
|
|
|
- fieldQueryKind: "", //匹配条件
|
|
|
|
- fieldQueryModel: "", //匹配方式
|
|
|
|
- fieldQueryValue: "", //匹配值
|
|
|
|
- fieldQueryValueType: "", //匹配值类型
|
|
|
|
- objectTableId: null, //对象表
|
|
|
|
|
|
+ id: null, //ID
|
|
|
|
+ fieldName: "", //字段名称
|
|
|
|
+ fieldEnName: "", //字段名
|
|
|
|
+ fieldQueryKind: "", //匹配条件
|
|
|
|
+ fieldQueryModel: "", //匹配方式
|
|
|
|
+ fieldQueryValue: "", //匹配值
|
|
|
|
+ fieldQueryValueType: "", //匹配值类型
|
|
|
|
+ objectTableId: null, //对象表
|
|
|
|
|
|
};
|
|
};
|
|
// 关闭修改弹窗;
|
|
// 关闭修改弹窗;
|
|
@@ -115,6 +119,13 @@ const submit = async (formEl) => {
|
|
})
|
|
})
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+//获取对象表数据
|
|
|
|
+const objectTableIdQuery = async () => {
|
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriRecursionStartTableDic.method, url: UrlList.prizeSet.prigetPriRecursionStartTableDic.url, params: {} });
|
|
|
|
+ if (status === 1) {
|
|
|
|
+ objectTableIdOptionList.value = data.records;
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -126,7 +137,7 @@ const rules = reactive({
|
|
const closeFn: any = inject('closeEditUpdatePriRecursionStartFieldVisible');
|
|
const closeFn: any = inject('closeEditUpdatePriRecursionStartFieldVisible');
|
|
const openVisible = async () => {
|
|
const openVisible = async () => {
|
|
//通过ID获取表格数据
|
|
//通过ID获取表格数据
|
|
- const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriRecursionStartFieldQuery.method, url: UrlList.prizeSet.prigetPriRecursionStartFieldQuery.url, params: { id: props.formData.id }});
|
|
|
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriRecursionStartFieldQuery.method, url: UrlList.prizeSet.prigetPriRecursionStartFieldQuery.url, params: { id: props.formData.id } });
|
|
if (status === 1) {
|
|
if (status === 1) {
|
|
UpdateForm.value = data;
|
|
UpdateForm.value = data;
|
|
|
|
|
|
@@ -157,7 +168,7 @@ const isFullscreen = ref(false)
|
|
el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriRecursionStartFieldVisible" @open="openVisible")
|
|
el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriRecursionStartFieldVisible" @open="openVisible")
|
|
el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
el-form-item(label='ID' prop="id")
|
|
el-form-item(label='ID' prop="id")
|
|
- el-input-number(v-model='UpdateForm.id' :min="1" :max="1000"
|
|
|
|
|
|
+ el-input-number(v-model='UpdateForm.id' :min="0" :max="100000"
|
|
placeholder="请输入ID")
|
|
placeholder="请输入ID")
|
|
el-form-item(label='字段名称' prop="fieldName")
|
|
el-form-item(label='字段名称' prop="fieldName")
|
|
el-input(v-model='UpdateForm.fieldName' autocomplete='off'
|
|
el-input(v-model='UpdateForm.fieldName' autocomplete='off'
|
|
@@ -189,9 +200,13 @@ const isFullscreen = ref(false)
|
|
clearable,
|
|
clearable,
|
|
)
|
|
)
|
|
el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
|
|
el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
|
|
- el-form-item(label='对象表' prop="objectTableId")
|
|
|
|
- el-input-number(v-model='UpdateForm.objectTableId' :min="1" :max="1000"
|
|
|
|
- placeholder="请输入对象表")
|
|
|
|
|
|
+ el-form-item(label="对象表", prop="objectTableId")
|
|
|
|
+ el-select(
|
|
|
|
+ v-model="UpdateForm.objectTableId",
|
|
|
|
+ placeholder="请选择对象表",
|
|
|
|
+ clearable,
|
|
|
|
+ )
|
|
|
|
+ el-option(:label="item.tableEnName", :value="item.id" v-for="(item,index) in objectTableIdOptionList")
|
|
|
|
|
|
.flex.justify-end
|
|
.flex.justify-end
|
|
el-button(
|
|
el-button(
|