Browse Source

奖励入口配置和奖励发放人设置分开

lcl 6 months ago
parent
commit
fe1c3d693e

+ 21 - 0
src/views/pri/priList/components/add/index.vue

@@ -12,6 +12,7 @@ let UrlList = reactive(null)
 onMounted(async () => {
   UrlList = await getGroupUrl(["prizeSet"]);
   projectIdQuery();
+  prizeObjQuery();
 
 })
 // 组件传参对象
@@ -44,6 +45,7 @@ let UpdateForm = ref({
   requestParamField: "", //入参字段
   prizeSourceField: "", //奖励金额来源数据
   prizeSourceFieldType: "", //奖励金额来源数据类型
+  prizeObj: null, //奖励发放对象
 
 
 });
@@ -53,6 +55,8 @@ const ruleFormRef = ref()
 // 传参选项数据
 // 项目选项数据
 const projectIdOptionList = ref([]);
+const prizeObjOptionList = ref([]);
+
 // 条件模式选项数据
 const conditionModeOptionList = [
   { id: 'all', label: '全部满足' },
@@ -115,6 +119,7 @@ const submit = async (formEl) => {
           requestParamField: "", //入参字段
           prizeSourceField: "", //奖励金额来源数据
           prizeSourceFieldType: "", //奖励金额来源数据类型
+          prizeObj: null, //奖励发放对象
 
         };
         // 关闭新增弹窗;
@@ -143,6 +148,14 @@ const projectIdQuery = async () => {
     projectIdOptionList.value = data.records;
   }
 };
+//获取奖励发放对象
+const prizeObjQuery = async () => {
+  console.log(1);
+  const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriPrizeObjectTableDic.method, url: UrlList.prizeSet.prigetPriPrizeObjectTableDic.url, params: {} });
+  if (status === 1) {
+    prizeObjOptionList.value = data.records;
+  }
+};
 
 
 
@@ -178,6 +191,7 @@ const closeVisible = () => {
     requestParamField: "", //入参字段
     prizeSourceField: "", //奖励金额来源数据
     prizeSourceFieldType: "", //奖励金额来源数据类型
+    prizeObj: null, //奖励发放对象
 
   };
   closeFn();
@@ -243,6 +257,13 @@ const isFullscreen = ref(false)
           clearable,
         )
           el-option(:label="item.label", :value="item.id" v-for="(item,index) in prizeSourceFieldTypeOptionList")
+      el-form-item(label="发放对象", prop="prizeObj")
+        el-select(
+          v-model="UpdateForm.prizeObj",
+          placeholder="请选择发放对象",
+          clearable,
+        )
+          el-option(:label="item.tableEnName + item.note", :value="item.id" v-for="(item,index) in prizeObjOptionList")
 
     .flex.justify-end
       el-button(

+ 20 - 1
src/views/pri/priList/components/updatePriList/index.vue

@@ -11,6 +11,7 @@ let UrlList = reactive(null)
 // 获取当前板块接口列表
 onMounted(async () => {
   UrlList = await getGroupUrl(["prizeSet"]);
+  prizeObjQuery();
 
 })
 const props = defineProps<{
@@ -41,8 +42,10 @@ const UpdateForm: any = ref({
   requestParamField: "", //入参字段
   prizeSourceField: "", //奖励金额来源数据
   prizeSourceFieldType: "", //奖励金额来源数据类型
+  prizeObj: null, //奖励发放对象
 
 });
+const prizeObjOptionList = ref([]);
 // 条件模式选项数据
 const conditionModeOptionList = [
   { id: 'all', label: '全部满足' },
@@ -107,6 +110,7 @@ const submit = async (formEl) => {
           requestParamField: "", //入参字段
           prizeSourceField: "", //奖励金额来源数据
           prizeSourceFieldType: "", //奖励金额来源数据类型
+          prizeObj: null, //奖励发放对象
 
         };
         // 关闭修改弹窗;
@@ -128,7 +132,14 @@ const submit = async (formEl) => {
   })
 };
 
-
+//获取奖励发放对象
+const prizeObjQuery = async () => {
+  console.log(1);
+  const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriPrizeObjectTableDic.method, url: UrlList.prizeSet.prigetPriPrizeObjectTableDic.url, params: {} });
+  if (status === 1) {
+    prizeObjOptionList.value = data.records;
+  }
+};
 
 
 // 表单校验规则
