调整服务指令-服务指令库-未输入镜像码时列表页样式
This commit is contained in:
parent
7725d36c2e
commit
1afb46d3a5
|
|
@ -15,10 +15,9 @@
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
|
|
||||||
<a-drawer :title="'服务指令库'" width="80vw" v-model:visible="sdVisible" :closable="true"
|
<a-drawer :title="'服务指令库'" width="80vw" v-model:visible="sdVisible" :closable="true"
|
||||||
:footer-style="{ textAlign: 'right' }" @close="handleCancelDM" :maskClosable="true">
|
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleCancelDM"
|
||||||
<a-spin :spinning="loading">
|
:maskClosable="true">
|
||||||
<DirectiveRespositoryList v-if="sdVisible" ref="dmRef"></DirectiveRespositoryList>
|
<DirectiveRespositoryList v-if="sdVisible" ref="dmRef"></DirectiveRespositoryList>
|
||||||
</a-spin>
|
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<a-button @click="handleCancelDM" style="margin-right: 8px;">关闭</a-button>
|
<a-button @click="handleCancelDM" style="margin-right: 8px;">关闭</a-button>
|
||||||
<a-button @click="handlePullDM">镜像</a-button>
|
<a-button @click="handlePullDM">镜像</a-button>
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,18 @@
|
||||||
</a-form>
|
</a-form>
|
||||||
</div>
|
</div>
|
||||||
<a-spin :spinning="!targetOrgCode">
|
<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>
|
||||||
<!--查询区域-->
|
<!--查询区域-->
|
||||||
<div class="jeecg-basic-table-form-container">
|
<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 { cloneDeep } from "lodash-es";
|
||||||
import { getOrgInfo, getMediaUrlByOrgCode } from '@/api/common/api'
|
import { getOrgInfo, getMediaUrlByOrgCode } from '@/api/common/api'
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||||||
|
import { LockOutlined } from '@ant-design/icons-vue';
|
||||||
|
|
||||||
const { createMessage, createConfirm } = useMessage();
|
const { createMessage, createConfirm } = useMessage();
|
||||||
const directiveSyncCode = ref('')//镜像码
|
const directiveSyncCode = ref('')//镜像码
|
||||||
|
|
@ -337,8 +350,8 @@ async function searchOrgCode() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function resetChoose(){
|
function resetChoose() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加音频结束监听
|
// 添加音频结束监听
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue