|
|
@@ -27,7 +27,13 @@ export default {
|
|
|
// 设置可见性
|
|
|
setBackupVisible: function (backupVisible) {
|
|
|
var userId = Cookies.get("user");
|
|
|
- let url = this.global.h5BaseUrl + "/#/pages/register/register?id=" + userId;
|
|
|
+ let url=''
|
|
|
+ if(JSON.parse(localStorage.getItem('user_data')).roleId=='19'){
|
|
|
+ url = this.global.h5BaseUrl + "/#/pages/register/orderissuer?id=" + userId;
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ url = this.global.h5BaseUrl + "/#/pages/register/register?id=" + userId;
|
|
|
+ }
|
|
|
this.backupVisible = backupVisible
|
|
|
this.$nextTick(() => {
|
|
|
this.creatQrCode(url);
|