调整服务指令-服务指令库-未输入镜像码时列表页样式

This commit is contained in:
1378012178@qq.com 2025-12-24 08:39:59 +08:00
parent 7725d36c2e
commit 1afb46d3a5
2 changed files with 18 additions and 6 deletions

View File

@ -15,10 +15,9 @@
</a-drawer>
<a-drawer :title="'服务指令库'" width="80vw" v-model:visible="sdVisible" :closable="true"
:footer-style="{ textAlign: 'right' }" @close="handleCancelDM" :maskClosable="true">
<a-spin :spinning="loading">
<DirectiveRespositoryList v-if="sdVisible" ref="dmRef"></DirectiveRespositoryList>
</a-spin>
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleCancelDM"
:maskClosable="true">
<DirectiveRespositoryList v-if="sdVisible" ref="dmRef"></DirectiveRespositoryList>
<template #footer>
<a-button @click="handleCancelDM" style="margin-right: 8px;">关闭</a-button>
<a-button @click="handlePullDM">镜像</a-button>

View File

@ -21,6 +21,18 @@
</a-form>
</div>
<a-spin :spinning="!targetOrgCode">
<template #indicator>
<span>
<LockOutlined style="color: #28A1F8; font-weight: bold;font-size: 25px; margin-left: -5px;" />
</span>
</template>
<template #tip>
<div>
<div style="margin-top: 5px;">
<span style="font-size: 18px;color: #28A1F8;font-weight: bold;">请输入镜像码</span>
</div>
</div>
</template>
<div>
<!--查询区域-->
<div class="jeecg-basic-table-form-container">
@ -108,6 +120,7 @@ import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectT
import { cloneDeep } from "lodash-es";
import { getOrgInfo, getMediaUrlByOrgCode } from '@/api/common/api'
import { useMessage } from '/@/hooks/web/useMessage';
import { LockOutlined } from '@ant-design/icons-vue';
const { createMessage, createConfirm } = useMessage();
const directiveSyncCode = ref('')//
@ -337,7 +350,7 @@ async function searchOrgCode() {
}
}
function resetChoose(){
function resetChoose() {
}