Authored by 王涛

Merge branch 'master-v32-lushangqing' into 'master'

大屏首页添加按钮跳转到电子税务局大屏



See merge request !131
... ... @@ -18,8 +18,9 @@
background-image: url("/vue3/src/assets/images/zjdp/declare-title.png");
background-position: center;
background-repeat: no-repeat;
margin-top:15px;
height: 53px;
background-size: 100%;
flex:1;
}
.total-title{
margin-right: 10px;
... ... @@ -108,4 +109,16 @@
}
.num-net{
color:#e5abd1;
}
.jump{
display: flex;
justify-content: space-around;
align-items: center;
margin-top: 15px;
}
.img-link{
/*width: 42px;*/
height: 47px;
margin-right:2px;
cursor: pointer;
}
\ No newline at end of file
... ...
<div class="declare-container" id="declare">
<!--今日申报-->
<div class="declare-left">
<div class="declare-total">
<span class="total-title">本月应申报</span>
<span class="total-num">{{reportable}}</span>
<div class="jump">
<img @click="goJump" src="/vue3/src/assets/images/zjdp/icon-link.png" class="img-link">
<div class="declare-total">
<span class="total-title">本月应申报</span>
<span class="total-num">{{reportable}}</span>
</div>
</div>
<div class="declaration-rate">
<span class="rate-title">本月申报率</span>
<span class="proportion-bar">
... ...
... ... @@ -180,12 +180,16 @@ export default {
return intPartFormat
}
}
const goJump=()=>{
proxy.$router.push({path:'/zj/dp',query: {access_token:localStorage.getItem('access_token')}})
}
return{
numberFilter,
eleWidthNum,
getDeclareData,
startInterval
startInterval,
goJump
}
},
unmounted () {
... ...