|
@@ -9,19 +9,16 @@ function toChannelIndex(index, callback) {
|
|
|
const route_util = require('../route_util');
|
|
|
const route_constant = require('../route_constant');
|
|
|
var isLogin = pages[0].getIsLogin();
|
|
|
- console.log("gadsfadsfadsfa==222==");
|
|
|
if (!isLogin) {
|
|
|
route_util.jump(route_constant.login);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- console.log("gadsfadsfadsfa==333==");
|
|
|
var actionIndex = pages[0].getActionIndex();
|
|
|
if (actionIndex != null && index == actionIndex) {
|
|
|
return;
|
|
|
};
|
|
|
|
|
|
- console.log("gadsfadsfadsfa==444==");
|
|
|
var deviceList = pages[0].getDeviceList();
|
|
|
var deviceListSelect = pages[0].getDeviceListSelect();
|
|
|
if (deviceListSelect === null || deviceList.length <= deviceListSelect) {
|
|
@@ -32,10 +29,8 @@ function toChannelIndex(index, callback) {
|
|
|
return;
|
|
|
};
|
|
|
|
|
|
- console.log("gadsfadsfadsfa==555==");
|
|
|
callback(index);
|
|
|
|
|
|
- console.log("gadsfadsfadsfa==666==");
|
|
|
const app = getApp();
|
|
|
const lexin_util = require('../lexin/util');
|
|
|
var channelData = pages[0].getChannelData();
|
|
@@ -47,10 +42,11 @@ function toChannelIndex(index, callback) {
|
|
|
var is_debug = app.globalData.is_debug;
|
|
|
|
|
|
var deviceId = deviceList[deviceListSelect].deviceId;
|
|
|
+ /// 933625
|
|
|
const other = {
|
|
|
"url": "",
|
|
|
"media_data": "",
|
|
|
- "user_id": deviceUid,
|
|
|
+ "user_id": "933625",
|
|
|
"timestamp": timestamp,
|
|
|
"channel_id": channel_id,
|
|
|
"order": "",
|
|
@@ -60,15 +56,17 @@ function toChannelIndex(index, callback) {
|
|
|
"is_debug": is_debug,
|
|
|
};
|
|
|
|
|
|
- //other: {"url":"","media_data":"","user_id":1,"timestamp":1734423952,"channel_id":4,"order":"","resource_from":"","songAlbumID":"","version":3,"is_debug":2}
|
|
|
+ // {"url":"","media_data":"","user_id":"1","timestamp":1739514803,"channel_id":2,"order":"","resource_from":"","songAlbumID":"","version":3,"is_debug":1}
|
|
|
+
|
|
|
+ // 发送设备数据:true,/AIrSMArT_210052356337/user/sub_control, {"DstDeviceName":"AIrSMArT_210052356337","SrcDeviceName":"ALY_933625_Android","type":"play",
|
|
|
+ // "user_id":"933625","other"{"url":"","media_data":"","user_id":"933625","timestamp":"1726129883",
|
|
|
+ // "channel_id":9,"resource_from":"","categoryId":"","sort":0,"order":"2","version":3,"is_debug":1}}
|
|
|
//deviceMacId: AIrSMArT_7cdfa1fd3af0
|
|
|
var deviceMacId = lexin_util.getDeviceMacId(deviceId);
|
|
|
- console.log("gadsfadsfadsfa==777==" + deviceMacId);
|
|
|
- console.log("gadsfadsfadsfa==888==" + JSON.stringify(other));
|
|
|
app.PubMsg({
|
|
|
type: "play",
|
|
|
DstDeviceName: deviceMacId,
|
|
|
- other
|
|
|
+ other: other
|
|
|
});
|
|
|
};
|
|
|
|