lcl 4 月之前
父节点
当前提交
565952a645

+ 15 - 0
src/views/pri/priPrizeInField/components/add/index.vue

@@ -38,6 +38,7 @@ let UpdateForm = ref({
   fieldQueryValue: "", //匹配值
   fieldQueryValueType: "", //匹配值类型
   inTableId: props.inTableId, //入库表
+  fieldInModel: "", //入库方式
 
 
 });
@@ -65,6 +66,11 @@ const fieldQueryValueTypeOptionList = [
   { id: 'date', label: '日期' },
   { id: 'datetime', label: '时间' },
 ]
+// 入库方式选项数据
+const fieldInModelOptionList = [
+  { id: 'normal', label: '常规' },
+  { id: 'add', label: '累加' },
+]
 
 // 选项卡参数(默认值为列表某项的id)
 const activeId = ref('1')
@@ -97,6 +103,7 @@ const submit = async (formEl) => {
           fieldQueryValue: "", //匹配值
           fieldQueryValueType: "", //匹配值类型
           inTableId: props.inTableId, //入库表
+          fieldInModel: "", //入库方式
 
         };
         // 关闭新增弹窗;
@@ -136,6 +143,7 @@ const closeVisible = () => {
     fieldQueryValue: "", //匹配值
     fieldQueryValueType: "", //匹配值类型
     inTableId: props.inTableId, //入库表
+    fieldInModel: "", //入库方式
 
   };
   closeFn();
@@ -172,6 +180,13 @@ const isFullscreen = ref(false)
           clearable,
         )
           el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
+      el-form-item(label="入库方式", prop="fieldInModel")
+        el-select(
+          v-model="UpdateForm.fieldInModel",
+          placeholder="请选择入库方式",
+          clearable,
+        )
+          el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldInModelOptionList")
       el-form-item(label='入库表' prop="inTableId")
         el-input-number(v-model='UpdateForm.inTableId' :min="1" :max="1000"
           placeholder="请输入入库表")

+ 15 - 0
src/views/pri/priPrizeInField/components/updatePriPrizeInField/index.vue

@@ -37,6 +37,7 @@ const UpdateForm: any = ref({
   fieldQueryValue: "", //匹配值
   fieldQueryValueType: "", //匹配值类型
   inTableId: null, //入库表
+  fieldInModel: "", //入库方式
 
 });
 // 匹配方式选项数据
@@ -59,6 +60,11 @@ const fieldQueryValueTypeOptionList = [
   { id: 'date', label: '日期' },
   { id: 'datetime', label: '时间' },
 ]
+// 入库方式选项数据
+const fieldInModelOptionList = [
+  { id: 'normal', label: '常规' },
+  { id: 'add', label: '累加' },
+]
 
 // 表单实例
 const ruleFormRef = ref()
@@ -94,6 +100,7 @@ const submit = async (formEl) => {
           fieldQueryValue: "", //匹配值
           fieldQueryValueType: "", //匹配值类型
           inTableId: null, //入库表
+          fieldInModel: "", //入库方式
 
         };
         // 关闭修改弹窗;
@@ -142,6 +149,7 @@ const closeUpdatePriPrizeInFieldVisible = () => {
     fieldQueryValue: "", //匹配值
     fieldQueryValueType: "", //匹配值类型
     inTableId: null, //入库表
+    fieldInModel: "", //入库方式
 
   };
   closeFn();
@@ -181,6 +189,13 @@ const isFullscreen = ref(false)
           clearable,
         )
           el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
+      el-form-item(label="入库方式", prop="fieldInModel")
+        el-select(
+          v-model="UpdateForm.fieldInModel",
+          placeholder="请选择入库方式",
+          clearable,
+        )
+          el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldInModelOptionList")
       el-form-item(label='入库表' prop="inTableId")
         el-input-number(v-model='UpdateForm.inTableId' :min="1" :max="1000"
           placeholder="请输入入库表")

