2022-06-08 14:51:11 +08:00

45 lines
1.0 KiB
Vue

<template>
<vue-scroll class="planTemplate">
<img v-if="dialogVisible" src="@/assets/images/firmNotice/xxkc.png" @click="btn(1)" class="left_img"/>
<!-- <img v-if="!dialogVisible" src="@/assets/images/firmNotice/qyfw_details.png" @click="btn(2)" class="right_img"/> -->
</vue-scroll>
</template>
<script>
export default {
data(){
return{
dialogVisible:true,
dialogImageUrl:'',
}
},
methods:{
btn(type){
if(type==1){
// this.dialogVisible=false
}else if(type==2){
// this.dialogVisible=true
}
}
}
}
</script>
<style lang="less" scoped>
.planTemplate{
width: 100%;
height: 100%;
box-sizing: border-box;
background: #fff;
.left_img{
width: 100%;
cursor: pointer;
}
.right_img{
width: 100%;
height: 100%;
cursor: pointer;
}
/deep/ .el-dialog__body{
padding: 0 !important;
}
}
</style>