|
@@ -69,6 +69,11 @@ Page({
|
|
|
|
|
|
activeTab: 0,
|
|
|
menuList: [
|
|
|
+ /*{
|
|
|
+ name: 'web-view',
|
|
|
+ id: -1,
|
|
|
+ ampe_params: []
|
|
|
+ },*/
|
|
|
{
|
|
|
name: '系统信息',
|
|
|
id: 0,
|
|
@@ -822,6 +827,74 @@ Page({
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ name: '扬声器',
|
|
|
+ id: 20,
|
|
|
+ ampe_params: [
|
|
|
+ {
|
|
|
+ name: '获取扬声器音量',
|
|
|
+ aromeCode: "",
|
|
|
+ number: "R1",
|
|
|
+ initParams: {
|
|
|
+ "action": "loudspeaker",
|
|
|
+ "event": "get",
|
|
|
+ "taskId": "R1",
|
|
|
+ "params": {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ name: '设置扬声器音量',
|
|
|
+ aromeCode: "",
|
|
|
+ number: "R1",
|
|
|
+ initParams: {
|
|
|
+ "action": "loudspeaker",
|
|
|
+ "event": "set",
|
|
|
+ "taskId": "R1",
|
|
|
+ "params": {
|
|
|
+ "volume": "0.95"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ name: '获取缓存文件列表',
|
|
|
+ aromeCode: "",
|
|
|
+ number: "z1",
|
|
|
+ initParams: {
|
|
|
+ "action": "storage",
|
|
|
+ "event": "get",
|
|
|
+ "taskId": "z1",
|
|
|
+ "params": {}
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ name: '缓存文件',
|
|
|
+ aromeCode: "",
|
|
|
+ number: "z2",
|
|
|
+ initParams: {
|
|
|
+ "action": "storage",
|
|
|
+ "event": "set",
|
|
|
+ "taskId": "z2",
|
|
|
+ "params": {
|
|
|
+ fileName: "夏伟浩.mp4",
|
|
|
+ fileUrl: "https://wallpaper-static.cheetahfun.com/wallpaper/sites/dynamics/vm5.mp4"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ name: '移除缓存文件',
|
|
|
+ aromeCode: "",
|
|
|
+ number: "z3",
|
|
|
+ initParams: {
|
|
|
+ "action": "storage",
|
|
|
+ "event": "remove",
|
|
|
+ "taskId": "z3",
|
|
|
+ "params": {
|
|
|
+ fileName: "夏伟浩",
|
|
|
+ fileType: ".mp4",
|
|
|
+ path: "/storage/emulated/0/Download/夏伟浩.mp4"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
// {
|
|
|
// name: '附件上传',
|
|
|
// id: 19,
|
|
@@ -1132,6 +1205,33 @@ Page({
|
|
|
});
|
|
|
}*/
|
|
|
},
|
|
|
+ goToWebView() {
|
|
|
+ // my.getLocation({
|
|
|
+ // type: 1, // 获取经纬度和省市区县数据
|
|
|
+ // success: (res) => {
|
|
|
+ // console.log(res);
|
|
|
+ // my.showModal({
|
|
|
+ // title: '提示',
|
|
|
+ // content: res && JSON.stringify(res),
|
|
|
+ // success: function(res) {
|
|
|
+ // console.log(res);
|
|
|
+ // },
|
|
|
+ // fail: function(err) {
|
|
|
+ // console.log(err);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // },
|
|
|
+ // fail: (error) => {
|
|
|
+ // console.error('定位失败: ', JSON.stringify(error));
|
|
|
+ // },
|
|
|
+ // complete: (res) => {
|
|
|
+ // console.log(res);
|
|
|
+ // },
|
|
|
+ // });
|
|
|
+ my.navigateTo({
|
|
|
+ url: '/pages/digitalHumans/digitalHumans'
|
|
|
+ })
|
|
|
+ },
|
|
|
onReady() {
|
|
|
// 页面加载完成
|
|
|
},
|