|
|
@@ -42,6 +42,14 @@
|
|
|
<template #FLOWNAME="{ record }">
|
|
|
{{ record.FLOWNAME.replace('上传', '') }}
|
|
|
</template>
|
|
|
+ <template #ISPASS="{ record }">
|
|
|
+ <a-tag
|
|
|
+ :style="`color:${record.ISPASS == '1' ? 'green' : 'red'};opacity:${(record.ISPASS === '1' || record.ISPASS === '0') ? '1' : '0'};`">
|
|
|
+ {{
|
|
|
+ record.ISPASS == '1' ? '通过' : record.ISPASS == '0' ? '不通过' : ''
|
|
|
+ }}
|
|
|
+ </a-tag>
|
|
|
+ </template>
|
|
|
<template #status="{ record }">
|
|
|
<a-tag :style="`color:${record.status === 3 || record.status === 3 ? 'red' : ''};`">
|
|
|
{{
|
|
|
@@ -285,11 +293,13 @@ export default defineComponent({
|
|
|
async function handleVliew(record: Recordable) {
|
|
|
//场景资源
|
|
|
if (current.value === 'ER') {
|
|
|
- window.open(`http://192.168.119.143:8080/onemapV5.0/sceneview.html?${record.SERVICEID}`, 'target', '');
|
|
|
+ // window.open(`http://192.168.119.143:8080/onemapV5.0/sceneview.html?${record.SERVICEID}`, 'target', '');
|
|
|
+ window.open(`./sceneview.html?${record.SERVICEID}`, 'target', '');
|
|
|
}
|
|
|
//地图资源
|
|
|
if (current.value === 'MR') {
|
|
|
- window.open(`http://192.168.119.143:8080/onemapV5.0/mapview.html?${record.SERVICEID}`, 'target', '');
|
|
|
+ // window.open(`http://192.168.119.143:8080/onemapV5.0/mapview.html?${record.SERVICEID}`, 'target', '');
|
|
|
+ window.open(`./mapview.html?${record.SERVICEID}`, 'target', '');
|
|
|
}
|
|
|
//地图资源
|
|
|
if (current.value === 'SR') {
|