index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <script lang="ts">
  2. // 声明额外的选项
  3. export default {
  4. name: "Edit"
  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. })
  15. const props = defineProps<{
  16. editVisible: {
  17. type: Boolean;
  18. default: false;
  19. };
  20. width: {
  21. type: Number;
  22. default: 50;
  23. };
  24. formData: {
  25. id: any;
  26. type: any;
  27. default: {};
  28. };
  29. }>();
  30. // 表单数据
  31. const UpdateForm: any = ref({
  32. id: null, //ID
  33. prizeName: "", //奖励名称
  34. prizePercent: "", //奖励比例
  35. prizeAmount: "", //奖励固定金额
  36. conditionMode: "", //条件模式
  37. recursionFlag: "", //是否递归
  38. prizeContent: "", //奖励内容
  39. requestParamField: "", //入参字段
  40. prizeSourceField: "", //奖励金额来源数据
  41. });
  42. // 条件模式选项数据
  43. const conditionModeOptionList = [
  44. { id: 'all', label: '全部满足' },
  45. { id: 'one', label: '一个满足' },
  46. ]
  47. // 奖励内容选项数据
  48. const prizeContentOptionList = [
  49. { id: 'cash', label: '现金' },
  50. { id: 'recyc', label: '循环资格' },
  51. { id: 'coupon', label: '机具券' },
  52. ]
  53. // 表单实例
  54. const ruleFormRef = ref()
  55. // 选项卡参数(默认值为列表某项的id)
  56. const activeId = ref('1')
  57. // 提交函数
  58. const submit = async (formEl) => {
  59. // 表单校验拦截
  60. if (!formEl) return
  61. await formEl.validate(async (valid, fields) => {
  62. if (valid) {
  63. //表单校验成功回调
  64. console.log('submit!')
  65. // 需动态生成接口
  66. const { status, msg }: any = await http.Request({
  67. method: UrlList.prizeSet.priupdatePriList.method,
  68. url: UrlList.prizeSet.priupdatePriList.url,
  69. params: UpdateForm.value
  70. });
  71. if (status === 1) {
  72. //业务成功回调
  73. ElMessage({
  74. message: "修改成功",
  75. type: "success"
  76. });
  77. UpdateForm.value = {
  78. id: null, //ID
  79. prizeName: "", //奖励名称
  80. prizePercent: "", //奖励比例
  81. prizeAmount: "", //奖励固定金额
  82. conditionMode: "", //条件模式
  83. recursionFlag: "", //是否递归
  84. prizeContent: "", //奖励内容
  85. requestParamField: "", //入参字段
  86. prizeSourceField: "", //奖励金额来源数据
  87. };
  88. // 关闭修改弹窗;
  89. closeUpdatePriListVisible();
  90. } else {
  91. //业务失败回调
  92. ElMessageBox.alert(msg, "提示", {
  93. confirmButtonText: "关闭",
  94. type: "warning"
  95. });
  96. }
  97. } else {
  98. //表单校验失败回调
  99. ElMessage({
  100. message: "请输入完整信息",
  101. type: "error"
  102. });
  103. }
  104. })
  105. };
  106. // 表单校验规则
  107. const rules = reactive({
  108. id: [
  109. { required: true, message: '请输入ID', trigger: 'blur' },
  110. ],
  111. prizeName: [
  112. { required: true, message: '请输入奖励名称', trigger: 'blur' },
  113. ],
  114. prizePercent: [
  115. { required: true, message: '请输入奖励比例', trigger: 'blur' },
  116. ],
  117. conditionMode: [
  118. { required: true, message: '请输入条件模式', trigger: 'blur' },
  119. ],
  120. })
  121. // 关闭弹窗回调函数
  122. const closeFn: any = inject('closeEditUpdatePriListVisible');
  123. const openVisible = async () => {
  124. //通过ID获取表格数据
  125. const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListQuery.method, url: UrlList.prizeSet.prigetPriListQuery.url, params: { id: props.formData.id } });
  126. if (status === 1) {
  127. UpdateForm.value = data;
  128. }
  129. };
  130. // 关闭弹窗回调函数
  131. const closeUpdatePriListVisible = () => {
  132. UpdateForm.value = {
  133. id: null, //ID
  134. prizeName: "", //奖励名称
  135. prizePercent: "", //奖励比例
  136. prizeAmount: "", //奖励固定金额
  137. conditionMode: "", //条件模式
  138. recursionFlag: "", //是否递归
  139. prizeContent: "", //奖励内容
  140. requestParamField: "", //入参字段
  141. prizeSourceField: "", //奖励金额来源数据
  142. };
  143. closeFn();
  144. };
  145. // 弹窗是否全屏
  146. const isFullscreen = ref(false)
  147. </script>
  148. <template lang="pug">
  149. .main
  150. el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriListVisible" @open="openVisible")
  151. el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
  152. el-form-item(label='ID' prop="id")
  153. el-input-number(v-model='UpdateForm.id' :min="1" :max="1000"
  154. placeholder="请输入ID")
  155. el-form-item(label='奖励名称' prop="prizeName")
  156. el-input(v-model='UpdateForm.prizeName' autocomplete='off'
  157. placeholder="请输入奖励名称")
  158. el-form-item(label='奖励比例' prop="prizePercent")
  159. el-input-number(v-model='UpdateForm.prizePercent' :min="0" :max="1000"
  160. placeholder="请输入奖励比例")
  161. el-form-item(label='奖励固定金额' prop="prizeAmount")
  162. el-input-number(v-model='UpdateForm.prizeAmount' :min="0" :max="1000"
  163. placeholder="请输入奖励固定金额")
  164. el-form-item(label="条件模式", prop="conditionMode")
  165. el-select(
  166. v-model="UpdateForm.conditionMode",
  167. placeholder="请选择条件模式",
  168. clearable,
  169. )
  170. el-option(:label="item.label", :value="item.id" v-for="(item,index) in conditionModeOptionList")
  171. el-form-item(label='是否递归' prop="recursionFlag")
  172. el-switch(v-model="UpdateForm.recursionFlag")
  173. el-form-item(label="奖励内容", prop="prizeContent")
  174. el-select(
  175. v-model="UpdateForm.prizeContent",
  176. placeholder="请选择奖励内容",
  177. clearable,
  178. )
  179. el-option(:label="item.label", :value="item.id" v-for="(item,index) in prizeContentOptionList")
  180. el-form-item(label='入参字段' prop="requestParamField")
  181. el-input(v-model='UpdateForm.requestParamField' autocomplete='off'
  182. placeholder="请输入入参字段")
  183. el-form-item(label='奖励金额来源数据' prop="prizeSourceField")
  184. el-input(v-model='UpdateForm.prizeSourceField' autocomplete='off'
  185. placeholder="请输入奖励金额来源数据")
  186. .flex.justify-end
  187. el-button(
  188. :icon="useRenderIcon(Close)",
  189. :loading="loading",
  190. @click="closeUpdatePriListVisible()"
  191. ) 关闭
  192. el-button(
  193. type="primary",
  194. :icon="useRenderIcon(Upload)",
  195. @click="submit(ruleFormRef)"
  196. ) 确认提交
  197. </template>
  198. <style scoped lang="scss">
  199. :deep(.el-dropdown-menu__item i) {
  200. margin: 0;
  201. }
  202. :deep(.el-form-item__label) {
  203. font-weight: 700;
  204. }
  205. :deep(.el-pagination) {
  206. flex-flow: wrap;
  207. }
  208. :deep(.is-draggable) {
  209. max-height: 80vh;
  210. overflow: auto;
  211. }
  212. :deep(.el-dialog__header) {
  213. position: sticky;
  214. top: 0;
  215. z-index: 2;
  216. background: #fff;
  217. }
  218. .collapsedom {
  219. padding: 0 20px;
  220. background-color: #fff;
  221. }
  222. .ovh-x {
  223. height: 40vh;
  224. overflow-y: auto;
  225. }
  226. :deep(.el-descriptions__header) {
  227. margin: 16px 0 !important;
  228. }
  229. .el-select {
  230. width: 100%;
  231. }
  232. </style>