|
@@ -5,7 +5,7 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<script setup lang="ts">
|
|
|
-import { requestAdd, requestSearch } from "@/utils/handlePort";
|
|
|
+import { requestAdd, requestEdit, requestSearch } from "@/utils/handlePort";
|
|
|
import {
|
|
|
inject,
|
|
|
onMounted,
|
|
@@ -22,16 +22,12 @@ import {
|
|
|
http,
|
|
|
getGroupUrl,
|
|
|
RegularVerification,
|
|
|
- verification
|
|
|
+ verification,
|
|
|
+ omegaFormChange
|
|
|
} from "@/utils/importUsed";
|
|
|
-// 接口列表实例
|
|
|
-let UrlList = reactive(null);
|
|
|
-// 获取当前板块接口列表
|
|
|
-onMounted(async () => {
|
|
|
- UrlList = await getGroupUrl(["kxsConfigServer"]);
|
|
|
-});
|
|
|
+
|
|
|
const props = defineProps<{
|
|
|
- editVisible: {
|
|
|
+ visible: {
|
|
|
type: Boolean;
|
|
|
default: false;
|
|
|
};
|
|
@@ -39,7 +35,7 @@ const props = defineProps<{
|
|
|
type: Number;
|
|
|
default: 50;
|
|
|
};
|
|
|
- formData: {
|
|
|
+ columnsData: {
|
|
|
id: any;
|
|
|
type: any;
|
|
|
default: {};
|
|
@@ -51,7 +47,7 @@ const props = defineProps<{
|
|
|
const activeId = ref("1");
|
|
|
// 提交函数
|
|
|
const submit = async data => {
|
|
|
- requestAdd(
|
|
|
+ requestEdit(
|
|
|
{
|
|
|
module: "kxsConfigServer",
|
|
|
method: "apiInfosetRouter",
|
|
@@ -64,7 +60,7 @@ const openVisible = async () => {
|
|
|
const { status, data }: any = await requestSearch({
|
|
|
module: "kxsConfigServer",
|
|
|
method: "apiInfoquery",
|
|
|
- params: { id: props.formData.id }
|
|
|
+ params: { id: props.columnsData.id }
|
|
|
});
|
|
|
if (status === 1) {
|
|
|
for (const key in formData.value) {
|
|
@@ -79,6 +75,12 @@ const openVisible = async () => {
|
|
|
const isFullscreen = ref(false);
|
|
|
|
|
|
const formData = ref({
|
|
|
+ id: {
|
|
|
+ label: "id",
|
|
|
+ value: "",
|
|
|
+ // 是否展示
|
|
|
+ disposition: { isShow: false }
|
|
|
+ },
|
|
|
apiHost: {
|
|
|
label: "接口主机头",
|
|
|
value: "",
|
|
@@ -106,55 +108,5 @@ const formData = ref({
|
|
|
|
|
|
<template lang="pug">
|
|
|
.main
|
|
|
- el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeFn" @open="openVisible")
|
|
|
- omega-form(ref="formRef" v-if="props.editVisible" :formData="formData" labelPosition="left" labelWidth="100px" size="default" @search="formsubmit" formWidth="!w-[230px]" :searchAll="false" searchText="确认提交")
|
|
|
- .flex.justify-end
|
|
|
- el-button(
|
|
|
- :icon="useRenderIcon(Close)",
|
|
|
- @click="closeFn"
|
|
|
- ) 关闭
|
|
|
+ omega-form-change(:formData="formData" :visible="visible" :closeFn="closeFn" :formsubmit="formsubmit")
|
|
|
</template>
|
|
|
-
|
|
|
-<style scoped lang="scss">
|
|
|
-:deep(.el-dropdown-menu__item i) {
|
|
|
- margin: 0;
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.el-form-item__label) {
|
|
|
- font-weight: 700;
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.el-pagination) {
|
|
|
- flex-flow: wrap;
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.is-draggable) {
|
|
|
- max-height: 80vh;
|
|
|
- overflow: auto;
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.el-dialog__header) {
|
|
|
- position: sticky;
|
|
|
- top: 0;
|
|
|
- z-index: 2;
|
|
|
- background: #fff;
|
|
|
-}
|
|
|
-
|
|
|
-.collapsedom {
|
|
|
- padding: 0 20px;
|
|
|
- background-color: #fff;
|
|
|
-}
|
|
|
-
|
|
|
-.ovh-x {
|
|
|
- height: 40vh;
|
|
|
- overflow-y: auto;
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.el-descriptions__header) {
|
|
|
- margin: 16px 0 !important;
|
|
|
-}
|
|
|
-
|
|
|
-.el-select {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-</style>
|