Merge branch 'master' of https://git.flyfish.group/gaowk/saas-page-web
# Conflicts: # index.html
This commit is contained in:
commit
c5407b3070
32
index.html
32
index.html
@ -32,12 +32,14 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
|
// var ctx = 'http://192.168.26.198:3000';
|
||||||
|
var ctx = '/epi-project'
|
||||||
var app = new Vue({
|
var app = new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
data: {
|
data: {
|
||||||
tenantList: [],
|
tenantList: [],
|
||||||
selectedTenant: null,
|
selectedTenant: null,
|
||||||
|
isMiniProgram: false
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
selChange(tenant) {
|
selChange(tenant) {
|
||||||
@ -47,22 +49,28 @@
|
|||||||
opacity: 'toggle'
|
opacity: 'toggle'
|
||||||
})
|
})
|
||||||
localStorage.setItem('tenant', tenant.identifier);
|
localStorage.setItem('tenant', tenant.identifier);
|
||||||
|
if (this.isMiniProgram) {
|
||||||
wx.miniProgram.getEnv(function(res) {
|
wx.miniProgram.postMessage({
|
||||||
if (res.miniprogram) {
|
data: {
|
||||||
wx.miniProgram.postMessage({
|
tenant: tenant.identifier
|
||||||
data: {
|
}
|
||||||
tenant: tenant.identifier
|
})
|
||||||
}
|
} else {
|
||||||
})
|
// 跳转业务系统
|
||||||
}
|
location.href = '/'
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
fetch('http://192.168.26.198:3000/epi-project/tenants').then(r => r.json()).then(res => {
|
fetch(ctx + '/tenants').then(r => r.json()).then(res => {
|
||||||
this.tenantList = res.data;
|
this.tenantList = res.data;
|
||||||
})
|
})
|
||||||
|
if (!window.WeixinJSBridge || !WeixinJSBridge.invoke) {
|
||||||
|
document.addEventListener('WeixinJSBridgeReady', () => {
|
||||||
|
this.isMiniProgram = window.__wxjs_environment === 'miniprogram'
|
||||||
|
}, false)
|
||||||
|
}
|
||||||
|
this.isMiniProgram = window.__wxjs_environment === 'miniprogram'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user