...
|
...
|
@@ -37,6 +37,13 @@ export default { |
|
|
},
|
|
|
setup(props, {attrs, slots, emit}) {
|
|
|
const {proxy} = Vue.getCurrentInstance();
|
|
|
let declaredToday=Vue.ref(0);
|
|
|
let reportableToday=Vue.ref(0);
|
|
|
let declaredMonth=Vue.ref(0);
|
|
|
let reportableMonth=Vue.ref(0);
|
|
|
|
|
|
|
|
|
|
|
|
// 挂载完
|
|
|
Vue.onMounted(() => {
|
|
|
//本月应申报及申报率
|
...
|
...
|
@@ -181,8 +188,8 @@ export default { |
|
|
}
|
|
|
}
|
|
|
const goJump=()=>{
|
|
|
// proxy.$router.push({path:'/zj/dp',query: {access_token:localStorage.getItem('access_token')}})
|
|
|
window.open(window.location.origin + '/vue3/index.html#/zj/dp?access_token=' + localStorage.getItem("access_token"));
|
|
|
proxy.$router.push({path:'/zj/dp',query: {access_token:localStorage.getItem('access_token'),msgKey: true}})
|
|
|
// window.open(window.location.origin + '/vue3/index.html#/zj/dp?access_token=' + localStorage.getItem("access_token"));
|
|
|
}
|
|
|
|
|
|
return{
|
...
|
...
|
@@ -190,7 +197,11 @@ export default { |
|
|
eleWidthNum,
|
|
|
getDeclareData,
|
|
|
startInterval,
|
|
|
goJump
|
|
|
goJump,
|
|
|
declaredToday,
|
|
|
reportableToday,
|
|
|
declaredMonth,
|
|
|
reportableMonth
|
|
|
}
|
|
|
},
|
|
|
unmounted () {
|
...
|
...
|
|