diff --git a/yudao-ui-admin/src/views/infra/config/index.vue b/yudao-ui-admin/src/views/infra/config/index.vue
index 6ec5ac0b2..2b88220bb 100644
--- a/yudao-ui-admin/src/views/infra/config/index.vue
+++ b/yudao-ui-admin/src/views/infra/config/index.vue
@@ -55,7 +55,7 @@
{{ scope.row.visible ? '是' : '否' }}
-
+
{{ parseTime(scope.row.createTime) }}
@@ -74,7 +74,7 @@
-
+
@@ -95,7 +95,8 @@
-
+
+
@@ -104,6 +104,11 @@
},
methods: {
+ onLinkUserPrivacy(){
+ uni.navigateTo({
+ url: '/pages/users/privacy/index'
+ })
+ },
async getLogoImage() {
let that = this;
getLogo().then(res => {
diff --git a/yudao-ui-app/pages/users/privacy/index.vue b/yudao-ui-app/pages/users/privacy/index.vue
index 1c8570245..ce50dd0dd 100644
--- a/yudao-ui-app/pages/users/privacy/index.vue
+++ b/yudao-ui-app/pages/users/privacy/index.vue
@@ -1,5 +1,6 @@
+
@@ -25,9 +26,9 @@
},
mounted() {
getUserAgreement().then(res => {
- this.content = res.data.content
+ this.content = res.data
}).catch(err => {
- that.$util.Tips({
+ this.$util.Tips({
title: err.msg
});
})
diff --git a/yudao-ui-app/static/images/money_look.png b/yudao-ui-app/static/images/money_look.png
new file mode 100644
index 000000000..6f3b24f59
Binary files /dev/null and b/yudao-ui-app/static/images/money_look.png differ
diff --git a/yudao-ui-app/static/images/rule.png b/yudao-ui-app/static/images/rule.png
new file mode 100644
index 000000000..02b0e0305
Binary files /dev/null and b/yudao-ui-app/static/images/rule.png differ
diff --git a/yudao-ui-app/utils/request.js b/yudao-ui-app/utils/request.js
index 152718363..2f2c0eb28 100644
--- a/yudao-ui-app/utils/request.js
+++ b/yudao-ui-app/utils/request.js
@@ -6,7 +6,8 @@ import {
} from '@/config/app';
import {
toLogin,
- checkLogin
+ checkLogin,
+ isWhiteList
} from '../libs/login';
import store from '../store';
@@ -25,7 +26,7 @@ function baseRequest(url, method, data, {
header['tenant-id'] = store.state.app.tenantId
if (!noAuth) {
//登录过期自动登录
- if (!store.state.app.token && !checkLogin()) {
+ if (!store.state.app.token && !checkLogin() && !isWhiteList()) {
toLogin();
return Promise.reject({
msg: '未登录'