@@ -171,6 +182,7 @@ const closeUpdatePriListVisible = () => {
     requestParamField: "", //入参字段
     prizeSourceField: "", //奖励金额来源数据
     prizeSourceFieldType: "", //奖励金额来源数据类型
+    prizeObj: null, //奖励发放对象
 
   };
   closeFn();
@@ -232,6 +244,13 @@ const isFullscreen = ref(false)
           clearable,
         )
           el-option(:label="item.label", :value="item.id" v-for="(item,index) in prizeSourceFieldTypeOptionList")
+      el-form-item(label="发放对象", prop="prizeObj")
+        el-select(
+          v-model="UpdateForm.prizeObj",
+          placeholder="请选择发放对象",
+          clearable,
+        )
+          el-option(:label="item.tableEnName + item.note", :value="item.id" v-for="(item,index) in prizeObjOptionList")
 
     .flex.justify-end
       el-button(

+ 184 - 0
src/views/pri/priPrizeInSet/components/add/index.vue

@@ -0,0 +1,184 @@
+<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"]);
+
+})
+// 组件传参对象
+const props = defineProps<{
+  submit: Function;
+  addVisible: {
+    type: Boolean;
+    default: false;
+  };
+  width: {
+    type: Number;
+    default: 50;
+  };
+  projectId: {
+    type: Number;
+    default: 0;
+  },
+
+}>();
+// 表单数据
+let UpdateForm = ref({
+  prizeListIds: "", //指定奖励配置
+  note: "", //备注
+
+  projectId: props.projectId
+});
+// 表单实例
+const ruleFormRef = ref()
+
+// 传参选项数据
+
+// 选项卡参数(默认值为列表某项的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.priaddPriPrizeInSet.method,
+        url: UrlList.prizeSet.priaddPriPrizeInSet.url,
+        params: UpdateForm.value
+      });
+      if (status === 1) {
+        //业务成功回调
+        ElMessage({
+          message: "新增成功",
+          type: "success"
+        });
+        UpdateForm.value = {
+      prizeListIds: "", //指定奖励配置
+      note: "", //备注
+
+        };
+        // 关闭新增弹窗;
+        closeVisible()
+      } else {
+        //业务失败回调
+        ElMessageBox.alert(msg, "提示", {
+          confirmButtonText: "关闭",
+          type: "warning"
+        });
+      }
+    } else {
+      //表单校验失败回调
+      ElMessage({
+        message: "请输入完整信息",
+        type: "error"
+      });
+    }
+  })
+};
+
+
+
+
+// 表单校验规则
+const rules = reactive({
+  note: [
+    { required: true, message: '请输入备注', trigger: 'blur' },
+  ],
+
+})
+// 关闭弹窗回调函数
+const closeFn: any = inject("closeAddVisible");
+const closeVisible = () => {
+  // 清空表单项;
+  UpdateForm.value = {
+    prizeListIds: "", //指定奖励配置
+    note: "", //备注
+
+  };
+  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='指定奖励配置' prop="prizeListIds")
+        el-input(v-model='UpdateForm.prizeListIds' autocomplete='off'
+          placeholder="请输入指定奖励配置")
+      el-form-item(label='备注' prop="note")
+        el-input(v-model='UpdateForm.note' autocomplete='off'
+          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>

+ 194 - 0
src/views/pri/priPrizeInSet/components/updatePriPrizeInSet/index.vue

@@ -0,0 +1,194 @@
+<script lang="ts">
+// 声明额外的选项
+export default {
+  name: "Edit"
+};
+</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"]);
+
+})
+const props = defineProps<{
+  editVisible: {
+    type: Boolean;
+    default: false;
+  };
+  width: {
+    type: Number;
+    default: 50;
+  };
+  formData: {
+    id: any;
+    type: any;
+    default: {};
+  };
+}>();
+// 表单数据
+const UpdateForm: any = ref({
+  id: null, //ID
+  prizeListIds: "", //指定奖励配置
+  note: "", //备注
+
+});
+
+// 表单实例
+const ruleFormRef = ref()
+
+// 选项卡参数(默认值为列表某项的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.priupdatePriPrizeInSet.method,
+        url: UrlList.prizeSet.priupdatePriPrizeInSet.url,
+        params: UpdateForm.value
+      });
+      if (status === 1) {
+        //业务成功回调
+        ElMessage({
+          message: "修改成功",
+          type: "success"
+        });
+        UpdateForm.value = {
+      id: null, //ID
+      prizeListIds: "", //指定奖励配置
+      note: "", //备注
+
+        };
+        // 关闭修改弹窗;
+        closeUpdatePriPrizeInSetVisible();
+      } else {
+        //业务失败回调
+        ElMessageBox.alert(msg, "提示", {
+          confirmButtonText: "关闭",
+          type: "warning"
+        });
+      }
+    } else {
+      //表单校验失败回调
+      ElMessage({
+        message: "请输入完整信息",
+        type: "error"
+      });
+    }
+  })
+};
+
+
+
+
+// 表单校验规则
+const rules = reactive({
+  note: [
+    { required: true, message: '请输入备注', trigger: 'blur' },
+  ],
+
+})
+// 关闭弹窗回调函数
+const closeFn: any = inject('closeEditUpdatePriPrizeInSetVisible');
+const openVisible = async () => {
+  //通过ID获取表格数据
+  const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriPrizeInSetQuery.method, url: UrlList.prizeSet.prigetPriPrizeInSetQuery.url, params: { id: props.formData.id }});
+  if (status === 1) {
+    UpdateForm.value = data;
+
+  }
+};
+// 关闭弹窗回调函数
+const closeUpdatePriPrizeInSetVisible = () => {
+  UpdateForm.value = {
+    id: null, //ID
+    prizeListIds: "", //指定奖励配置
+    note: "", //备注
+
+  };
+  closeFn();
+};
+
+// 弹窗是否全屏
+const isFullscreen = ref(false)
+</script>
+
+<template lang="pug">
+.main
+  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriPrizeInSetVisible" @open="openVisible")
+    el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
+      el-form-item(label='ID' prop="id")
+        el-input-number(v-model='UpdateForm.id' :min="0" :max="100000"
+          placeholder="请输入ID")
+      el-form-item(label='指定奖励配置' prop="prizeListIds")
+        el-input(v-model='UpdateForm.prizeListIds' autocomplete='off'
+          placeholder="请输入指定奖励配置")
+      el-form-item(label='备注' prop="note")
+        el-input(v-model='UpdateForm.note' autocomplete='off'
+          placeholder="请输入备注")
+
+    .flex.justify-end
+      el-button(
+        :icon="useRenderIcon(Close)",
+        :loading="loading",
+        @click="closeUpdatePriPrizeInSetVisible()"
+      ) 关闭
+      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>

