Sfoglia il codice sorgente

码上举报

rongxin_dev
庞东旭 14 ore fa
parent
commit
42747dd74b
5 ha cambiato i file con 112 aggiunte e 0 eliminazioni
  1. BIN
      src/assets/images/sunVillage_info/index_code_btn_20.png
  2. BIN
      src/assets/images/sunVillage_info/msjb.jpeg
  3. +1
    -0
      src/permission.js
  4. +9
    -0
      src/router/index.js
  5. +102
    -0
      src/views/sunVillage_info/list_report.vue

BIN
src/assets/images/sunVillage_info/index_code_btn_20.png Vedi File

Prima Dopo
Larghezza: 355  |  Altezza: 134  |  Dimensione: 15 KiB

BIN
src/assets/images/sunVillage_info/msjb.jpeg Vedi File

Prima Dopo
Larghezza: 1200  |  Altezza: 1698  |  Dimensione: 638 KiB

+ 1
- 0
src/permission.js Vedi File

@@ -159,6 +159,7 @@ const whiteList = [
'/sunVillage_info/special_vote_detail',
'/sunVillage_info/list_finance_new',
'/sunVillage_info/list_finance_new_detail',
'/sunVillage_info/list_report',

// 新型经营主体
'newBusinessEntity/newsBulletin', //新闻公告


+ 9
- 0
src/router/index.js Vedi File

@@ -3804,6 +3804,15 @@ export const constantRoutes = [
},
component: (resolve) => require(['@/views/sunVillage_info/list_finance'], resolve)
},
{ ////阳光村务(新)-- 合同信息
path: '/sunVillage_info/list_report',
name: 'sunVillageInfoListReport',
meta: {
title: '码上举报',
hidden: true,
},
component: (resolve) => require(['@/views/sunVillage_info/list_report'], resolve)
},
{ ////阳光村务(新)-- 合同信息
path: '/sunVillage_info/list_issues',
name: 'sunVillageInfoListIssues',


+ 102
- 0
src/views/sunVillage_info/list_report.vue Vedi File

@@ -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>

Caricamento…
Annulla
Salva