Browse Source

完成应用最小化后的恢复

master
Poised_flw 4 years ago
parent
commit
a027b58ea5
  1. 465
      src/components/Footer.vue
  2. 12
      src/tis/layouts/LoginContainer.vue

465
src/components/Footer.vue
File diff suppressed because it is too large
View File

12
src/tis/layouts/LoginContainer.vue

@ -10,13 +10,17 @@ export default {
Login() {
return this.$tis.layouts.Login;
},
deviceType(){
deviceType() {
return this.$tis.getDeviceType();
},
visible() {
return !!this.Login && this.$tis.isVisibleWidgetsLoginPanel() && !this.$tis.openFullScreenAppId();
},
},
return (
!!this.Login &&
this.$tis.isVisibleWidgetsLoginPanel() &&
!this.$tis.openFullScreenAppId()
);
}
}
};
</script>

Loading…
Cancel
Save