Commit 485e8e18 by huaying

Merge branch 'feature/act-code' into dev

parents 528a5017 2bbc2db6
......@@ -77,7 +77,11 @@ export default {
*/
toLogin() {
const that = this;
const href = `${window.location.origin}/haoban-manage3-web/gic-login?wxEnterpriseId=${that.enterpriseList[that.active].wxEnterpriseId}&random=${that.$route.query.random}`;
const { random, hbPage } = this.$route.query;
let href = `${window.location.origin}/haoban-manage3-web/gic-login?wxEnterpriseId=${that.enterpriseList[that.active].wxEnterpriseId}&random=${random}`;
if (hbPage) {
href = `${window.location.origin}/haoban-manage3-web/gic-login?wxEnterpriseId=${that.enterpriseList[that.active].wxEnterpriseId}&random=${random}&staffActCode=${hbPage}`;
}
window.location.href = href;
},
changeEnterprise(val) {
......
......@@ -193,7 +193,7 @@ export default {
startTime: '',
endTime: '',
orderByField: 'createTime desc',
hmGroupId: 0
hmGroupId: ''
},
storeSelect: 1,
dateTime: [],
......
......@@ -222,7 +222,7 @@ export default {
{
groupName: '全部分组',
referNum: '',
groupId: null
groupId: ''
}
];
this.groupList[0].referNum = countNum.data.result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment