# Conflicts:
#	index.html
This commit is contained in:
Gwk 2022-08-30 16:10:57 +08:00
commit c5407b3070
1 changed files with 20 additions and 12 deletions

View File

@ -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) {
if (res.miniprogram) {
wx.miniProgram.postMessage({ wx.miniProgram.postMessage({
data: { data: {
tenant: tenant.identifier 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'
} }
}) })