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. queryTableIdQuery();
  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. queryTableId: {
  28. type: Number;
  29. default: 0;
  30. },
  31. }>();
  32. // 表单数据
  33. let UpdateForm = ref({
  34. fieldName: "", //字段名称
  35. fieldEnName: "", //字段名
  36. fieldQueryKind: "", //匹配条件
  37. fieldQueryModel: "", //匹配方式
  38. fieldQueryValue: "", //匹配值
  39. fieldQueryValueType: "", //匹配值类型
  40. queryTableId: props.queryTableId, //匹配表
  41. groupByFlag: "", //聚合查询
  42. });
  43. // 表单实例
  44. const ruleFormRef = ref()
  45. // 传参选项数据
  46. // 匹配条件选项数据
  47. const fieldQueryKindOptionList = [
  48. { id: "1", label: '模糊匹配' },
  49. { id: "2", label: '精确匹配' },
  50. { id: "4", label: '取反匹配' },
  51. { id: '5', label: '数组匹配' },
  52. { id: '6', label: '数组排除' },
  53. { id: "3", label: '范围匹配' },
  54. ]
  55. // 匹配方式选项数据
  56. const fieldQueryModelOptionList = [
  57. { id: 'request_param', label: '入参' },
  58. { id: 'query_field', label: '条件匹配返回字段' },
  59. { id: 'loop_field', label: '循环递归字段' },
  60. { id: 'fixed_value', label: '固定值' },
  61. { id: 'db_field', label: '库内字段' },
  62. ]
  63. // 匹配值类型选项数据
  64. const fieldQueryValueTypeOptionList = [
  65. { id: 'text', label: '文本' },
  66. { id: 'number', label: '数字' },
  67. { id: 'date', label: '日期' },
  68. { id: 'datetime', label: '时间' },
  69. ]
  70. // 匹配表选项数据
  71. const queryTableIdOptionList = ref([]);
  72. // 选项卡参数(默认值为列表某项的id)
  73. const activeId = ref('1')
  74. // 提交函数
  75. const submit = async (formEl) => {
  76. // 表单校验拦截
  77. if (!formEl) return
  78. await formEl.validate(async (valid, fields) => {
  79. if (valid) {
  80. //表单校验成功回调
  81. console.log('submit!')
  82. // 需动态生成接口
  83. const { status, msg }: any = await http.Request({
  84. method: UrlList.prizeSet.priaddPriQueryField.method,
  85. url: UrlList.prizeSet.priaddPriQueryField.url,
  86. params: UpdateForm.value
  87. });
  88. if (status === 1) {
  89. //业务成功回调
  90. ElMessage({
  91. message: "新增成功",
  92. type: "success"
  93. });
  94. UpdateForm.value = {
  95. fieldName: "", //字段名称
  96. fieldEnName: "", //字段名
  97. fieldQueryKind: "", //匹配条件
  98. fieldQueryModel: "", //匹配方式
  99. fieldQueryValue: "", //匹配值
  100. fieldQueryValueType: "", //匹配值类型
  101. queryTableId: props.queryTableId, //匹配表
  102. groupByFlag: "", //聚合查询
  103. };
  104. // 关闭新增弹窗;
  105. closeVisible()
  106. } else {
  107. //业务失败回调
  108. ElMessageBox.alert(msg, "提示", {
  109. confirmButtonText: "关闭",
  110. type: "warning"
  111. });
  112. }
  113. } else {
  114. //表单校验失败回调
  115. ElMessage({
  116. message: "请输入完整信息",
  117. type: "error"
  118. });
  119. }
  120. })
  121. };
  122. //获取匹配表数据
  123. const queryTableIdQuery = async () => {
  124. const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriQueryTableDic.method, url: UrlList.prizeSet.prigetPriQueryTableDic.url, params: {} });
  125. if (status === 1) {
  126. queryTableIdOptionList.value = data.records;
  127. }
  128. };
  129. // 表单校验规则
  130. const rules = reactive({
  131. })
  132. // 关闭弹窗回调函数
  133. const closeFn: any = inject("closeAddVisible");
  134. const closeVisible = () => {
  135. // 清空表单项;
  136. UpdateForm.value = {
  137. fieldName: "", //字段名称
  138. fieldEnName: "", //字段名
  139. fieldQueryKind: "", //匹配条件
  140. fieldQueryModel: "", //匹配方式
  141. fieldQueryValue: "", //匹配值
  142. fieldQueryValueType: "", //匹配值类型
  143. queryTableId: props.queryTableId, //匹配表
  144. groupByFlag: "", //聚合查询
  145. };
  146. closeFn();
  147. };
  148. // 弹窗是否全屏
  149. const isFullscreen = ref(false)
  150. </script>
  151. <template lang="pug">
  152. .main
  153. el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible")
  154. el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
  155. el-form-item(label='字段名称' prop="fieldName")
  156. el-input(v-model='UpdateForm.fieldName' autocomplete='off'
  157. placeholder="请输入字段名称")
  158. el-form-item(label='字段名' prop="fieldEnName")
  159. el-input(v-model='UpdateForm.fieldEnName' autocomplete='off'
  160. placeholder="请输入字段名")
  161. el-form-item(label="匹配条件", prop="fieldQueryKind")
  162. el-select(
  163. v-model="UpdateForm.fieldQueryKind",
  164. placeholder="请选择匹配条件",
  165. clearable,
  166. )
  167. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryKindOptionList")
  168. el-form-item(label="匹配方式", prop="fieldQueryModel")
  169. el-select(
  170. v-model="UpdateForm.fieldQueryModel",
  171. placeholder="请选择匹配方式",
  172. clearable,
  173. )
  174. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryModelOptionList")
  175. el-form-item(label='匹配值' prop="fieldQueryValue")
  176. el-input(v-model='UpdateForm.fieldQueryValue' autocomplete='off'
  177. placeholder="请输入匹配值")
  178. el-form-item(label="匹配值类型", prop="fieldQueryValueType")
  179. el-select(
  180. v-model="UpdateForm.fieldQueryValueType",
  181. placeholder="请选择匹配值类型",
  182. clearable,
  183. )
  184. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
  185. el-form-item(label="匹配表", prop="queryTableId")
  186. el-select(
  187. v-model="UpdateForm.queryTableId",
  188. placeholder="请选择匹配表",
  189. clearable,
  190. )
  191. el-option(:label="item.tableEnName + item.summary", :value="item.id" v-for="(item,index) in queryTableIdOptionList")
  192. el-form-item(label='聚合查询' prop="groupByFlag")
  193. el-switch(v-model="UpdateForm.groupByFlag")
  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>