index.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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: false, //聚合查询
  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: 'querystart_list_field', 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. // 匹配表选项数据
  72. const queryTableIdOptionList = ref([]);
  73. // 选项卡参数(默认值为列表某项的id)
  74. const activeId = ref('1')
  75. // 提交函数
  76. const submit = async (formEl) => {
  77. // 表单校验拦截
  78. if (!formEl) return
  79. await formEl.validate(async (valid, fields) => {
  80. if (valid) {
  81. //表单校验成功回调
  82. console.log('submit!')
  83. // 需动态生成接口
  84. const { status, msg }: any = await http.Request({
  85. method: UrlList.prizeSet.priaddPriQueryField.method,
  86. url: UrlList.prizeSet.priaddPriQueryField.url,
  87. params: UpdateForm.value
  88. });
  89. if (status === 1) {
  90. //业务成功回调
  91. ElMessage({
  92. message: "新增成功",
  93. type: "success"
  94. });
  95. UpdateForm.value = {
  96. fieldName: "", //字段名称
  97. fieldEnName: "", //字段名
  98. fieldQueryKind: "", //匹配条件
  99. fieldQueryModel: "", //匹配方式
  100. fieldQueryValue: "", //匹配值
  101. fieldQueryValueType: "", //匹配值类型
  102. queryTableId: props.queryTableId, //匹配表
  103. groupByFlag: false, //聚合查询
  104. };
  105. // 关闭新增弹窗;
  106. closeVisible()
  107. } else {
  108. //业务失败回调
  109. ElMessageBox.alert(msg, "提示", {
  110. confirmButtonText: "关闭",
  111. type: "warning"
  112. });
  113. }
  114. } else {
  115. //表单校验失败回调
  116. ElMessage({
  117. message: "请输入完整信息",
  118. type: "error"
  119. });
  120. }
  121. })
  122. };
  123. //获取匹配表数据
  124. const queryTableIdQuery = async () => {
  125. const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriQueryTableDic.method, url: UrlList.prizeSet.prigetPriQueryTableDic.url, params: {} });
  126. if (status === 1) {
  127. queryTableIdOptionList.value = data.records;
  128. }
  129. };
  130. // 表单校验规则
  131. const rules = reactive({
  132. })
  133. // 关闭弹窗回调函数
  134. const closeFn: any = inject("closeAddVisible");
  135. const closeVisible = () => {
  136. // 清空表单项;
  137. UpdateForm.value = {
  138. fieldName: "", //字段名称
  139. fieldEnName: "", //字段名
  140. fieldQueryKind: "", //匹配条件
  141. fieldQueryModel: "", //匹配方式
  142. fieldQueryValue: "", //匹配值
  143. fieldQueryValueType: "", //匹配值类型
  144. queryTableId: props.queryTableId, //匹配表
  145. groupByFlag: false, //聚合查询
  146. };
  147. closeFn();
  148. };
  149. const openfn = () => {
  150. UpdateForm.value.queryTableId = props.queryTableId;
  151. }
  152. // 弹窗是否全屏
  153. const isFullscreen = ref(false)
  154. </script>
  155. <template lang="pug">
  156. .main
  157. el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible" @open="openfn")
  158. el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
  159. el-form-item(label='字段名称' prop="fieldName")
  160. el-input(v-model='UpdateForm.fieldName' autocomplete='off'
  161. placeholder="请输入字段名称")
  162. el-form-item(label='字段名' prop="fieldEnName")
  163. el-input(v-model='UpdateForm.fieldEnName' autocomplete='off'
  164. placeholder="请输入字段名")
  165. el-form-item(label="匹配条件", prop="fieldQueryKind")
  166. el-select(
  167. v-model="UpdateForm.fieldQueryKind",
  168. placeholder="请选择匹配条件",
  169. clearable,
  170. )
  171. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryKindOptionList")
  172. el-form-item(label="匹配方式", prop="fieldQueryModel")
  173. el-select(
  174. v-model="UpdateForm.fieldQueryModel",
  175. placeholder="请选择匹配方式",
  176. clearable,
  177. )
  178. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryModelOptionList")
  179. el-form-item(label='匹配值' prop="fieldQueryValue")
  180. el-input(v-model='UpdateForm.fieldQueryValue' autocomplete='off'
  181. placeholder="请输入匹配值")
  182. el-form-item(label="匹配值类型", prop="fieldQueryValueType")
  183. el-select(
  184. v-model="UpdateForm.fieldQueryValueType",
  185. placeholder="请选择匹配值类型",
  186. clearable,
  187. )
  188. el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
  189. el-form-item(label="匹配表", prop="queryTableId")
  190. el-select(
  191. v-model="UpdateForm.queryTableId",
  192. placeholder="请选择匹配表",
  193. clearable,
  194. )
  195. el-option(:label="item.tableEnName + item.summary", :value="item.id" v-for="(item,index) in queryTableIdOptionList")
  196. el-form-item(label='聚合查询' prop="groupByFlag")
  197. el-switch(v-model="UpdateForm.groupByFlag")
  198. .flex.justify-end
  199. el-button(
  200. :icon="useRenderIcon(Close)",
  201. @click="closeVisible"
  202. ) 关闭
  203. el-button(
  204. type="primary",
  205. :icon="useRenderIcon(Upload)",
  206. @click="submit(ruleFormRef)"
  207. ) 确认提交
  208. </template>
  209. <style scoped lang="scss">
  210. :deep(.el-dropdown-menu__item i) {
  211. margin: 0;
  212. }
  213. :deep(.el-form-item__label) {
  214. font-weight: 700;
  215. }
  216. :deep(.el-pagination) {
  217. flex-flow: wrap;
  218. }
  219. :deep(.is-draggable) {
  220. max-height: 80vh;
  221. overflow: auto;
  222. }
  223. :deep(.el-dialog__header) {
  224. position: sticky;
  225. top: 0;
  226. z-index: 2;
  227. background: #fff;
  228. }
  229. .collapsedom {
  230. padding: 0 20px;
  231. background-color: #fff;
  232. }
  233. .ovh-x {
  234. height: 40vh;
  235. overflow-y: auto;
  236. }
  237. :deep(.el-descriptions__header) {
  238. margin: 16px 0 !important;
  239. }
  240. .el-select {
  241. width: 100%;
  242. }
  243. </style>