|
|
|
@ -33,9 +33,15 @@ const props = defineProps({ |
|
|
|
groupKey:{ |
|
|
|
type:String, |
|
|
|
default:"" |
|
|
|
}, |
|
|
|
pickAppInfo:{ |
|
|
|
type:Object, |
|
|
|
default(){ |
|
|
|
return {} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
const emits = defineEmits(["update:isShow","update:svgName","refreshPage"]); |
|
|
|
const emits = defineEmits(["update:isShow","update:svgName","refreshPage","accessapp"]); |
|
|
|
const squareUrl = 'https://cube.elemecdn.com/9/c2/f0ee8a3c7c9638a54940382568c9dpng.png' |
|
|
|
const drawerOpenOrClose = ref(false) |
|
|
|
const tabsActive = ref(1) |
|
|
|
@ -160,6 +166,15 @@ watch(()=>tabsActive.value,(val:number)=>{ |
|
|
|
openAppPageInit.value.gainAppFormPageInit() |
|
|
|
} |
|
|
|
}) |
|
|
|
/** |
|
|
|
@ 作者: 秦东 |
|
|
|
@ 时间: 2024-06-28 08:46:12 |
|
|
|
@ 功能: 访问前端页面 |
|
|
|
*/ |
|
|
|
const accessRunApp = () =>{ |
|
|
|
closeAppDraw() |
|
|
|
emits("accessapp",props.pickAppInfo) |
|
|
|
} |
|
|
|
</script> |
|
|
|
<template> |
|
|
|
<div class="drawerClass"> |
|
|
|
@ -189,7 +204,7 @@ watch(()=>tabsActive.value,(val:number)=>{ |
|
|
|
</el-tabs> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<el-button plain size="small">访问</el-button> |
|
|
|
<el-button plain size="small" @click="accessRunApp">访问</el-button> |
|
|
|
<el-button type="danger" size="small" @click="closeAppDraw">关闭</el-button> |
|
|
|
</div> |
|
|
|
</el-header> |
|
|
|
|