|
@@ -22,7 +22,7 @@
|
|
|
<router-view></router-view>
|
|
|
<el-dialog
|
|
|
title="计划完成项目时间提醒"
|
|
|
- :visible.sync="$store.state.NotifyDig && $route.path != '/Closingstatement1' && $route.path!='/projectPrint'"
|
|
|
+ :visible.sync="showNotifyDig "
|
|
|
width="60%"
|
|
|
class="pageSubmitData"
|
|
|
>
|
|
@@ -131,6 +131,16 @@ export default {
|
|
|
data() {
|
|
|
return {};
|
|
|
},
|
|
|
+ computed:{
|
|
|
+ showNotifyDig:{
|
|
|
+ get(){
|
|
|
+ return (this.$route.path != '/Closingstatement1' && this.$route.path!='/projectPrint' && this.$store.state.NotifyDig);
|
|
|
+ },
|
|
|
+ set(newValue){
|
|
|
+ this.$store.commit("update",["NotifyDig", newValue])
|
|
|
+ },
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
homeExit() {
|
|
|
window.location.href = "http://10.16.30.130/sso/caslogout.jsp";
|