index.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <script lang="ts">
  2. // 声明额外的选项
  3. export default {
  4. name: "Add"
  5. };
  6. </script>
  7. <script setup lang="ts">
  8. import { inject, onMounted, reactive, ref, Uploadfile, UploadImg, Editor, useRenderIcon, ElMessage, ElMessageBox, Upload, Close, http, getGroupUrl, RegularVerification, verification } from "@/utils/importUsed"
  9. // 接口列表实例
  10. let UrlList = reactive(null)
  11. // 获取当前板块接口列表
  12. onMounted(async () => {
  13. UrlList = await getGroupUrl(["prizeSet"]);
  14. listIdQuery();
  15. })
  16. // 组件传参对象
  17. const props = defineProps<{
  18. submit: Function;
  19. addVisible: {
  20. type: Boolean;
  21. default: false;
  22. };
  23. width: {
  24. type: Number;
  25. default: 50;
  26. };
  27. listId: {
  28. type: Number;
  29. default: 0;
  30. },
  31. }>();
  32. // 表单数据
  33. let UpdateForm = ref({
  34. listId: props.listId, //配置ID
  35. returnFieldId: null, //条件返回字段
  36. fieldQueryKind: "", //匹配条件
  37. fieldQueryModel: "", //匹配方式
  38. fieldQueryValue: "", //匹配值
  39. fieldQueryValueType: "", //匹配值类型
  40. prizePercent: "", //奖励比例
  41. prizeAmount: "", //奖励固定金额
  42. });
  43. // 表单实例
  44. const ruleFormRef = ref()
  45. // 传参选项数据
  46. // 配置ID选项数据
  47. const listIdOptionList = ref([]);
  48. // 匹配条件选项数据
  49. const fieldQueryKindOptionList = [
  50. { id: "1", label: '模糊匹配' },
  51. { id: "2", label: '精确匹配' },
  52. { id: "4", label: '取反匹配' },
  53. { id: '5', label: '数组匹配' },
  54. { id: '6', label: '数组排除' },
  55. { id: "3", label: '范围匹配' },
  56. ]
  57. // 匹配方式选项数据
  58. const fieldQueryModelOptionList = [
  59. { id: 'request_param', label: '入参' },
  60. { id: 'loop_field', label: '循环递归字段' },
  61. { id: 'fixed_value', label: '固定值' },
  62. { id: 'db_field', label: '库内字段' },
  63. ]
  64. // 匹配值类型选项数据
  65. const fieldQueryValueTypeOptionList = [
  66. { id: 'text', label: '文本' },
  67. { id: 'number', label: '数字' },
  68. { id: 'date', label: '日期' },
  69. { id: 'datetime', label: '时间' },
  70. ]
  71. // 选项卡参数(默认值为列表某项的id)
  72. const activeId = ref('1')
  73. // 提交函数
  74. const submit = async (formEl) => {
  75. // 表单校验拦截
  76. if (!formEl) return
  77. await formEl.validate(async (valid, fields) => {
  78. if (valid) {
  79. //表单校验成功回调
  80. console.log('submit!')
  81. // 需动态生成接口
  82. const { status, msg }: any = await http.Request({
  83. method: UrlList.prizeSet.priaddPriCondition.method,
  84. url: UrlList.prizeSet.priaddPriCondition.url,
  85. params: UpdateForm.value
  86. });
  87. if (status === 1) {
  88. //业务成功回调
  89. ElMessage({
  90. message: "新增成功",
  91. type: "success"
  92. });
  93. UpdateForm.value = {
  94. listId: props.listId, //配置ID
  95. returnFieldId: null, //条件返回字段
  96. fieldQueryKind: "", //匹配条件
  97. fieldQueryModel: "", //匹配方式
  98. fieldQueryValue: "", //匹配值
  99. fieldQueryValueType: "", //匹配值类型
  100. prizePercent: "", //奖励比例
  101. prizeAmount: "", //奖励固定金额
  102. };
  103. // 关闭新增弹窗;
  104. closeVisible()
  105. } else {
  106. //业务失败回调
  107. ElMessageBox.alert(msg, "提示", {
  108. confirmButtonText: "关闭",
  109. type: "warning"
  110. });
  111. }
  112. } else {
  113. //表单校验失败回调
  114. ElMessage({
  115. message: "请输入完整信息",
  116. type: "error"
  117. });
  118. }
  119. })
  120. };
  121. //获取配置ID数据
  122. const listIdQuery = async () => {
  123. const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: {} });
  124. if (status === 1) {
  125. listIdOptionList.value = data.records;
  126. }
  127. };
  128. // 表单校验规则
  129. const rules = reactive({
  130. })
  131. // 关闭弹窗回调函数
  132. const closeFn: any = inject("closeAddVisible");
  133. const closeVisible = () => {
  134. // 清空表单项;
  135. UpdateForm.value = {
  136. listId: props.listId, //配置ID
  137. returnFieldId: null, //条件返回字段
  138. fieldQueryKind: "", //匹配条件
  139. fieldQueryModel: "", //匹配方式
  140. fieldQueryValue: "", //匹配值
  141. fieldQueryValueType: "", //匹配值类型
  142. prizePercent: "", //奖励比例
  143. prizeAmount: "", //奖励固定金额
  144. };
  145. closeFn();
  146. };
  147. // 弹窗是否全屏
  148. const isFullscreen = ref(false)
  149. </script>
  150. <template lang="pug">
  151. .main
  152. el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible")
  153. el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
  154. el-form-item(label="配置ID", prop="listId")
  155. el-select(
  156. v-model="UpdateForm.listId",
  157. placeholder="请选择配置ID",
  158. clearable,
  159. )
  160. el-option(:label="item.prizeName", :value="item.id" v-for="(item,index) in listIdOptionList")
  161. el-form-item(label='条件返回字段' prop="returnFieldId")
  162. el-input-number(v-model='UpdateForm.returnFieldId' :min="1" :max="1000"
  163. placeholder="请输入条件返回字段")
  164. el-form-item(label="匹配条件", prop="fieldQueryKind")
  165. el-select(
  166. v-model="UpdateForm.fieldQueryKind",
  167. placeholder="请选择匹配条件",
  168. clearable,
  169. )
  170. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryKindOptionList")
  171. el-form-item(label="匹配方式", prop="fieldQueryModel")
  172. el-select(
  173. v-model="UpdateForm.fieldQueryModel",
  174. placeholder="请选择匹配方式",
  175. clearable,
  176. )
  177. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryModelOptionList")
  178. el-form-item(label='匹配值' prop="fieldQueryValue")
  179. el-input(v-model='UpdateForm.fieldQueryValue' autocomplete='off'
  180. placeholder="请输入匹配值")
  181. el-form-item(label="匹配值类型", prop="fieldQueryValueType")
  182. el-select(
  183. v-model="UpdateForm.fieldQueryValueType",
  184. placeholder="请选择匹配值类型",
  185. clearable,
  186. )
  187. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
  188. el-form-item(label='奖励比例' prop="prizePercent")
  189. el-input-number(v-model='UpdateForm.prizePercent' :min="0" :max="1000"
  190. placeholder="请输入奖励比例")
  191. el-form-item(label='奖励固定金额' prop="prizeAmount")
  192. el-input-number(v-model='UpdateForm.prizeAmount' :min="0" :max="1000"
  193. placeholder="请输入奖励固定金额")
  194. .flex.justify-end
  195. el-button(
  196. :icon="useRenderIcon(Close)",
  197. @click="closeVisible"
  198. ) 关闭
  199. el-button(
  200. type="primary",
  201. :icon="useRenderIcon(Upload)",
  202. @click="submit(ruleFormRef)"
  203. ) 确认提交
  204. </template>
  205. <style scoped lang="scss">
  206. :deep(.el-dropdown-menu__item i) {
  207. margin: 0;
  208. }
  209. :deep(.el-form-item__label) {
  210. font-weight: 700;
  211. }
  212. :deep(.el-pagination) {
  213. flex-flow: wrap;
  214. }
  215. :deep(.is-draggable) {
  216. max-height: 80vh;
  217. overflow: auto;
  218. }
  219. :deep(.el-dialog__header) {
  220. position: sticky;
  221. top: 0;
  222. z-index: 2;
  223. background: #fff;
  224. }
  225. .collapsedom {
  226. padding: 0 20px;
  227. background-color: #fff;
  228. }
  229. .ovh-x {
  230. height: 40vh;
  231. overflow-y: auto;
  232. }
  233. :deep(.el-descriptions__header) {
  234. margin: 16px 0 !important;
  235. }
  236. .el-select {
  237. width: 100%;
  238. }
  239. </style>