新增大屏控制

This commit is contained in:
weipengfei 2023-10-16 14:48:56 +08:00
parent 75ffe4f6af
commit 5cb13ccc8a
3 changed files with 54 additions and 8 deletions

View File

@ -81,7 +81,6 @@
<script>
import Cache from '@/utils/cache';
import mTabbar from '@/components/m-tabbar/m-tabbar.vue'
import zbpSwiper from '@/components/zbpSwiper'
import {
getArea,
@ -118,7 +117,6 @@
components: {
mTabbar,
zbpSwiper
},
data() {
return {
@ -206,12 +204,12 @@
},
{
name: '大屏控制',
icon: '/static/applet/yz.png',
icon: '/static/applet/dp.png',
data: {
id: '__UNI__83ABA97',
url: 'https://ceshi-worker-task.lihaink.cn/uploads/files/20231016/20231016112144fac6d9128.wgt,
url: 'https://ceshi-worker-task.lihaink.cn/uploads/files/20231016/20231016112144fac6d9128.wgt',
},
type: 3,
type: 4,
}
],
nowMenuList: [],
@ -360,6 +358,7 @@
uni.setStorageSync('gatherNowMenuList', JSON.stringify(this.nowMenuList));
},
getUniMp(type, data) {
let that = this;
// #ifdef APP-PLUS
switch (type) {
case 1:
@ -369,12 +368,15 @@
case 2:
// this.navigator(data);
// uniMP.loadMPx(data);
this.navigator(`/pages/moreProject/moreProject`);
that.navigator(`/pages/moreProject/moreProject`);
break;
case 3:
uniMP.loadMPurl(data);
break;
case 4:
uniMP.loadMPdns(data);
break;
}
return;
// #endif

BIN
static/applet/dp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 KiB

View File

@ -28,7 +28,7 @@ function compareVersions(version1, version2) {
return 0;
}
// 加载小程序
// 加载供销小程序
const loadMP = async (id) => {
appid = id;
let info = await getGXconfig();
@ -149,7 +149,7 @@ const loadMPx = async (id) => {
});
};
// 按URL加载小程序
// 按信息接口加载小程序
const loadMPurl = async (e) => {
appid = e.id;
let FURL = e.url;
@ -216,6 +216,49 @@ const loadMPurl = async (e) => {
};
// 按远程文件地址加载小程序
const loadMPdns = async (e) => {
appid = e.id;
let FURL = e.url;
uni.showLoading({
title: '初始化中...',
mask: true
})
let count = 0;
timer = setInterval(() => {
if (count < 100) uni.showLoading({
title: `初始化中... ${count}%`,
mask: true
})
else uni.showLoading({
title: '初始化中...100%',
mask: true
})
}, 600)
let downloadTask = uni.downloadFile({
url: FURL,
success(res) {
wgtFile = res.tempFilePath;
console.log('初始化完成', wgtFile);
installMP();
},
fail(res) {
clearInterval(timer);
timer = null;
uni.hideLoading();
}
});
downloadTask.onProgressUpdate((res) => {
// console.log('初始化进度' + res.progress);
if (res.progress > count) count += 10;
if (count >= 90) {
clearInterval(timer);
timer = null;
}
});
};
// 小程序版本信息
const getVersion = (id) => {
appid = id;
@ -284,6 +327,7 @@ export default {
loadMP,
loadMPurl,
loadMPx,
loadMPdns,
installMP,
doInstallMP,
getVersion,