|
@@ -18,16 +18,17 @@
|
|
|
</BasicModal>
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
- import { ref, triggerRef } from 'vue';
|
|
|
+ import { ref } from 'vue';
|
|
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
|
import { onMounted } from 'vue';
|
|
|
import CADViewer from '/@/views/vent/performance/fileDetail/commen/CADViewer.vue';
|
|
|
- import { useGlobSetting } from '/@/hooks/setting';
|
|
|
+ // import { useGlobSetting } from '/@/hooks/setting';
|
|
|
import { AUTO_LOGIN_URL_QUERY } from '/@/router/constant';
|
|
|
|
|
|
- const { sysOrgCode } = useGlobSetting();
|
|
|
+ // const { sysOrgCode } = useGlobSetting();
|
|
|
// 不是布尔台的使用 mxcad 模式,是布尔台的使用 iframe 模式以避免“法律风险”
|
|
|
- const mxcadmode = ref(sysOrgCode !== 'sdmtjtbetmk');
|
|
|
+ const mxcadmode = ref(true);
|
|
|
+ // const mxcadmode = ref(sysOrgCode !== 'sdmtjtbetmk');
|
|
|
|
|
|
// CAD预览器的 DEMO 01 相关代码
|
|
|
const iframesrc = ref('');
|