diff --git a/public/images/common/uploading.svg b/public/images/common/uploading.svg
new file mode 100644
index 000000000..7dc360d0e
--- /dev/null
+++ b/public/images/common/uploading.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/assets/js/components/RightBottom.vue b/resources/assets/js/components/RightBottom.vue
index 9d78ef336..fd4f395c5 100644
--- a/resources/assets/js/components/RightBottom.vue
+++ b/resources/assets/js/components/RightBottom.vue
@@ -95,6 +95,9 @@ export default {
if (show) {
this.updateBottomShow = true
}
+ },
+ downloadUrl(val){
+ this.$store.state.clientDownloadUrl = val
}
},
@@ -108,7 +111,7 @@ export default {
},
showDown() {
- return !this.$isEEUiApp && !this.windowTouch && ['login', 'index', 'manage-dashboard'].includes(this.$route.name)
+ return !this.$isEEUiApp && !this.windowTouch && ['login', 'index'].includes(this.$route.name)
},
showPrivacy() {
diff --git a/resources/assets/js/pages/manage.vue b/resources/assets/js/pages/manage.vue
index 0e520e350..ce8d02fe8 100644
--- a/resources/assets/js/pages/manage.vue
+++ b/resources/assets/js/pages/manage.vue
@@ -125,6 +125,18 @@
+ -
+
+
+
+
+
+
+
+
![]()
+
+
+
-
@@ -398,6 +410,7 @@ export default {
'wsMsg',
'clientNewVersion',
+ 'clientDownloadUrl',
'cacheTaskBrowse',
'dialogIns',
diff --git a/resources/assets/js/store/state.js b/resources/assets/js/store/state.js
index 772b60e3b..fe8b1f7b6 100644
--- a/resources/assets/js/store/state.js
+++ b/resources/assets/js/store/state.js
@@ -182,6 +182,7 @@ export default {
// 客户端新版本号
clientNewVersion: null,
+ clientDownloadUrl: null,
// 预览图片
previewImageIndex: 0,
diff --git a/resources/assets/sass/pages/page-manage.scss b/resources/assets/sass/pages/page-manage.scss
index 2d0922e0f..daee8d73c 100644
--- a/resources/assets/sass/pages/page-manage.scss
+++ b/resources/assets/sass/pages/page-manage.scss
@@ -268,6 +268,25 @@
color: #8FCE78;
}
}
+ .client-download .ivu-icon-md-download,.client-update{
+ font-size: 20px;
+ padding: 6px;
+ cursor: pointer;
+ border-radius: 8px;
+ background-color: #8FCE78;
+ color: #ffffff;
+ margin-bottom: 10px;
+ }
+ .client-update{
+ width: 32px;
+ height: 32px;
+ line-height: 38px;
+ padding: 0px;
+ img{
+ line-height: 0;
+ width: 18px;
+ }
+ }
}
}
.manage-box-new {
diff --git a/resources/assets/statics/public/images/common/uploading.svg b/resources/assets/statics/public/images/common/uploading.svg
new file mode 100644
index 000000000..7dc360d0e
--- /dev/null
+++ b/resources/assets/statics/public/images/common/uploading.svg
@@ -0,0 +1 @@
+
\ No newline at end of file