phizclip-uniapp-demo/finclip-uniapp-test/pages/index/index.vue

130 lines
3.4 KiB
Vue
Raw Normal View History

2022-06-08 11:57:35 +08:00
<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<button type="primary" v-on:click="handleOpenMiniProgram">打开小程序</button>
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleOpenMiniProgramByQrcode">二维码打开小程序</button>
2022-11-04 22:26:55 +08:00
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleFinishMiniProgram">结束小程序</button>
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleFinishAllMiniProgram">结束所有小程序</button>
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleSendMessageToMiniProgram">发送信息小程序</button>
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleGetMiniProgramInfo">获前小程序信息</button>
<view class="padding-gap"></view>
<button type="primary" v-on:click="handleSearchMiniProgram">搜索小程序</button>
2022-06-08 11:57:35 +08:00
</view>
</template>
<script>
const MopSdk = uni.requireNativePlugin('MopSdk');
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
handleOpenMiniProgram() {
const apiServer = 'https://api.finclip.com'
2022-10-19 12:51:03 +08:00
const appId = '62566cbd3eb8ce0001b7761c'
2022-06-08 11:57:35 +08:00
const startParams = null
// const startParams = {
// path: '/pages/index/index',
// query: 'a=1&b=2'
// }
const sequence = null // 小程序的上架序列号
2022-11-04 22:26:55 +08:00
const isSingleton = false //安卓单任栈()
2022-10-19 12:51:03 +08:00
MopSdk.openApplet({apiServer,
appId,
startParams,
sequence,
isSingleton})
2022-06-08 11:57:35 +08:00
},
handleOpenMiniProgramByQrcode() {
uni.scanCode({
success: (result) => {
console.log(result)
2022-10-19 12:51:03 +08:00
const qrCode = result.result
const isSingleton = false
MopSdk.openAppletByQrcode({qrCode,isSingleton},
2022-06-08 11:57:35 +08:00
(ret) => {
console.log('onSuccess',ret)
},
(ret) => {
console.log('onFail',ret)
},
(ret) => {
console.log('onProcess',ret)
})
}
2022-11-04 22:26:55 +08:00
})
},
handleFinishMiniProgram(){
MopSdk.finishRunningApplet('62566cbd3eb8ce0001b7761c')
},
handleFinishAllMiniProgram(){
MopSdk.finishAllRunningApplets()
},
handleSendMessageToMiniProgram(){
MopSdk.currentAppletId((res) => {
console.log('当前小程序appId:',res.currentAppletId)
// MopSdk.sendCustomEvent(res.currentAppletId,{
// message: 'this is test'
// })
MopSdk.sendCustomEventToAll({
message: 'this is test'
})
})
},
handleGetMiniProgramInfo() {
MopSdk.currentApplet((res) => {
console.log('当前小程序信息',res)
})
},
handleSearchMiniProgram() {
MopSdk.seachApplets({
apiServer: 'https://api.finclip.com',
text: '测试'
},(res) => {
console.log('搜索小程序结果',res)
2022-06-08 11:57:35 +08:00
})
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.padding-gap {
height: 30rpx;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>