|
@@ -0,0 +1,263 @@
|
|
|
+<script lang="ts">
|
|
|
+// 声明额外的选项
|
|
|
+export default {
|
|
|
+ name: "Add"
|
|
|
+};
|
|
|
+</script>
|
|
|
+<script setup lang="ts">
|
|
|
+import { inject, onMounted, reactive, ref, Uploadfile, UploadImg, Editor, useRenderIcon, ElMessage, ElMessageBox, Upload, Close, http, getGroupUrl, RegularVerification, verification } from "@/utils/importUsed"
|
|
|
+// 接口列表实例
|
|
|
+let UrlList = reactive(null)
|
|
|
+// 获取当前板块接口列表
|
|
|
+onMounted(async () => {
|
|
|
+ UrlList = await getGroupUrl(["prizeSet"]);
|
|
|
+ loopSetIdQuery();
|
|
|
+
|
|
|
+})
|
|
|
+// 组件传参对象
|
|
|
+const props = defineProps<{
|
|
|
+ submit: Function;
|
|
|
+ addVisible: {
|
|
|
+ type: Boolean;
|
|
|
+ default: false;
|
|
|
+ };
|
|
|
+ width: {
|
|
|
+ type: Number;
|
|
|
+ default: 50;
|
|
|
+ };
|
|
|
+ loopSetId: {
|
|
|
+ type: Number;
|
|
|
+ default: 0;
|
|
|
+ },
|
|
|
+
|
|
|
+}>();
|
|
|
+// 表单数据
|
|
|
+let UpdateForm = ref({
|
|
|
+ loopSetId: props.loopSetId, //递归配置ID
|
|
|
+ returnFieldId: null, //条件返回字段
|
|
|
+ fieldQueryKind: "", //匹配条件
|
|
|
+ fieldQueryModel: "", //匹配方式
|
|
|
+ fieldQueryValue: "", //匹配值
|
|
|
+ fieldQueryValueType: "", //匹配值类型
|
|
|
+ prizePercent: "", //奖励比例
|
|
|
+ prizeAmount: "", //奖励固定金额
|
|
|
+
|
|
|
+
|
|
|
+});
|
|
|
+// 表单实例
|
|
|
+const ruleFormRef = ref()
|
|
|
+
|
|
|
+// 传参选项数据
|
|
|
+// 递归配置ID选项数据
|
|
|
+const loopSetIdOptionList = ref([]);
|
|
|
+// 匹配条件选项数据
|
|
|
+const fieldQueryKindOptionList = [
|
|
|
+ { id: '1', label: '模糊匹配' },
|
|
|
+ { id: '2', label: '精确匹配' },
|
|
|
+ { id: '3', label: '范围匹配' },
|
|
|
+]
|
|
|
+// 匹配方式选项数据
|
|
|
+const fieldQueryModelOptionList = [
|
|
|
+ { id: 'request_param', label: '入参' },
|
|
|
+ { id: 'fixed_value', label: '固定值' },
|
|
|
+]
|
|
|
+// 匹配值类型选项数据
|
|
|
+const fieldQueryValueTypeOptionList = [
|
|
|
+ { id: 'text', label: '文本' },
|
|
|
+ { id: 'number', label: '数字' },
|
|
|
+ { id: 'range', 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 { status, msg }: any = await http.Request({
|
|
|
+ method: UrlList.prizeSet.priaddPriRecursionStartCondition.method,
|
|
|
+ url: UrlList.prizeSet.priaddPriRecursionStartCondition.url,
|
|
|
+ params: UpdateForm.value
|
|
|
+ });
|
|
|
+ if (status === 1) {
|
|
|
+ //业务成功回调
|
|
|
+ ElMessage({
|
|
|
+ message: "新增成功",
|
|
|
+ type: "success"
|
|
|
+ });
|
|
|
+ UpdateForm.value = {
|
|
|
+ loopSetId: props.loopSetId, //递归配置ID
|
|
|
+ returnFieldId: null, //条件返回字段
|
|
|
+ fieldQueryKind: "", //匹配条件
|
|
|
+ fieldQueryModel: "", //匹配方式
|
|
|
+ fieldQueryValue: "", //匹配值
|
|
|
+ fieldQueryValueType: "", //匹配值类型
|
|
|
+ prizePercent: "", //奖励比例
|
|
|
+ prizeAmount: "", //奖励固定金额
|
|
|
+
|
|
|
+ };
|
|
|
+ // 关闭新增弹窗;
|
|
|
+ closeVisible()
|
|
|
+ } else {
|
|
|
+ //业务失败回调
|
|
|
+ ElMessageBox.alert(msg, "提示", {
|
|
|
+ confirmButtonText: "关闭",
|
|
|
+ type: "warning"
|
|
|
+ });
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ //表单校验失败回调
|
|
|
+ ElMessage({
|
|
|
+ message: "请输入完整信息",
|
|
|
+ type: "error"
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+};
|
|
|
+
|
|
|
+//获取递归配置ID数据
|
|
|
+const loopSetIdQuery = async () => {
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriLoopSetDic.method, url: UrlList.prizeSet.prigetPriLoopSetDic.url, params: {} });
|
|
|
+ if (status === 1) {
|
|
|
+ loopSetIdOptionList.value = data.records;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+// 表单校验规则
|
|
|
+const rules = reactive({
|
|
|
+ prizePercent: [
|
|
|
+ { required: true, message: '请输入奖励比例', trigger: 'blur' },
|
|
|
+ ],
|
|
|
+
|
|
|
+})
|
|
|
+// 关闭弹窗回调函数
|
|
|
+const closeFn: any = inject("closeAddVisible");
|
|
|
+const closeVisible = () => {
|
|
|
+ // 清空表单项;
|
|
|
+ UpdateForm.value = {
|
|
|
+ loopSetId: props.loopSetId, //递归配置ID
|
|
|
+ returnFieldId: null, //条件返回字段
|
|
|
+ fieldQueryKind: "", //匹配条件
|
|
|
+ fieldQueryModel: "", //匹配方式
|
|
|
+ fieldQueryValue: "", //匹配值
|
|
|
+ fieldQueryValueType: "", //匹配值类型
|
|
|
+ prizePercent: "", //奖励比例
|
|
|
+ prizeAmount: "", //奖励固定金额
|
|
|
+
|
|
|
+ };
|
|
|
+ closeFn();
|
|
|
+};
|
|
|
+
|
|
|
+// 弹窗是否全屏
|
|
|
+const isFullscreen = ref(false)
|
|
|
+</script>
|
|
|
+
|
|
|
+<template lang="pug">
|
|
|
+.main
|
|
|
+ el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible")
|
|
|
+ el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
|
+ el-form-item(label="递归配置ID", prop="loopSetId")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.loopSetId",
|
|
|
+ placeholder="请选择递归配置ID",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.tableEnName", :value="item.id" v-for="(item,index) in loopSetIdOptionList")
|
|
|
+ el-form-item(label='条件返回字段' prop="returnFieldId")
|
|
|
+ el-input(v-model='UpdateForm.returnFieldId' autocomplete='off'
|
|
|
+ placeholder="请输入条件返回字段")
|
|
|
+ el-form-item(label="匹配条件", prop="fieldQueryKind")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.fieldQueryKind",
|
|
|
+ placeholder="请选择匹配条件",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryKindOptionList")
|
|
|
+ el-form-item(label="匹配方式", prop="fieldQueryModel")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.fieldQueryModel",
|
|
|
+ placeholder="请选择匹配方式",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryModelOptionList")
|
|
|
+ el-form-item(label='匹配值' prop="fieldQueryValue")
|
|
|
+ el-input(v-model='UpdateForm.fieldQueryValue' autocomplete='off'
|
|
|
+ placeholder="请输入匹配值")
|
|
|
+ el-form-item(label="匹配值类型", prop="fieldQueryValueType")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.fieldQueryValueType",
|
|
|
+ placeholder="请选择匹配值类型",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
|
|
|
+ el-form-item(label='奖励比例' prop="prizePercent")
|
|
|
+ el-input-number(v-model='UpdateForm.prizePercent' :min="0" :max="100000"
|
|
|
+ placeholder="请输入奖励比例")
|
|
|
+ el-form-item(label='奖励固定金额' prop="prizeAmount")
|
|
|
+ el-input-number(v-model='UpdateForm.prizeAmount' :min="0" :max="100000"
|
|
|
+ placeholder="请输入奖励固定金额")
|
|
|
+
|
|
|
+ .flex.justify-end
|
|
|
+ el-button(
|
|
|
+ :icon="useRenderIcon(Close)",
|
|
|
+ @click="closeVisible"
|
|
|
+ ) 关闭
|
|
|
+ el-button(
|
|
|
+ type="primary",
|
|
|
+ :icon="useRenderIcon(Upload)",
|
|
|
+ @click="submit(ruleFormRef)"
|
|
|
+ ) 确认提交
|
|
|
+</template>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+:deep(.el-dropdown-menu__item i) {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.el-form-item__label) {
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.el-pagination) {
|
|
|
+ flex-flow: wrap;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.is-draggable) {
|
|
|
+ max-height: 80vh;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.el-dialog__header) {
|
|
|
+ position: sticky;
|
|
|
+ top: 0;
|
|
|
+ z-index: 2;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.collapsedom {
|
|
|
+ padding: 0 20px;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.ovh-x {
|
|
|
+ height: 40vh;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.el-descriptions__header) {
|
|
|
+ margin: 16px 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.el-select {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+</style>
|