新增大屏控制
This commit is contained in:
parent
75ffe4f6af
commit
5cb13ccc8a
@ -81,7 +81,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import Cache from '@/utils/cache';
|
import Cache from '@/utils/cache';
|
||||||
import mTabbar from '@/components/m-tabbar/m-tabbar.vue'
|
import mTabbar from '@/components/m-tabbar/m-tabbar.vue'
|
||||||
|
|
||||||
import zbpSwiper from '@/components/zbpSwiper'
|
import zbpSwiper from '@/components/zbpSwiper'
|
||||||
import {
|
import {
|
||||||
getArea,
|
getArea,
|
||||||
@ -118,7 +117,6 @@
|
|||||||
components: {
|
components: {
|
||||||
mTabbar,
|
mTabbar,
|
||||||
zbpSwiper
|
zbpSwiper
|
||||||
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -206,12 +204,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '大屏控制',
|
name: '大屏控制',
|
||||||
icon: '/static/applet/yz.png',
|
icon: '/static/applet/dp.png',
|
||||||
data: {
|
data: {
|
||||||
id: '__UNI__83ABA97',
|
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: [],
|
nowMenuList: [],
|
||||||
@ -360,6 +358,7 @@
|
|||||||
uni.setStorageSync('gatherNowMenuList', JSON.stringify(this.nowMenuList));
|
uni.setStorageSync('gatherNowMenuList', JSON.stringify(this.nowMenuList));
|
||||||
},
|
},
|
||||||
getUniMp(type, data) {
|
getUniMp(type, data) {
|
||||||
|
let that = this;
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 1:
|
case 1:
|
||||||
@ -369,12 +368,15 @@
|
|||||||
case 2:
|
case 2:
|
||||||
// this.navigator(data);
|
// this.navigator(data);
|
||||||
// uniMP.loadMPx(data);
|
// uniMP.loadMPx(data);
|
||||||
this.navigator(`/pages/moreProject/moreProject`);
|
that.navigator(`/pages/moreProject/moreProject`);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
uniMP.loadMPurl(data);
|
uniMP.loadMPurl(data);
|
||||||
break;
|
break;
|
||||||
|
case 4:
|
||||||
|
uniMP.loadMPdns(data);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
// #endif
|
// #endif
|
||||||
|
BIN
static/applet/dp.png
Normal file
BIN
static/applet/dp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 500 KiB |
@ -28,7 +28,7 @@ function compareVersions(version1, version2) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 加载小程序
|
// 加载供销小程序
|
||||||
const loadMP = async (id) => {
|
const loadMP = async (id) => {
|
||||||
appid = id;
|
appid = id;
|
||||||
let info = await getGXconfig();
|
let info = await getGXconfig();
|
||||||
@ -149,7 +149,7 @@ const loadMPx = async (id) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// 按URL加载小程序
|
// 按信息接口加载小程序
|
||||||
const loadMPurl = async (e) => {
|
const loadMPurl = async (e) => {
|
||||||
appid = e.id;
|
appid = e.id;
|
||||||
let FURL = e.url;
|
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) => {
|
const getVersion = (id) => {
|
||||||
appid = id;
|
appid = id;
|
||||||
@ -284,6 +327,7 @@ export default {
|
|||||||
loadMP,
|
loadMP,
|
||||||
loadMPurl,
|
loadMPurl,
|
||||||
loadMPx,
|
loadMPx,
|
||||||
|
loadMPdns,
|
||||||
installMP,
|
installMP,
|
||||||
doInstallMP,
|
doInstallMP,
|
||||||
getVersion,
|
getVersion,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user