|
|
|
@@ -0,0 +1,102 @@ |
|
|
|
<template> |
|
|
|
<div class="home_wrapper"> |
|
|
|
<div |
|
|
|
class="header_main" |
|
|
|
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" |
|
|
|
> |
|
|
|
<p class="title">码上举报</p> |
|
|
|
<div class="return_btn" @click="onClickLeft"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<img src="@/assets/images/sunVillage_info/msjb.jpeg" width="100%" alt=""> |
|
|
|
|
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import {Dialog, Toast} from "vant"; |
|
|
|
import Cookies from "js-cookie"; |
|
|
|
import {listSiyigongkai, delSiyigongkai, listSiyigongkaiOpen} from "@/api/sunVillage_info/fixedAssets"; |
|
|
|
export default { |
|
|
|
name: "otherOpenList", |
|
|
|
data() { |
|
|
|
return { |
|
|
|
showBtn:true, |
|
|
|
}; |
|
|
|
}, |
|
|
|
created() { |
|
|
|
if (this.$route.query.type == 'code'){ |
|
|
|
this.showBtn = false; |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
.home_wrapper{ |
|
|
|
background: #e9e9e9; |
|
|
|
min-height: 100vh; |
|
|
|
width: 100vw; |
|
|
|
.header_main{ |
|
|
|
height: 116px; |
|
|
|
background: url('../../assets/images/sunVillage_info/list_head.png') no-repeat; |
|
|
|
background-size: 100% 100%; |
|
|
|
position: fixed; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
width: 100%; |
|
|
|
font-size: 36px; |
|
|
|
line-height: 116px; |
|
|
|
text-align: center; |
|
|
|
color: #fff; |
|
|
|
position: relative; |
|
|
|
.return_btn{ |
|
|
|
width: 24px; |
|
|
|
height: 43.2px; |
|
|
|
background: url('../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; |
|
|
|
background-size: 20px 36px; |
|
|
|
position: absolute; |
|
|
|
left: 38px; |
|
|
|
top: 36px; |
|
|
|
} |
|
|
|
.add_btn{ |
|
|
|
width: 56.4px; |
|
|
|
height: 40.8px; |
|
|
|
background: url('../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; |
|
|
|
background-size: 47px 34px; |
|
|
|
position: absolute; |
|
|
|
right: 38px; |
|
|
|
top: 36px; |
|
|
|
} |
|
|
|
|
|
|
|
.title { |
|
|
|
} |
|
|
|
/*.title::before {*/ |
|
|
|
/* display: inline-block;*/ |
|
|
|
/* width: 24px;*/ |
|
|
|
/* height: 24px;*/ |
|
|
|
/* content: '';*/ |
|
|
|
/* background-image: url('../../assets/images/icon/index_header_focus.png');*/ |
|
|
|
/* background-repeat: no-repeat;*/ |
|
|
|
/* background-size: contain;*/ |
|
|
|
/* margin-right: 0.2rem;*/ |
|
|
|
/* transform: rotate(*/ |
|
|
|
/* 180deg*/ |
|
|
|
/* );*/ |
|
|
|
/*}*/ |
|
|
|
/*.title::after {*/ |
|
|
|
/* width: 0.32rem;*/ |
|
|
|
/* height: 0.32rem;*/ |
|
|
|
/* display: inline-block;*/ |
|
|
|
/* content: '';*/ |
|
|
|
/* background-image: url('../../assets/images/icon/index_header_focus.png');*/ |
|
|
|
/* background-repeat: no-repeat;*/ |
|
|
|
/* background-size: contain;*/ |
|
|
|
/* margin-left: 0.2rem;*/ |
|
|
|
/*}*/ |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |