index.vue 6.9 KB

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