+ 189 - 0
src/views/pri/priPrizeInSet/hook.tsx

@@ -0,0 +1,189 @@
+import { reactive, onMounted, ref, ElMessage, ElMessageBox, http, getGroupUrl, RegularVerification, verification, PaginationProps } from "@/utils/importUsed";
+import { useRoute } from "vue-router";
+import router from "@/router";
+// 表单实例
+const ruleFormRef = ref()
+export function usePriPrizeInSet() {
+  // 接口列表实例
+  let UrlList = reactive(null)
+  // 获取当前板块接口列表
+  onMounted(async () => {
+    const route = useRoute();
+    form.projectId = Number(route.query.projectId);
+
+    UrlList = await getGroupUrl(["prizeSet"]);
+    onSearch(ruleFormRef.value);
+
+  });
+  let form = reactive({
+    prizeListIds: "", //指定奖励配置
+    note: "", //备注
+    projectId: null,
+
+  });
+  const dataList = ref([]);
+  const loading = ref(false);
+  const dialogAddVisible = ref(false);
+  const pagination = reactive<PaginationProps>({
+    total: 0,
+    pageSize: 10,
+    currentPage: 1,
+    background: true
+  });
+  const columns: TableColumnList = [
+    {
+      type: "selection",
+      width: 55,
+      align: "left",
+      hide: ({ checkList }) => !checkList.includes("勾选列")
+    },
+    {
+      label: "序号",
+      type: "index",
+      width: 70,
+      hide: ({ checkList }) => !checkList.includes("序号列")
+    },
+    {
+      label: "ID",
+      prop: "id",
+      minWidth: 200
+    },
+    {
+      label: "指定奖励配置",
+      prop: "prizeListIds",
+      minWidth: 200
+    },
+    {
+      label: "备注",
+      prop: "note",
+      minWidth: 200
+    },
+
+    {
+      label: "操作",
+      fixed: "right",
+      width: 200,
+      slot: "operation"
+    }
+  ];
+  // 当前页数量切换
+  function handleSizeChange(val: number) {
+    if (typeof val === "number") {
+      pagination.pageSize = val;
+      onSearch(ruleFormRef.value);
+    }
+  }
+  // 当前页码切换
+  function handleCurrentChange(val: number) {
+    console.log(`current page: ${val}`);
+    if (typeof val === "number") {
+      pagination.currentPage = val;
+      onSearch(ruleFormRef.value);
+    }
+  }
+  // 选择表格项
+  function handleSelectionChange(val) {
+    console.log(`SelectionChange: ${val}`);
+    onSearch(ruleFormRef.value);
+  }
+  // 搜索列表
+  async function onSearch(formEl) {
+    // 表单校验拦截
+    if (!formEl) return
+    await formEl.validate(async (valid, fields) => {
+      if (valid) {
+        //表单校验成功回调
+        console.log('submit!')
+        // 状态调整为加载中
+        loading.value = true;
+        // 调用接口(需动态生成接口)
+        const { status, msg, data }: any = await http.Request({
+          method: UrlList.prizeSet.prigetPriPrizeInSetList.method,
+          url: UrlList.prizeSet.prigetPriPrizeInSetList.url,
+          params: {
+            ...form,
+            pageSize: pagination.pageSize,
+            pageNum: pagination.currentPage
+          }
+        });
+        dataList.value = data.records;
+        pagination.total = data.total;
+        setTimeout(() => {
+          loading.value = false;
+        }, 500);
+      } else {
+        //表单校验失败回调
+        ElMessage({
+          message: "请输入完整信息",
+          type: "error"
+        });
+      }
+    })
+  }
+
+
+
+
+  // 删除
+  function handleDelete(row) {
+    ElMessageBox.confirm(
+      `是否删除该奖励入口配置表? `,
+      "提示",
+      {
+        confirmButtonText: "删除",
+        cancelButtonText: "取消",
+        type: "warning"
+      }
+    ).then(async () => {
+      const { status, msg }: any = await http.Request({ method: UrlList.prizeSet.prideletePriPrizeInSet.method, url: UrlList.prizeSet.prideletePriPrizeInSet.url, params: String(row.id) });
+      if (status === 1) {
+        ElMessage({
+          message: "删除成功",
+          type: "success"
+        });
+        onSearch(ruleFormRef.value);
+      } else {
+        ElMessageBox.alert(msg, "提示", {
+          confirmButtonText: "关闭",
+          type: "warning"
+        });
+      };
+    })
+  }
+
+  // 新增
+  const addVisible = ref(false);
+  function handleAdd() {
+    addVisible.value = true;
+  };
+
+  // 修改
+  const editUpdatePriPrizeInSetVisible = ref(false);
+  const editUpdatePriPrizeInSetFormData = ref({});
+  function handleUpdatePriPrizeInSet(row) {
+    editUpdatePriPrizeInSetVisible.value = true;
+    // 表格数据赋值
+    editUpdatePriPrizeInSetFormData.value = row;
+  };
+
+  return {
+    form,
+    loading,
+    columns,
+    dataList,
+    pagination,
+    onSearch,
+    handleSizeChange,
+    handleCurrentChange,
+    handleSelectionChange,
+    ruleFormRef,
+
+    handleAdd,
+    addVisible,
+    handleUpdatePriPrizeInSet,
+    editUpdatePriPrizeInSetVisible,
+    editUpdatePriPrizeInSetFormData,
+    handleDelete,
+
+  };
+}