+ 1 - 0
src/views/pri/priPrizeInQueryField/components/add/index.vue

@@ -60,6 +60,7 @@ const fieldQueryModelOptionList = [
   { id: 'request_param', label: '入参' },
   { id: 'loop_field', label: '循环递归字段' },
   { id: 'query_field', label: '条件匹配返回字段' },
+  { id: 'querystart_list_field', label: '起始数据字段' },
   { id: 'fixed_value', label: '固定值' },
   { id: 'db_field', label: '库内字段' },
 ]

+ 1 - 0
src/views/pri/priPrizeInQueryField/components/updatePriPrizeInQueryField/index.vue

@@ -54,6 +54,7 @@ const fieldQueryModelOptionList = [
   { id: 'request_param', label: '入参' },
   { id: 'loop_field', label: '循环递归字段' },
   { id: 'query_field', label: '条件匹配返回字段' },
+  { id: 'querystart_list_field', label: '起始数据字段' },
   { id: 'fixed_value', label: '固定值' },
   { id: 'db_field', label: '库内字段' },
 ]

+ 1 - 0
src/views/pri/priPrizeInTable/components/add/index.vue

@@ -48,6 +48,7 @@ const ruleFormRef = ref()
 const excuteKindOptionList = [
   { id: 'add', label: '添加' },
   { id: 'update', label: '修改' },
+  { id: 'update_or_add', label: '修改否则添加' },
 ]
 
 // 选项卡参数(默认值为列表某项的id)

+ 1 - 0
src/views/pri/priPrizeInTable/components/updatePriPrizeInTable/index.vue

@@ -41,6 +41,7 @@ const UpdateForm: any = ref({
 const excuteKindOptionList = [
   { id: 'add', label: '添加' },
   { id: 'update', label: '修改' },
+  { id: 'update_or_add', label: '修改否则添加' },
 ]
 
 // 表单实例

+ 11 - 10
src/views/pri/priPrizeInTable/hook.tsx

@@ -16,9 +16,9 @@ export function usePriPrizeInTable() {
 
   });
   let form = reactive({
-  listId:null, //奖励配置
-  tableEnName:"", //查询表
-  excuteKind:"", //执行方式
+    listId: null, //奖励配置
+    tableEnName: "", //查询表
+    excuteKind: "", //执行方式
 
 
   });
@@ -135,11 +135,12 @@ export function usePriPrizeInTable() {
   const excuteKindOptionList = [
     { id: 'add', label: '添加' },
     { id: 'update', label: '修改' },
+    { id: 'update_or_add', label: '修改否则添加' },
   ]
 
 
 
-    //跳转到奖励入库字段
+  //跳转到奖励入库字段
   function linkToPriPrizeInField(row) {
     router.push({ path: '../../pri/priPrizeInField/index', query: { inTableId: row.id } });
   }
@@ -148,7 +149,7 @@ export function usePriPrizeInTable() {
     router.push({ path: '../../pri/priPrizeInQueryField/index', query: { inTableId: row.id } });
   }
 
-    // 删除
+  // 删除
   function handleDelete(row) {
     ElMessageBox.confirm(
       `是否删除该奖励入库表? `,
@@ -168,20 +169,20 @@ export function usePriPrizeInTable() {
         onSearch(ruleFormRef.value);
       } else {
         ElMessageBox.alert(msg, "提示", {
-        confirmButtonText: "关闭",
-        type: "warning"
-      });
+          confirmButtonText: "关闭",
+          type: "warning"
+        });
       };
     })
   }
 
-    // 新增
+  // 新增
   const addVisible = ref(false);
   function handleAdd() {
     addVisible.value = true;
   };
 
-    // 修改
+  // 修改
   const editUpdatePriPrizeInTableVisible = ref(false);
   const editUpdatePriPrizeInTableFormData = ref({});
   function handleUpdatePriPrizeInTable(row) {