index.vue 6.2 KB

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