Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/main/webapp/WEB-INF/manager/index.ftl
This commit is contained in:
sgjj 2020-08-17 17:27:14 +08:00
commit 50666ab097
1 changed files with 4 additions and 36 deletions

View File

@ -276,38 +276,7 @@
getAuthorization: function () { getAuthorization: function () {
}, },
subscribe: function () {
var h = this.$createElement
var that = this;
ms.http.get(
ms.manager + "/lic/info"
).then(function (res) {
that.$msgbox({
title: '关注公众号接收系统通知',
message: h('p', null, [h('el-image', {
attrs: {
src: 'http://www.meczj.com/wx/employee/qrCode?code=' + encodeURIComponent(res.data),
},
style: {
width: "80%",
height: "300px"
}
}
), h('el-alert', {
props: {
title: '一人一码,请确认当前登录用户信息再进行绑定,如果绑定错误,请取消关注 铭软 公众号再重新扫码绑定',
closable: false
},
}
)]),
showConfirmButton: false,
center: true
})
}).catch(function (err) {
console.log(err)
})
},
markMenu: function (title, icon) { markMenu: function (title, icon) {
var menu = { var menu = {
title: title, title: title,
@ -560,13 +529,12 @@
//获取登录用户信息 //获取登录用户信息
this.managerGet(); this.managerGet();
var that = this; var that = this;
ms.http.get(ms.manager + "/upgrader/sync.do").then(function (data) { ms.http.get(ms.manager + "/upgrader/sync.do").then(function (res) {
if (data.data.syncStoreUrl != undefined) { if (res.result) {
data.data.syncStoreUrl += "/#/?client=${client}"; res.data.syncStoreUrl += "/#/?client=${client}";
that.mstore = data.data; that.mstore = res.data;
} }
}) })
}, },
}) })
</script> </script>