+ 158 - 0
src/views/pri/priPrizeInSet/index.vue

@@ -0,0 +1,158 @@
+<script lang="ts">
+// 声明额外的选项
+export default {
+  name: "PriPrizeInSet"
+};
+</script>
+<script setup lang="ts">
+import { provide } from "vue";
+import { usePriPrizeInSet } from "./hook";
+import { http } from "@/utils/http";
+import { useRenderIcon, hasAuth, PureTableBar } from "@/utils/importUsed";
+import Add from "./components/add/index.vue";
+import EditUpdatePriPrizeInSet from "./components/updatePriPrizeInSet/index.vue";
+import Search from "@iconify-icons/ep/search";
+import Addicon from "@iconify-icons/ep/document-add";
+import Delete from "@iconify-icons/ep/delete";
+import EditPen from "@iconify-icons/ep/edit-pen";
+import More from "@iconify-icons/ep/more-filled";
+
+const {
+  form,
+  loading,
+  columns,
+  dataList,
+  pagination,
+  onSearch,
+  handleSizeChange,
+  handleCurrentChange,
+  handleSelectionChange,
+  ruleFormRef,
+  handleAdd,
+  addVisible,
+  handleUpdatePriPrizeInSet,
+  editUpdatePriPrizeInSetVisible,
+  editUpdatePriPrizeInSetFormData,
+  handleDelete,
+
+} = usePriPrizeInSet();
+// 关闭添加
+const closeAddVisible = () => {
+  onSearch(ruleFormRef.value);
+  addVisible.value = false;
+}
+provide('closeAddVisible', closeAddVisible)
+// 关闭修改
+const closeEditUpdatePriPrizeInSetVisible = () => {
+  onSearch(ruleFormRef.value);
+  editUpdatePriPrizeInSetVisible.value = false
+}
+provide('closeEditUpdatePriPrizeInSetVisible', closeEditUpdatePriPrizeInSetVisible)
+
+</script>
+
+<template lang="pug">
+.main
+  div
+    //- 搜索表格组件条件
+    el-form.bg-bg_color.pl-8.pt-4.pr-8(
+      label-position="left"
+      label-width="100px"
+      :inline="true",
+      :model="form",
+      class="w-[99/100]"
+      ref="ruleFormRef"
+    )
+      el-form-item(label='指定奖励配置' prop="prizeListIds")
+        el-input(v-model='form.prizeListIds' autocomplete='off'
+          placeholder="请输入指定奖励配置")
+      el-form-item(label='备注' prop="note")
+        el-input(v-model='form.note' autocomplete='off'
+          placeholder="请输入备注")
+
+      el-form-item
+        el-button(
+          type="primary",
+          :icon="useRenderIcon(Search)",
+          :loading="loading",
+          @click="onSearch(ruleFormRef)"
+        ) 查询
+    //- 表格组件
+    PureTableBar(title="奖励入口配置表", @refresh="onSearch(ruleFormRef)" )
+      template(#buttons)
+        el-button(type="primary" :icon="useRenderIcon(Addicon)" @click="handleAdd()" v-if="hasAuth(['add'])") 新增
+
+      template(v-slot="{ size, checkList }")
+        pure-table( 
+          row-key="id"
+          ref="tableRef"
+          adaptive
+          align-whole="center"
+          table-layout="auto"
+          :loading="loading"
+          :size="size",
+          :data="dataList",
+          :columns="columns",
+          :checkList="checkList",
+          :pagination="pagination",
+          :paginationSmall="size === 'default' ? true : false",
+          :header-cell-style="{ background: 'var(--el-table-row-hover-bg-color)', color: 'var(--el-text-color-primary)' }",
+          @selection-change="handleSelectionChange",
+          @size-change="handleSizeChange",
+          @current-change="handleCurrentChange"
+        )
+          template(#operation="{ row }")
+            el-button.reset-margin(
+              link
+              type="primary"
+              size="small"
+              @click="handleUpdatePriPrizeInSet(row)"
+              :icon="useRenderIcon(EditPen)"
+              v-if="hasAuth(['updatePriPrizeInSet'])"
+            ) 编辑
+            el-button.reset-margin(
+              link
+              type="primary"
+              size="small"
+              @click="handleDelete(row)"
+              :icon="useRenderIcon(Delete)"
+              v-if="hasAuth(['delete'])"
+            ) 删除
+
+
+
+    Add(:addVisible="addVisible" :projectId="form.projectId")
+    EditUpdatePriPrizeInSet(:editVisible="editUpdatePriPrizeInSetVisible" :formData="editUpdatePriPrizeInSetFormData")
+
+                    
+</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;
+}
+
+:deep(.el-descriptions__header) {
+  margin: 16px 0 !important;
+}
+</style>

+ 4 - 9
src/views/pri/priPrizeObjectTable/hook.tsx

@@ -44,24 +44,19 @@ export function usePriPrizeObjectTable() {
       width: 70,
       hide: ({ checkList }) => !checkList.includes("序号列")
     },
-    {
-      label: "查询表",
-      prop: "tableEnName",
-      minWidth: 200
-    },
     {
       label: "ID",
       prop: "id",
       minWidth: 200
     },
     {
-      label: "备注",
-      prop: "note",
+      label: "查询表",
+      prop: "tableEnName",
       minWidth: 200
     },
     {
-      label: "指定奖励配置",
-      prop: "prizeListIds",
+      label: "备注",
+      prop: "note",
       minWidth: 200
     },
 

+ 5 - 0
src/views/pri/priProject/hook.tsx

@@ -162,6 +162,10 @@ export function usePriProject() {
   function linkToPriPrizeObjectTable(row) {
     router.push({ path: '../../pri/priPrizeObjectTable/index', query: { projectId: row.id } });
   }
+  //跳转到奖励入口配置表
+  function linkToPriPrizeInSet(row) {
+    router.push({ path: '../../pri/priPrizeInSet/index', query: { projectId: row.id } });
+  }
   //跳转到请求和响应日志
   function linkToPriRequestLog(row) {
     router.push({ path: '../../pri/priRequestLog/index', query: { projectId: row.id } });
@@ -233,6 +237,7 @@ export function usePriProject() {
     linkToPriList,
     linkToPriDatabaseSet,
     linkToPriPrizeObjectTable,
+    linkToPriPrizeInSet,
     linkToPriRequestLog,
 
   };

+ 10 - 0
src/views/pri/priProject/index.vue

@@ -40,6 +40,7 @@ const {
   linkToPriList,
   linkToPriDatabaseSet,
   linkToPriPrizeObjectTable,
+  linkToPriPrizeInSet,
   linkToPriRequestLog,
 
 } = usePriProject();
@@ -172,6 +173,15 @@ provide('closeEditUpdatePriProjectVisible', closeEditUpdatePriProjectVisible)
                       :icon="useRenderIcon(EditPen)"
                       v-if="hasAuth(['linkToPriDatabaseSet'])"
                     ) 数据库连接配置
+                  el-dropdown-item
+                    el-button.reset-margin.edit-btn(
+                      link
+                      type="primary"
+                      size="small"
+                      @click="linkToPriPrizeInSet(row)"
+                      :icon="useRenderIcon(EditPen)"
+                      v-if="hasAuth(['linkToPriPrizeInSet'])"
+                    ) 奖励入口配置表
                   el-dropdown-item
                     el-button.reset-margin.edit-btn(
                       link