AI算法实例画面 默认显示图片修改
parent
63edcb98d5
commit
218c6ae04d
|
|
@ -11,7 +11,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="drawer-content">
|
||||
<img class="content-image" src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"/>
|
||||
<img class="content-image" :src="`${VITE_GLOB_API_URL}/20250818\\2025081816060064980138.jpeg`"/>
|
||||
<div class="content-item-name">
|
||||
<div class="item-name-label">实例名称</div>
|
||||
<div class="item-name-value">公路-隔离栏破损识别</div>
|
||||
|
|
@ -60,6 +60,8 @@
|
|||
<script setup lang="ts">
|
||||
import {} from "vue"
|
||||
import { EditOutlined, CloseOutlined } from '@ant-design/icons-vue'
|
||||
import { getAppEnvConfig } from '@/utils/env';
|
||||
const { VITE_GLOB_API_URL } = getAppEnvConfig();
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<div class="show-list">
|
||||
<div class="item-list" v-for="value in 10">
|
||||
<div class="image-div">
|
||||
<img class="image-item" src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png">
|
||||
<img class="image-item" :src="`${VITE_GLOB_API_URL}/20250818\\2025081816060064980138.jpeg`">
|
||||
<div class="image-icon">盖板缺失</div>
|
||||
</div>
|
||||
<div class="show-info-div">
|
||||
|
|
@ -97,6 +97,8 @@ import { ref, h, } from "vue"
|
|||
import { PlusOutlined, } from '@ant-design/icons-vue';
|
||||
import AddInstanceModal from "./AddInstanceModal.vue";
|
||||
import ShowInfoDrawer from "./ShowInfoDrawer.vue";
|
||||
import { getAppEnvConfig } from '@/utils/env';
|
||||
const { VITE_GLOB_API_URL } = getAppEnvConfig();
|
||||
const instanceName = ref('')
|
||||
const instanceAlgorithm = ref()
|
||||
const addInstanceModal = ref(false)
|
||||
|
|
|
|||
Loading…
Reference in New Issue