index.vue 6.5 KB

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