流程改版

This commit is contained in:
17792275749
2025-05-29 08:45:04 +08:00
parent ba54f14735
commit f9c22f1da4
83 changed files with 1831 additions and 2603 deletions
+187
View File
@@ -0,0 +1,187 @@
const ppScale = getApp().globalData.ppScale;
import $ from "../../utils/request";
Page({
data: {
progress: {
index: 0,
data: ['配置蓝牙', '初始化用户信息', '配备网络', '完成']
},
progressNext: false,
device: null
},
onLoad() {
ppScale.plugin.bus.subscribe("devicesModel", (res) => {
console.log("searchDevice ===》devicesModel", res);
ppScale.device.mac = res.deviceMac;
ppScale.plugin.bus.subscribe("deviceConnect", (res) => {
console.log('connectedDevice ===》deviceConnect', res);
ppScale.plugin.ScaleAction.startDataProgress(true);
ppScale.activeProtocol = ppScale.plugin.ScaleAction.getActiveProtocol();
ppScale.activeProtocol.codeUpdateMTU((res) => {
console.log("connectedDevice ===》codeUpdateMTU", res);
ppScale.activeProtocol.codeFetchBindingState((res) => {
console.log("connectedDevice ===》codeFetchBindingState", res);
wx.hideLoading();
if (res === 1) {
wx.showModal({
title: '提示',
content: '当前设备已被绑定,你确定要覆盖绑定吗?',
success: (res) => {
if (res.confirm) {
wx.showLoading({
title: "正在初始化设备...",
mask: true
});
ppScale.activeProtocol.codeClearDeviceData("00", (res) => {
console.log("deviceInfo === codeClearDeviceData", res);
wx.hideLoading();
if(res === 0) {
let scaleDeviceId = ppScale.device.mac.replace(/:/g, '');
let params = {
equipmentCode: scaleDeviceId,
};
$.ajax("weighingScale/del/device", params, "POST", true, "正在初始化设备...").then(res => {
wx.showToast({
icon: "none",
title: "设备初始化成功,请重新绑定。",
})
// device.list = [];
// device.mac = null;
let pages = getCurrentPages();
let prevPage = pages[pages.length - 2];
prevPage.setData({
getDeviceSetting: true
})
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500);
});
} else {
wx.showToast({
icon: "none",
title: "设备初始化失败。",
})
}
})
} else if (res.cancel) {
// device.mac = null;
ppScale.plugin.Blue.disconnect();
}
}
})
} else {
ppScale.device.name = this.data.device.name;
ppScale.device.connection = this.data.device;
if(this.data.progressNext) {
let scaleDeviceId = ppScale.device.mac.replace(/:/g, '');
let params = {
sn: scaleDeviceId,
};
$.ajax("weighingScale/getUserInfoBySn", params, "GET", true, "正在同步用户信息...").then(res => {
if(res.result) {
wx.setStorageSync("userInfo", res.result);
this.setProgress();
} else {
wx.removeStorageSync("userInfo");
wx.showToast({
title: "暂无用户信息,请手动补充",
icon: "none"
})
setTimeout(() => {
this.setProgress();
}, 1500)
}
}).catch(() => {
wx.showToast({
title: "用户信息同步失败,请手动补充",
icon: "none"
})
setTimeout(() => {
this.setProgress();
}, 1500)
})
}
}
})
});
});
});
},
// 选择了某个设备
deviceChange(e) {
let status = e.detail.status;
if(status) {
wx.showLoading({
title: "蓝牙配对中...",
mask: true
});
this.setData({
progressNext: true
})
let device = e.detail.device;
this.connectedDevice_(device);
}
},
connectedDevice(e) {
wx.showLoading({
title: "正在尝试连接...",
mask: true
});
this.setData({
progressNext: false
})
let device = e.detail.device;
this.connectedDevice_(device);
},
connectedDevice_(device) {
if(device) {
this.setData({
device: device
})
ppScale.plugin.Blue.createBLEConnection(device);
}
},
setDeviceUserInfo(e) {
this.setData({
progressNext: true
})
let status = e.detail.status;
if(status) {
this.setProgress();
}
},
setDeviceConfig(e) {
let status = e.detail.status;
if(status) {
this.setProgress();
}
},
setConfigSuccessful() {
wx.switchTab({
url: "/pages/home/home"
})
},
setProgress() {
this.setData({
["progress.index"]: this.data.progress.index + 1
})
}
})
@@ -0,0 +1,10 @@
{
"usingComponents": {
"configureDevice1": "/components/configureDevice_1/configureDevice_1",
"configureDevice2": "/components/configureDevice_2/configureDevice_2",
"configureDevice3": "/components/configureDevice_3/configureDevice_3",
"configureDevice4": "/components/configureDevice_4/configureDevice_4"
},
"navigationBarTitleText": "配置蓝牙",
"disableScroll": true
}
@@ -0,0 +1,27 @@
<view class="configureDevice">
<view class="progress">
<block wx:for="{{progress.data}}" wx:key="index">
<view class="progressList">
<view style="background-color: {{progress.index >= index ? '#BFDEFD' : '#C1DFFE'}};">
<view style="height: {{progress.index >= index ? '24rpx' : '40rpx'}};width: {{progress.index >= index ? '24rpx' : '40rpx'}};background-color: {{progress.index >= index ? '#3194FB' : '#77849E'}};">{{progress.index >= index ? '' : index + 1}}</view>
</view>
<view class="{{progress.index >= index ? 'active' : ''}}">{{item}}</view>
</view>
</block>
</view>
<view class="content">
<block wx:if="{{progress.index === 0}}">
<configureDevice1 bind:deviceEvent="deviceChange"></configureDevice1>
</block>
<block wx:if="{{progress.index === 1}}">
<configureDevice2 bind:deviceEvent="setDeviceUserInfo" bind:connectedDeviceEvent="connectedDevice"></configureDevice2>
</block>
<block wx:if="{{progress.index === 2}}">
<configureDevice3 bind:deviceEvent="setDeviceConfig"></configureDevice3>
</block>
<block wx:if="{{progress.index === 3}}">
<configureDevice4 bind:deviceEvent="setConfigSuccessful"></configureDevice4>
</block>
</view>
</view>
@@ -0,0 +1,82 @@
.configureDevice {
width: 100%;
height: 100%;
position: relative;
padding: 0 30rpx 20rpx;
box-sizing: border-box;
}
.configureDevice::before {
content: '';
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 550rpx;
background: linear-gradient(0deg, #F5F7FB 0%, #D8EAFD 100%);
}
.progress {
width: 100%;
height: 160rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
}
.progressList {
flex: 1;
}
.progressList>view:nth-of-type(1) {
width: 52rpx;
height: 52rpx;
overflow: hidden;
border-radius: 50%;
display: flex;
position: relative;
align-items: center;
justify-content: center;
margin: 0 auto 20rpx;
}
.progressList>view:nth-of-type(1)::before {
content: "";
}
.progressList>view:nth-of-type(1)::after {
content: "";
}
.progressList>view:nth-of-type(1)>view {
color: #FFFFFF;
font-size: 24rpx;
font-weight: bold;
line-height: 40rpx;
overflow: hidden;
border-radius: 50%;
text-align: center;
}
.progressList>view:nth-of-type(2) {
color: #77849E;
height: 24rpx;
font-size: 24rpx;
line-height: 24rpx;
text-align: center;
}
.active {
color: #3194FB !important;
font-weight: bold !important;
}
.content {
width: 100%;
border-radius: 16rpx;
height: calc(100% - 160rpx);
background-color: #FFFFFF;
}
-146
View File
@@ -1,146 +0,0 @@
const app = getApp();
import $ from "../../utils/request";
Page({
data: {
name: "",
deviceSelect: null
},
onLoad(options) {
app.globalData.ppScale.plugin.bus.subscribe("deviceConnect", (res) => {
console.log('connectedDevice ===》deviceConnect', res);
app.globalData.ppScale.plugin.ScaleAction.startDataProgress();
app.globalData.ppScale.activeProtocol = app.globalData.ppScale.plugin.ScaleAction.getActiveProtocol();
app.globalData.ppScale.activeProtocol.codeUpdateMTU((res) => {
console.log("connectedDevice ===》codeUpdateMTU", res);
app.globalData.ppScale.activeProtocol.codeFetchBindingState((res) => {
console.log("connectedDevice ===》codeFetchBindingState", res);
wx.hideLoading();
if (res === 1) {
wx.showModal({
title: '提示',
content: '当前设备已被绑定,你确定要覆盖绑定吗?',
success: (res) => {
if (res.confirm) {
app.globalData.ppScale.activeProtocol.codeClearDeviceData("00", (res) => {
console.log("deviceInfo === codeClearDeviceData", res);
let scaleDeviceId = app.globalData.ppScale.device.mac.replace(/:/g, '');
let params = {
equipmentCode: scaleDeviceId,
};
$.ajax("weighingScale/del/device", params, "POST", true, "正在初始化设备...").then(res => {
wx.showToast({
icon: "none",
title: res.message,
})
let pages = getCurrentPages();
let prevPage = pages[pages.length - 2];
prevPage.setData({
getDeviceSetting: true
})
setTimeout(() => {
wx.navigateBack({
delta: 2
})
}, 1500);
});
})
} else if (res.cancel) {
app.globalData.ppScale.plugin.Blue.disconnect();
}
}
})
} else {
app.globalData.ppScale.device.name = this.data.name;
wx.redirectTo({
url: "/pages/connectionSuccessful/connectionSuccessful"
})
}
})
});
});
},
onShow() {
let token = wx.getStorageSync("token") || null;
let userInfo = wx.getStorageSync("userInfo") || null;
let deviceSelect = app.globalData.ppScale.device.connection;
this.setData({
token: token,
userInfo: userInfo,
name: deviceSelect.name,
deviceSelect: deviceSelect
})
},
nameInput(e) {
this.setData({
name: e.detail.value
})
},
// 配对
openConnectionSuccessful() {
let token = this.data.token;
let userInfo = this.data.userInfo;
if (token && userInfo) {
this.starConnection();
} else {
wx.login({
success: (res) => {
if (res.code) {
this.checkOpenIdLogin(res.code);
} else {
wx.showToast({
icon: "none",
title: "登录失败,请稍后再试!",
})
}
}
})
}
},
starConnection() {
let deviceSelect = this.data.deviceSelect;
if (deviceSelect) {
let name = this.data.name;
if (name) {
wx.showLoading({
title: "蓝牙配对中...",
mask: true
});
app.globalData.ppScale.device.name = name;
app.globalData.ppScale.plugin.Blue.createBLEConnection(deviceSelect);
} else {
wx.showToast({
icon: "none",
title: "设备名称不能为空"
})
}
} else {
wx.showToast({
icon: "none",
title: "配对设备不能为空"
})
}
},
// 微信一键登录
checkOpenIdLogin(code) {
let params = {
code: code
};
$.ajax("weighingScale/checkOpenIdLogin", params, "POST", true, "登录中...").then((res) => {
wx.setStorageSync("userInfo", res.result.user);
wx.setStorageSync("token", res.result.token);
this.starConnection();
})
},
})
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "设备命名",
"disableScroll": true
}
@@ -1,16 +0,0 @@
<view class="equipmentModel">型号:{{deviceSelect.name}}</view>
<view class="equipmentIcon">
<block wx:if="{{deviceSelect && deviceSelect.name}}">
<image src="/images/devices/{{deviceSelect.name}}.png" />
</block>
</view>
<view class="equipmentName arrowAfter">
<view>设备名称</view>
<view>
<input type="text" value="{{name}}" bindinput="nameInput" placeholder="请输入设备名称" />
</view>
</view>
<view class="btn" bind:tap="openConnectionSuccessful">配对</view>
@@ -1,68 +0,0 @@
page {
padding: 50rpx 60rpx 0;
background-color: #ffffff;
}
.equipmentModel {
color: #252535;
width: 100%;
height: 48rpx;
font-size: 48rpx;
font-weight: bold;
line-height: 48rpx;
margin-bottom: 60rpx;
}
.equipmentIcon {
width: 320rpx;
height: 320rpx;
margin: 0 auto 40rpx;
}
.equipmentName {
width: 100%;
height: 126rpx;
display: flex;
flex-wrap: nowrap;
padding-right: 35rpx;
box-sizing: border-box;
margin-bottom: 550rpx;
justify-content: space-between;
border-bottom: 1rpx solid #EAECF1;
}
.equipmentName>view:first-of-type {
color: #252535;
height: 126rpx;
line-height: 126rpx;
font-size: 36rpx;
font-weight: bold;
}
.equipmentName>view:last-of-type {
flex: 1;
width: 0;
height: 126rpx;
}
.equipmentName>view:last-of-type input {
color: #808080;
width: 100%;
height: 126rpx;
text-align: right;
font-size: 36rpx;
line-height: 126rpx;
}
.btn {
color: #FFFFFF;
width: 580rpx;
height: 88rpx;
line-height: 88rpx;
margin: 0 auto;
font-size: 32rpx;
font-weight: bold;
border-radius: 44rpx;
text-align: center;
background-color: #1385FA;
}
@@ -1,10 +0,0 @@
const app = getApp();
Page({
// 获取wifi列表
openGetWifiList() {
wx.redirectTo({
url: "/pages/getWifiList/getWifiList"
})
}
})
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "绑定成功",
"disableScroll": true
}
@@ -1,10 +0,0 @@
<view class="icon">
<view>
<image src="/images/connectionSuccessful/icon.png" />
</view>
<view>绑定成功</view>
</view>
<view class="describe">随时随地同步测量数据</view>
<view class="btn" bind:tap="openGetWifiList">配置网络</view>
@@ -1,49 +0,0 @@
page {
width: 100%;
padding: 200rpx 85rpx 0;
box-sizing: border-box;
background-color: #ffffff;
}
.icon {
width: 100%;
margin-bottom: 540rpx;
}
.icon>view:first-of-type {
width: 360rpx;
height: 295rpx;
margin: 0 auto 50rpx;
}
.icon>view:last-of-type {
color: #252535;
width: 100%;
height: 40rpx;
font-size: 40rpx;
font-weight: bold;
line-height: 40rpx;
text-align: center;
}
.describe {
color: #B6B6B6;
width: 100%;
height: 26rpx;
font-size: 28rpx;
line-height: 28rpx;
text-align: center;
margin-bottom: 46rpx;
}
.btn {
color: #FFFFFF;
width: 100%;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
background-color: #1385FA;
}
+16 -88
View File
@@ -3,67 +3,13 @@ import $ from "../../utils/request";
Page({
data: {
// deviceConnect: false,
deviceInfo: null,
},
onLoad(options) {
this.getDevice();
// app.globalData.ppScale.plugin.bus.subscribe("deviceConnect", (res) => {
// console.log('deviceInfo ===》deviceConnect', res);
// app.globalData.ppScale.plugin.ScaleAction.startDataProgress();
// app.globalData.ppScale.activeProtocol = app.globalData.ppScale.plugin.ScaleAction.getActiveProtocol();
// app.globalData.ppScale.activeProtocol.codeUpdateMTU((res) => {
// console.log("deviceInfo ===》codeUpdateMTU", res);
// this.setData({
// deviceConnect: true
// })
// });
// });
},
// 初始化蓝牙
// initBluetooth() {
// wx.openBluetoothAdapter({
// success: () => {
// this.getDeviceSettingList();
// },
// fail: (err) => {
// if (err.errCode === 10001) {
// wx.showModal({
// title: "提示",
// content: "请打开手机蓝牙",
// });
// }
// },
// });
// },
// getDeviceSettingList() {
// let seviceList = [];
// app.globalData.ppScale.device.setting.map(item => {
// if(this.data.deviceInfo.type === item.deviceName) {
// seviceList.push(item);
// }
// })
// if(seviceList && seviceList.length) {
// app.globalData.ppScale.plugin.Blue.setDeviceSetting(seviceList);
// app.globalData.ppScale.plugin.Blue.start(seviceList[0].deviceName, false);
// app.globalData.ppScale.plugin.bus.subscribe("devicesList", (res) => {
// let fIndex = res.findIndex(item => item.deviceId === this.data.deviceInfo.deviceId);
// if (fIndex > -1) {
// app.globalData.ppScale.plugin.Blue.stopBluetoothDevicesDiscovery();
// app.globalData.ppScale.plugin.Blue.createBLEConnection(res[fIndex]);
// }
// });
// }
// },
// 获取已经绑定的设备列表
getDevice() {
let params = {};
@@ -71,42 +17,24 @@ Page({
this.setData({
deviceInfo: res.result[0]
})
// this.initBluetooth();
})
},
delDevice() {
// if(this.data.deviceConnect) {
// app.globalData.ppScale.activeProtocol.codeClearDeviceData("00", (res) => {
// console.log("deviceInfo === codeClearDeviceData", res);
let scaleDeviceId = this.data.deviceInfo.macAddress.replace(/:/g, '');
let params = {
equipmentCode: scaleDeviceId,
};
$.ajax("weighingScale/del/device", params, "POST", true, "正在解绑设备...").then(res_ => {
wx.showToast({
icon: "none",
title: res_.message,
})
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500);
});
// })
// } else {
// wx.showToast({
// icon: "none",
// title: "删除失败,请靠近设备并点亮后再试"
// })
// app.globalData.ppScale.plugin.Blue.stop();
// this.getDeviceSettingList();
// }
},
// onUnload() {
// app.globalData.ppScale.plugin.Blue.stop();
// }
let scaleDeviceId = this.data.deviceInfo.macAddress.replace(/:/g, '');
let params = {
equipmentCode: scaleDeviceId,
};
$.ajax("weighingScale/del/device", params, "POST", true, "正在解绑设备...").then(res_ => {
wx.showToast({
icon: "none",
title: res_.message,
})
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500);
});
}
})
-4
View File
@@ -27,10 +27,6 @@
<view>成员</view>
<view>{{deviceInfo.subUserNum}}人</view>
</view>
<view>
<view>MAC地址</view>
<view>{{deviceInfo.macAddress}}</view>
</view>
</view>
<view class="btn" bind:tap="delDevice">删除设备</view>
-45
View File
@@ -1,45 +0,0 @@
import $ from "../../utils/request";
Page({
data: {
userInfo: null,
subUserList: [],
},
onShow() {
this.setData({
userInfo: wx.getStorageSync("userInfo") || null
})
this.getSubUser();
},
// 获取家庭成员列表
getSubUser() {
let params = {};
$.ajax("weighingScale/list/subUser", params, "GET", true, "正在获取...").then(res => {
this.setData({
subUserList: res.result
})
})
},
openUserInfo() {
wx.navigateTo({
url: "/pages/userInfo/userInfo?initBluetooth=1&customerType=0"
})
},
editMyInfo() {
wx.navigateTo({
url: "/pages/userInfo/userInfo?initBluetooth=1&customerType=1"
})
},
editUserInfo(e) {
let id = e.currentTarget.dataset.id;
wx.navigateTo({
url: "/pages/userInfo/userInfo?id="+ id +"&initBluetooth=1&customerType=0"
})
}
})
-5
View File
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "家庭成员",
"disableScroll": true
}
-31
View File
@@ -1,31 +0,0 @@
<view class="myInfo" bind:tap="editMyInfo">
<view>
<image src="/images/my/user.png" />
</view>
<view>{{userInfo ? userInfo.realname : '-'}}</view>
<view class="arrowAfter">修改我的档案</view>
</view>
<view class="familyMembers">
<view>家庭成员</view>
<view>
<block wx:if="{{subUserList && subUserList.length}}">
<block wx:for="{{subUserList}}" wx:key="index">
<view data-id="{{item.id}}" bind:tap="editUserInfo">
<view>
<image src="/images/my/user.png" />
</view>
<view>{{item.realname}}</view>
<view class="arrowAfter">修改档案</view>
</view>
</block>
</block>
</view>
</view>
<view class="btn" bind:tap="openUserInfo">
<view>
<image src="/images/familyMembers/add.png" />
</view>
<view>添加新成员</view>
</view>
-128
View File
@@ -1,128 +0,0 @@
page {
padding: 30rpx 30rpx 0;
}
.myInfo {
width: 100%;
height: 150rpx;
padding: 0 30rpx 0 38rpx;
box-sizing: border-box;
display: flex;
flex-wrap: nowrap;
align-items: center;
border-radius: 16rpx;
margin-bottom: 40rpx;
background-color: #FFFFFF;
}
.myInfo>view:nth-of-type(1) {
width: 84rpx;
height: 84rpx;
border-radius: 50%;
margin-right: 24rpx;
}
.myInfo>view:nth-of-type(2) {
color: #252535;
flex: 1;
height: 32rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 32rpx;
}
.myInfo>view:nth-of-type(3) {
color: #B6B6B6;
height: 28rpx;
font-size: 28rpx;
line-height: 28rpx;
padding-right: 30rpx;
}
.familyMembers {
width: 100%;
margin-bottom: 24rpx;
}
.familyMembers>view:first-of-type {
color: #252535;
width: 100%;
height: 32rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 32rpx;
margin-bottom: 30rpx;
}
.familyMembers>view:last-of-type {
width: 100%;
border-radius: 16rpx;
}
.familyMembers>view:last-of-type>view {
width: 100%;
height: 150rpx;
padding: 0 30rpx 0 38rpx;
box-sizing: border-box;
display: flex;
flex-wrap: nowrap;
align-items: center;
background-color: #FFFFFF;
border-bottom: 1rpx solid #EAECF1;
}
.familyMembers>view:last-of-type>view:last-of-type {
border-bottom: 0;
}
.familyMembers>view:last-of-type>view>view:nth-of-type(1) {
width: 84rpx;
height: 84rpx;
border-radius: 50%;
margin-right: 24rpx;
}
.familyMembers>view:last-of-type>view>view:nth-of-type(2) {
color: #252535;
flex: 1;
height: 32rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 32rpx;
}
.familyMembers>view:last-of-type>view>view:nth-of-type(3) {
color: #B6B6B6;
height: 28rpx;
font-size: 28rpx;
line-height: 28rpx;
padding-right: 30rpx;
}
.btn {
width: 100%;
height: 150rpx;
padding: 0 38rpx;
box-sizing: border-box;
display: flex;
flex-wrap: nowrap;
align-items: center;
border-radius: 16rpx;
background-color: #FFFFFF;
}
.btn>view:first-of-type {
width: 84rpx;
height: 84rpx;
border-radius: 50%;
margin-right: 24rpx;
}
.btn>view:last-of-type {
color: #252535;
flex: 1;
height: 32rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 32rpx;
}
-32
View File
@@ -1,32 +0,0 @@
const app = getApp();
Page({
data: {
wifiList: []
},
onLoad() {
this.initWifi();
},
initWifi() {
wx.showLoading({
title: "正在获取Wi-Fi列表...",
mask: true
});
app.globalData.ppScale.activeProtocol.dataFindSurroundDevice((res) => {
wx.hideLoading();
console.log("wifiList", res);
this.setData({
wifiList: res
})
})
},
openSetWifiPassword(e) {
let item = JSON.stringify(e.currentTarget.dataset.item);
wx.navigateTo({
url: "/pages/setWifiPassword/setWifiPassword?item=" + item
})
}
})
-4
View File
@@ -1,4 +0,0 @@
{
"usingComponents": {},
"disableScroll": true
}
-19
View File
@@ -1,19 +0,0 @@
<view class="title">
<view>可用Wi-Fi</view>
<view>网络列表(设备暂不支持5GWi-Fi网络)</view>
</view>
<view class="wifi">
<scroll-view class="scrollView" scroll-y>
<view class="content">
<block wx:for="{{wifiList}}" wx:key="index">
<view class="arrowAfter" data-item="{{item}}" bind:tap="openSetWifiPassword">
<view>
<image src="/images/getWifiList/icon.png" />
</view>
<view>{{item.ssid}}</view>
</view>
</block>
</view>
</scroll-view>
</view>
-64
View File
@@ -1,64 +0,0 @@
page {
display: flex;
flex-direction: column;
background-color: #ffffff;
}
.title {
width: 100%;
padding: 50rpx 55rpx 24rpx;
box-sizing: border-box;
}
.title>view:first-of-type {
color: #252535;
width: 100%;
height: 48rpx;
font-size: 48rpx;
font-weight: bold;
line-height: 48rpx;
margin-bottom: 60rpx;
}
.title>view:last-of-type {
color: #B6B6B6;
width: 100%;
height: 30rpx;
font-size: 30rpx;
line-height: 30rpx;
}
.wifi {
flex: 1;
overflow: hidden;
}
.content {
width: 100%;
padding: 0 55rpx;
box-sizing: border-box;
}
.content>view {
width: 100%;
height: 80rpx;
margin: 30rpx 0;
display: flex;
flex-wrap: nowrap;
}
.content>view>view:nth-of-type(1) {
width: 80rpx;
height: 80rpx;
margin-right: 24rpx;
}
.content>view>view:nth-of-type(2) {
color: #252535;
flex: 1;
width: 0;
height: 80rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 80rpx;
}
+21 -36
View File
@@ -9,23 +9,25 @@ Page({
},
onShow() {
let token = wx.getStorageSync("token") || null;
let userInfo = wx.getStorageSync("userInfo") || null;
let token = wx.getStorageSync("token") || null;
this.setData({
token: token,
userInfo: userInfo
userInfo: userInfo,
deviceList: []
})
if(token && userInfo) {
if(token) {
this.getDevice();
}
},
// 点击登录或注册
openLoginOrReg() {
openLoginOrReg(e) {
let bol = e.currentTarget.dataset.bol;
wx.login({
success: (res) => {
if (res.code) {
this.checkOpenIdLogin(res.code);
this.checkOpenIdLogin(res.code, bol);
} else {
wx.showToast({
icon: "none",
@@ -37,30 +39,21 @@ Page({
},
// 微信一键登录
checkOpenIdLogin(code) {
checkOpenIdLogin(code, bol) {
let params = {
code: code
};
$.ajax("weighingScale/checkOpenIdLogin", params, "POST", true, "登录中...").then((res) => {
$.ajax("weighingScale/checkOpenIdLogin", params, "POST", true, "加载中...").then((res) => {
wx.setStorageSync("userInfo", res.result.user);
wx.setStorageSync("token", res.result.token);
if(res.result.token && res.result.user) {
this.setData({
token: res.result.token,
userInfo: res.result.user
})
this.getDevice();
} else {
wx.showToast({
icon: "none",
title: "请先补全个人信息"
})
setTimeout(() => {
wx.navigateTo({
url: "/pages/userInfo/userInfo?initBluetooth=0&customerType=1"
})
}, 1500)
}
this.setData({
token: res.result.token,
userInfo: res.result.user
})
if(bol) {
this.openSearchDevice();
}
})
},
@@ -76,20 +69,12 @@ Page({
// 添加设备
openSearchDevice() {
// let token = this.data.token;
// let userInfo = this.data.userInfo;
// if (token && userInfo) {
wx.navigateTo({
url: "/pages/searchDevice/searchDevice"
})
// } else {
// wx.showToast({
// icon: "none",
// title: "请先登录"
// })
// }
wx.navigateTo({
url: "/pages/searchDevice/searchDevice"
})
},
// 打开设备详情
openDeviceInfo() {
wx.navigateTo({
url: "/pages/deviceInfo/deviceInfo"
+8 -8
View File
@@ -8,14 +8,14 @@
<view>
<image src="/images/home/user.png" />
</view>
<block wx:if="{{userInfo && token}}">
<view>{{userInfo.realname}}</view>
<block wx:if="{{userInfo || token}}">
<view>{{userInfo ? userInfo.realname : '已登录'}}</view>
</block>
<block wx:else>
<view class="arrowAfter" bind:tap="openLoginOrReg">登录/注册</view>
<view class="arrowAfter" data-bol="{{false}}" bind:tap="openLoginOrReg">登录/注册</view>
</block>
</view>
<view>智能体脂秤</view>
<view>智能蓝牙秤</view>
<view>注重更好的健康生活品质</view>
<view></view>
</view>
@@ -31,12 +31,12 @@
<view class="addDevice">
<view>请添加设备</view>
<view>添加设备后,解锁更多体验</view>
<!-- <block wx:if="{{userInfo && token}}"> -->
<block wx:if="{{userInfo && token}}">
<view bind:tap="openSearchDevice">添加设备</view>
<!-- </block>
</block>
<block wx:else>
<view bind:tap="openLoginOrReg">登录/注册</view>
</block> -->
<view data-bol="{{true}}" bind:tap="openLoginOrReg">添加设备</view>
</block>
</view>
</block>
</view>
+1 -1
View File
@@ -86,7 +86,7 @@
.device>view:nth-of-type(1) {
width: 500rpx;
height: 500rpx;
margin: 0 auto;
margin: 0 auto 16rpx;
}
.device>view:nth-of-type(2) {
-2
View File
@@ -1,2 +0,0 @@
// index.js
Page({})
-5
View File
@@ -1,5 +0,0 @@
{
"usingComponents": {
"navigation-bar": "/components/navigation-bar/navigation-bar"
}
}
-7
View File
@@ -1,7 +0,0 @@
<!--index.wxml-->
<navigation-bar title="Weixin" back="{{false}}" color="black" background="#FFF"></navigation-bar>
<scroll-view class="scrollarea" scroll-y type="list">
<view class="container">
Weixin
</view>
</scroll-view>
-10
View File
@@ -1,10 +0,0 @@
/**index.wxss**/
page {
height: 100vh;
display: flex;
flex-direction: column;
}
.scrollarea {
flex: 1;
overflow-y: hidden;
}
+32 -67
View File
@@ -3,6 +3,7 @@ import $ from "../../utils/request";
Page({
data: {
userInfo: null,
token: null,
deviceInfo: null
},
@@ -11,66 +12,44 @@ Page({
let token = wx.getStorageSync("token") || null;
let userInfo = wx.getStorageSync("userInfo") || null;
this.setData({
userInfo: userInfo
userInfo: userInfo,
token: token
})
if(token && userInfo) {
this.getDevice();
}
},
// 打开用户信息
openUserInfo() {
if(this.data.userInfo) {
wx.navigateTo({
url: "/pages/userInfo/userInfo?initBluetooth=1&customerType=1"
})
} else {
wx.login({
success: (res) => {
if (res.code) {
this.checkOpenIdLogin(res.code);
} else {
wx.showToast({
icon: "none",
title: "登录失败,请稍后再试!",
})
}
}
})
}
},
// 微信一键登录
checkOpenIdLogin(code) {
let params = {
code: code
};
$.ajax("weighingScale/checkOpenIdLogin", params, "POST", true, "登录中...").then((res) => {
wx.setStorageSync("userInfo", res.result.user);
wx.setStorageSync("token", res.result.token);
if(res.result.token && res.result.user) {
this.setData({
token: res.result.token,
userInfo: res.result.user
})
this.getDevice();
} else {
wx.showToast({
icon: "none",
title: "请先补全个人信息"
})
setTimeout(() => {
wx.navigateTo({
url: "/pages/userInfo/userInfo?initBluetooth=0&customerType=1"
})
}, 1500)
}
})
},
},
openLoginOrReg() {
if(this.data.userInfo === null && this.data.token === null) {
wx.login({
success: (res) => {
if (res.code) {
let params = {
code: res.code
};
$.ajax("weighingScale/checkOpenIdLogin", params, "POST", true, "登录中...").then((res) => {
wx.setStorageSync("userInfo", res.result.user);
wx.setStorageSync("token", res.result.token);
this.setData({
token: res.result.token,
userInfo: res.result.user
})
})
} else {
wx.showToast({
icon: "none",
title: "登录失败,请稍后再试!",
})
}
}
})
}
},
// 打开设备详情
openDeviceInfo() {
if(this.data.userInfo) {
if(this.data.userInfo && this.data.token) {
let deviceInfo = this.data.deviceInfo;
if(deviceInfo) {
wx.navigateTo({
@@ -98,20 +77,6 @@ Page({
}
},
// 打开成员管理
openFamilyMembers() {
if(this.data.userInfo) {
wx.navigateTo({
url: "/pages/familyMembers/familyMembers"
})
} else {
wx.showToast({
icon: "none",
title: "请先登录"
})
}
},
// 获取已经绑定的设备列表
getDevice() {
let params = {};
+8 -12
View File
@@ -1,9 +1,14 @@
<view class="userInfo">
<view class="user arrowAfter" bind:tap="openUserInfo">
<view class="user" bind:tap="openLoginOrReg">
<view>
<image src="/images/my/user.png" />
</view>
<view>{{userInfo && userInfo.realname ? userInfo.realname : '未登录'}}</view>
<view>
<block wx:if="{{userInfo || token}}">
{{userInfo ? userInfo.realname : '已登录'}}
</block>
<block wx:else>未登录</block>
</view>
</view>
<view class="info">
<view>
@@ -33,16 +38,7 @@
<view>设备绑定</view>
<view>{{deviceInfo ? '已绑定('+ deviceInfo.equipmentName +')' : '未绑定'}}</view>
</view>
<view class="list arrowAfter" bind:tap="openFamilyMembers">
<view>
<image src="/images/my/2.png" />
</view>
<view>成员管理</view>
<view></view>
</view>
</view>
<view class="agreement">
<view class="list arrowAfter">
<view class="list arrowAfter">
<view>
<image src="/images/my/3.png" />
</view>
+1 -1
View File
@@ -75,7 +75,7 @@
width: 100%;
padding: 0 30rpx;
box-sizing: border-box;
margin-bottom: 360rpx;
margin-bottom: 480rpx;
}
.content .arrowAfter::after {
+122 -121
View File
@@ -10,110 +10,136 @@ Page({
},
onLoad(options) {
this.initBluetooth();
this.checkBluetoothPermissionAndInit();
},
onShow() {
if (this.data.getDeviceSetting) {
this.getDeviceSettingList();
}
} else {
this.checkBluetoothPermissionAndInit();
}
},
// 初始化蓝牙
initBluetooth() {
this.setData({
initText: "正在初始化蓝牙..."
})
wx.openBluetoothAdapter({
success: () => {
this.setData({
initText: "蓝牙初始化成功"
})
this.getDeviceSettingList();
},
fail: (err) => {
this.setData({
initText: "蓝牙初始化失败"
})
if (err.errCode === 10001) {
wx.showModal({
title: "提示",
content: "请打开手机蓝牙",
});
}
},
});
},
// async refreshToken(fn, flag) {
// let bodyToken = wx.getStorageSync('bodyToken');
// let bodyTokenTime = wx.getStorageSync('bodyTokenTime');
// if (!bodyToken || bodyTokenTime * 1000 < +new Date() || flag) {
// let res = await app.globalData.ppScale.plugin.refreshToken({
// url: "https://uniquehealth.lefuenergy.com",
// data: {
// "appKey": app.globalData.ppScale.options.key,
// "appSecret": app.globalData.ppScale.options.secret
// }
// });
// if (res.data.code == 200) {
// wx.setStorageSync('bodyToken', res.data.data.token);
// wx.setStorageSync('bodyTokenTime', res.data.data.expireTime);
// fn();
// }
// } else {
// fn();
// }
// },
// getDeviceSettingList() {
// this.setData({
// initText: "获取设备配置中..."
// })
// let bodyToken = wx.getStorageSync("bodyToken");
// app.globalData.ppScale.plugin.getDeviceSettingList({
// url: "https://uniquehealth.lefuenergy.com",
// data: {
// appKey: app.globalData.ppScale.options.key
// },
// header: {
// "token": bodyToken,
// "Accept-Language": wx.getStorageSync("lang") || 'zh'
// }
// }).then((res) => {
// if (res.data.code == 200) {
// this.setData({
// initText: "设备搜索中..."
// });
// app.globalData.ppScale.plugin.Blue.setDeviceSetting(res.data.data);
// app.globalData.ppScale.device.setting = res.data.data;
// let deviceNames = res.data.data.map(item => item.deviceName);
// app.globalData.ppScale.plugin.Blue.start(deviceNames, false);
// app.globalData.ppScale.plugin.bus.subscribe("devicesList", (res_) => {
// console.log("searchDevice ===> devicesList", res_);
// this.setData({
// getDeviceSetting: false,
// initText: "设备搜索完成"
// });
// app.globalData.ppScale.plugin.Blue.stopBluetoothDevicesDiscovery();
// app.globalData.ppScale.device.list = res_;
// app.globalData.ppScale.device.connection = res_[0];
// wx.navigateTo({
// url: "/pages/connectedDevice/connectedDevice"
// })
// });
// } else if (res.data.code == 401 || res.data.code == 4008) {
// this.refreshToken(() => {
// this.getDeviceSettingList();
// }, true);
// }
// });
// },
checkBluetoothPermissionAndInit() {
this.setData({
initText: "正在检查蓝牙权限..."
});
wx.getSetting({
success: (res) => {
if (res.authSetting['scope.bluetooth']) {
this.openBluetoothAdapter();
} else {
wx.authorize({
scope: 'scope.bluetooth',
success: () => {
this.openBluetoothAdapter();
},
fail: (err) => {
this.setData({
initText: "蓝牙权限被拒绝。"
});
wx.showModal({
title: '提示',
content: '您拒绝了蓝牙权限,将无法连接蓝牙秤。是否前往设置开启?',
confirmText: '去开启',
cancelText: '不开启',
success: (modalRes) => {
if (modalRes.confirm) {
wx.openSetting({
success: (settingRes) => {
console.log('openSetting success', settingRes);
},
fail: (settingErr) => {
wx.navigateBack({
delta: 1
});
}
});
} else {
wx.navigateBack({
delta: 1
});
}
}
});
}
});
}
},
fail: (err) => {
this.setData({
initText: "获取权限设置失败。"
});
wx.showToast({
title: '获取权限设置失败',
icon: 'none'
});
wx.navigateBack({
delta: 1
});
}
});
},
openBluetoothAdapter() {
this.setData({
initText: "正在初始化蓝牙..."
});
wx.openBluetoothAdapter({
success: () => {
this.setData({
initText: "蓝牙初始化成功"
});
this.getDeviceSettingList();
},
fail: (err) => {
this.setData({
initText: "蓝牙初始化失败。"
});
if (err.errCode === 10001) {
wx.showModal({
title: "提示",
content: "请确保手机蓝牙已开启。",
showCancel: false,
success: () => {
wx.navigateBack({
delta: 1
});
}
});
} else if (err.errMsg && err.errMsg.includes('permission denied')) {
wx.showModal({
title: '提示',
content: '蓝牙权限仍被拒绝,无法使用蓝牙功能。',
showCancel: false,
success: () => {
wx.navigateBack({
delta: 1
});
}
});
} else {
wx.showToast({
title: `蓝牙适配器打开失败: ${err.errMsg || err.errCode}`,
icon: 'none',
success: () => {
wx.navigateBack({
delta: 1
});
}
});
}
},
});
},
getDeviceSettingList() {
// app.globalData.ppScale.plugin.Blue.visibleLog(true);
this.setData({
initText: "设备搜索中..."
});
app.globalData.ppScale.device.list = [];
let seviceList = app.globalData.ppScale.device.setting;
app.globalData.ppScale.plugin.Blue.setDeviceSetting(seviceList);
let deviceNames = seviceList.map(item => item.deviceName);
@@ -125,12 +151,7 @@ Page({
devicesList: res
});
this.selectDevice();
});
app.globalData.ppScale.plugin.bus.subscribe("devicesModel", (res) => {
console.log("searchDevice ===》devicesModel", res);
app.globalData.ppScale.device.mac = res.deviceMac;
});
});
},
selectDevice() {
@@ -141,30 +162,10 @@ Page({
setTimeout(() => {
app.globalData.ppScale.plugin.Blue.stopBluetoothDevicesDiscovery();
app.globalData.ppScale.device.list = this.data.devicesList;
if(this.data.devicesList.length === 1) {
app.globalData.ppScale.device.connection = this.data.devicesList[0];
wx.redirectTo({
url: "/pages/connectedDevice/connectedDevice"
})
} else {
let itemLists = this.data.devicesList.map(item => item.name);
wx.showActionSheet({
itemList: itemLists,
alertText: "请选择你要使用的设备",
success: (res) => {
app.globalData.ppScale.device.connection = this.data.devicesList[res.tapIndex];
wx.redirectTo({
url: "/pages/connectedDevice/connectedDevice"
})
},
fail: () => {
wx.navigateBack({
delta: 1
})
}
})
}
}, 3000);
wx.redirectTo({
url: "/pages/configureDevice/configureDevice"
})
}, 1000);
}
}
})
-83
View File
@@ -1,83 +0,0 @@
const app = getApp();
import $ from "../../utils/request";
Page({
onLoad(options) {
let ssid = options.ssid;
let password = options.password;
app.globalData.ppScale.activeProtocol.dataConfigNetWork({
domain: app.globalData.ppScale.domain,
ssid: options.ssid,
password: options.password
}, (res) => {
console.log("setNetwork.js dataConfigNetWork", res);
if(res === 23) {
app.globalData.ppScale.wifi.ssid = ssid;
app.globalData.ppScale.wifi.password = password;
let mac = app.globalData.ppScale.device.mac;
let deviceId = app.globalData.ppScale.device.connection.deviceId;
if(mac && deviceId) {
let scaleDeviceId = mac.replace(/:/g, '');
let params = {
equipmentName: app.globalData.ppScale.device.name,
scaleDeviceId: scaleDeviceId,
deviceId: deviceId
};
$.ajax("weighingScale/binding/device", params, "POST").then(res => {
if (res.success) {
app.globalData.ppScale.activeProtocol.codeSetBindingState((res) => {
console.log("setNetwork.js codeSetBindingState", res);
wx.navigateTo({
url: "/pages/setNetworkSuccessful/setNetworkSuccessful"
})
})
} else {
wx.showToast({
icon: "none",
title: res.message
})
setTimeout(() => {
wx.switchTab({
url: "/pages/home/home"
})
}, 1500)
}
}).catch(err => {
wx.showToast({
icon: "none",
title: err.message
})
setTimeout(() => {
wx.switchTab({
url: "/pages/home/home"
})
}, 1500)
})
} else {
wx.showToast({
icon: "none",
title: "Mac 地址与 deviceId 获取失败,请重新绑定"
})
setTimeout(() => {
wx.switchTab({
url: "/pages/home/home"
})
}, 1500)
}
} else {
wx.showToast({
icon: "none",
title: "配网失败,错误码:" + res
})
setTimeout(() => {
wx.switchTab({
url: "/pages/home/home"
})
}, 1500)
}
})
}
})
-5
View File
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "正在配网",
"disableScroll": true
}
-13
View File
@@ -1,13 +0,0 @@
<view class="icon">
<view>
<image src="/images/setNetwork/icon.png" />
</view>
<view>已链接,配网中...</view>
<view>请持续站在秤上,耐心等待</view>
</view>
<view class="describe">
<view>手机尽量靠近设备(2米以内)</view>
<view>Wi-Fi指示灯闪烁,处于配网状态</view>
<view>Wi-Fi指示灯长亮为已连接状态</view>
</view>
-54
View File
@@ -1,54 +0,0 @@
page {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 90rpx 60rpx 120rpx;
background-color: #ffffff;
}
.icon {
width: 100%;
}
.icon>view:nth-of-type(1) {
width: 565rpx;
height: 500rpx;
margin: 0 auto;
}
.icon>view:nth-of-type(2) {
color: #1385FA;
width: 100%;
height: 36rpx;
font-size: 36rpx;
font-weight: bold;
line-height: 36rpx;
text-align: center;
margin-bottom: 28rpx;
}
.icon>view:nth-of-type(3) {
color: #808080;
width: 100%;
height: 30rpx;
font-size: 30rpx;
text-align: center;
line-height: 30rpx;
}
.describe {
width: 100%;
}
.describe>view {
color: #808080;
width: 100%;
font-size: 26rpx;
font-weight: bold;
line-height: 26rpx;
margin-bottom: 26rpx;
}
.describe>view:last-of-type {
margin-bottom: 0;
}
@@ -1,128 +0,0 @@
const app = getApp();
import $ from "../../utils/request";
Page({
data: {
userInfo: null,
subUser: {
i: 0,
data: []
},
ssid: ""
},
onLoad(options) {
this.setData({
userInfo: wx.getStorageSync("userInfo"),
ssid: app.globalData.ppScale.wifi.ssid
});
this.getSubUser();
},
completeClick() {
let userInfo = this.data.userInfo;
// 设置主用户时userID为小程序的用户IDmemberID为空
app.globalData.ppScale.activeProtocol.dataSyncUserInfo({
userID: userInfo.id,
userName: userInfo.realname,
memberID: "",
age: this.getAge(userInfo.birthday), //
gender: userInfo.sex, //
height: userInfo.height, //
isAthleteMode: 0,
currentWeight: userInfo.weight, //
deviceHeaderIndex: 0,
targetWeight: "",
idealWeight: "",
recentData: [],
}, (res) => {
console.log("dataSyncUserInfo", res);
if(this.data.subUser.data && this.data.subUser.data.length) {
wx.showLoading({
title: "正在同步用户信息,请稍等...",
mask: true
});
this.setSubUser();
} else {
this.resetDevice();
app.globalData.ppScale.plugin.Blue.stop();
wx.switchTab({
url: "/pages/home/home"
})
}
})
},
setSubUser() {
let userInfo = this.data.userInfo;
let i = this.data.subUser.i;
let subUser = this.data.subUser.data;
if(i < subUser.length) {
app.globalData.ppScale.activeProtocol.dataSyncUserInfo({
userID: userInfo.id,
userName: subUser[i].realname,
memberID: subUser[i].id,
age: this.getAge(subUser[i].birthday), //
gender: subUser[i].sex, //
height: subUser[i].height, //
isAthleteMode: 0,
currentWeight: subUser[i].weight, //
deviceHeaderIndex: 0,
targetWeight: "",
idealWeight: "",
recentData: [],
}, (res) => {
console.log("dataSyncSubUserInfo", res);
this.setData({
['subUser.i']: i + 1
})
this.setSubUser();
})
} else {
this.resetDevice();
app.globalData.ppScale.plugin.Blue.stop();
wx.hideLoading();
wx.switchTab({
url: "/pages/home/home"
})
}
},
resetDevice() {
app.globalData.ppScale.device = {
list: [],
mac: null,
name: "",
connection: null
}
},
// 获取家庭成员列表
getSubUser() {
let params = {};
$.ajax("weighingScale/list/subUser", params, "GET", true, "正在获取成员列表...").then(res => {
this.setData({
['subUser.data']: res.result
})
})
},
// 根据生日获取年龄
getAge(birthDateString) {
const birthDate = new Date(birthDateString);
const today = new Date();
let age = today.getFullYear() - birthDate.getFullYear();
const monthDiff = today.getMonth() - birthDate.getMonth();
const dayDiff = today.getDate() - birthDate.getDate();
// 如果当前月份小于出生月份,或者同月但当前日期小于出生日期,年龄需要减 1
if (monthDiff < 0 || (monthDiff === 0 && dayDiff < 0)) {
age--;
}
return age;
}
})
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "绑定成功",
"disableScroll": true
}
@@ -1,21 +0,0 @@
<view class="icon">
<view>
<image src="/images/setNetworkSuccessful/icon.png" />
</view>
<view>配网成功</view>
</view>
<view class="info">
<view>当前设备配置Wi-Fi</view>
<view>
<view>
<image src="/images/setNetworkSuccessful/wifi.png" />
</view>
<view>{{ssid}}</view>
<view>
<image src="/images/setNetworkSuccessful/success.png" />
</view>
</view>
</view>
<view class="btn" bind:tap="completeClick">完成</view>
@@ -1,93 +0,0 @@
page {
width: 100%;
padding: 200rpx 85rpx 0;
box-sizing: border-box;
background-color: #ffffff;
}
.icon {
width: 100%;
margin-bottom: 120rpx;
}
.icon>view:first-of-type {
width: 360rpx;
height: 295rpx;
margin: 0 auto 50rpx;
}
.icon>view:last-of-type {
color: #252535;
width: 100%;
height: 40rpx;
font-size: 40rpx;
font-weight: bold;
line-height: 40rpx;
text-align: center;
}
.info {
width: 100%;
margin-bottom: 380rpx;
}
.info>view:first-of-type {
color: #B6B6B6;
width: 100%;
height: 30rpx;
font-size: 30rpx;
line-height: 30rpx;
margin-bottom: 40rpx;
}
.info>view:last-of-type {
width: 100%;
height: 80rpx;
margin: 30rpx 0;
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.info>view:last-of-type>view:nth-of-type(1) {
width: 80rpx;
height: 80rpx;
margin-right: 24rpx;
}
.info>view:last-of-type>view:nth-of-type(2) {
color: #252535;
flex: 1;
width: 0;
height: 80rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 80rpx;
}
.info>view:last-of-type>view:nth-of-type(3) {
width: 32rpx;
height: 32rpx;
}
.describe {
color: #B6B6B6;
width: 100%;
height: 26rpx;
font-size: 28rpx;
line-height: 28rpx;
text-align: center;
margin-bottom: 46rpx;
}
.btn {
color: #FFFFFF;
width: 100%;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
background-color: #1385FA;
}
-35
View File
@@ -1,35 +0,0 @@
const app = getApp();
Page({
data: {
type: true,
wifiInfo: null,
password: ""
},
onLoad(options) {
this.setData({
wifiInfo: JSON.parse(options.item)
})
},
passwordInput(e) {
this.setData({
password: e.detail.value
})
},
inputTypeChange() {
this.setData({
type: !this.data.type
})
},
// 打开配网
openSetNetwork() {
wx.navigateTo({
url: "/pages/setNetwork/setNetwork?ssid=" + this.data.wifiInfo.ssid + "&password=" + this.data.password
})
}
})
@@ -1,5 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "输入Wi-Fi密码",
"disableScroll": true
}
@@ -1,24 +0,0 @@
<view class="form">
<view>
<view>
<image src="/images/setWifiPassword/icon.png" />
</view>
<view>{{wifiInfo.ssid}}</view>
</view>
<view>
<view>密码</view>
<view>
<input
password="{{type}}"
value="{{password}}"
bindinput="passwordInput"
placeholder="8~16位密码"
placeholder-class="placeholderClass" />
</view>
<view bind:tap="inputTypeChange">
<image src="/images/setWifiPassword/open.png" />
</view>
</view>
</view>
<view class="btn" bind:tap="openSetNetwork">连接</view>
@@ -1,81 +0,0 @@
page {
padding: 55rpx 55rpx 0;
background-color: #ffffff;
}
.form {
width: 100%;
margin-bottom: 64rpx;
}
.form>view {
width: 100%;
height: 96rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 0 24rpx;
box-sizing: border-box;
border-radius: 16rpx;
background-color: #F6F6F6;
}
.form>view:first-of-type {
margin-bottom: 32rpx;
}
.form>view>view:nth-of-type(1) {
color: #252535;
width: 100rpx;
height: 96rpx;
line-height: 96rpx;
font-size: 32rpx;
font-weight: bold;
}
.form>view:first-of-type>view:nth-of-type(1) {
padding: 24rpx 45rpx 24rpx 7rpx;
box-sizing: border-box;
display: flex;
align-items: center;
}
.form>view>view:nth-of-type(2) {
color: #252535;
flex: 1;
width: 0;
height: 96rpx;
font-size: 32rpx;
line-height: 96rpx;
}
.form>view>view:nth-of-type(2) input {
color: #252535;
width: 100%;
height: 96rpx;
font-size: 32rpx;
line-height: 96rpx;
}
.placeholderClass {
color: #B6B6B6;
font-size: 32rpx;
}
.form>view>view:nth-of-type(3) {
width: 56rpx;
height: 56rpx;
}
.btn {
color: #FFFFFF;
width: 580rpx;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
margin: 0 auto;
text-align: center;
border-radius: 44rpx;
background-color: #1385FA;
}
-553
View File
@@ -1,553 +0,0 @@
const app = getApp();
import $ from "../../utils/request";
Page({
data: {
deviceConnect: false,
initBluetooth: "0",
customerType: "1",
deviceInfo: null,
seviceList: [],
userInfo: null,
id: "",
realname: "",
sex: {
index: null,
data: [{
id: 1,
name: '男'
}, {
id: 2,
name: '女'
}]
},
birthday: {
label: "1980年01月01日",
value: "1980-01-01"
},
phone: "",
height: {
index: 50,
data: Array.from({ length: 200 - 120 + 1 }, (_, i) => i + 120)
},
weight: {
index: 20,
data: Array.from({ length: 100 - 50 + 1 }, (_, i) => i + 50)
},
connectedDevice: {
code: "",
color: "",
message: ""
}
},
onLoad(options) {
// initBluetooth 是否初始化蓝牙和设备 1 是 / 0 否
// customerType 用户类型 1 自己 / 0 他人
// id 用户ID 当customerType为0时,家庭成员的用户ID / 为1时始终为空字符串
this.setData({
id: options.id ? options.id : null,
initBluetooth: options.initBluetooth,
customerType: options.customerType,
})
if(options.customerType === "0") {
wx.setNavigationBarTitle({
title: options.id ? '编辑成员档案' : '新增成员档案'
})
if(options.id) {
this.subUserInfo()
}
} else {
let userInfo = wx.getStorageSync("userInfo") || null;
if (userInfo && options.initBluetooth === "1") {
let [year, month, day] = userInfo.birthday.split("-");
this.setData({
userInfo: userInfo,
realname: userInfo.realname,
["sex.index"]: this.data.sex.data.findIndex(item => {return item.id === userInfo.sex}),
birthday: {
label: year + "年" + month + "月" + day + "日",
value: userInfo.birthday
},
phone: userInfo.phone,
["height.index"]: this.data.height.data.findIndex(item => {return item === userInfo.height}),
["weight.index"]: this.data.weight.data.findIndex(item => {return item === userInfo.weight}),
})
}
}
if(options.initBluetooth === "1") {
this.initBluetooth();
app.globalData.ppScale.plugin.bus.subscribe("deviceConnect", (res) => {
console.log('userInfo ===》deviceConnect', res);
this.setData({
connectedDevice: {
code: "",
color: "#2AC79F",
message: "等待设备回应"
}
})
app.globalData.ppScale.plugin.ScaleAction.startDataProgress();
app.globalData.ppScale.activeProtocol = app.globalData.ppScale.plugin.ScaleAction.getActiveProtocol();
app.globalData.ppScale.activeProtocol.codeUpdateMTU((res) => {
console.log("userInfo ===》codeUpdateMTU", res);
this.setData({
deviceConnect: true,
connectedDevice: {
code: "",
color: "#2AC79F",
message: "已连接"
}
})
});
});
}
},
// 获取已经绑定的设备列表
getDevice() {
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "获取设备列表"
}
})
let params = {};
$.ajax("weighingScale/list/device", params, "GET", false).then((res) => {
if(res.result && res.result.length) {
this.setData({
deviceInfo: res.result[0]
})
this.getDeviceSettingList();
} else {
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "未绑定设备"
}
})
wx.showModal({
title: "提示",
content: "当前暂未绑定设备,需要绑定吗?",
confirmText: "去绑定",
success: (res) => {
if (res.confirm) {
wx.navigateTo({
url: "/pages/searchDevice/searchDevice"
})
} else if (res.cancel) {
wx.navigateBack({
delta: 1
})
}
}
})
}
})
},
// 初始化蓝牙
initBluetooth() {
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "初始化蓝牙"
}
})
wx.openBluetoothAdapter({
success: () => {
this.getDevice();
},
fail: (err) => {
if (err.errCode === 10001) {
this.setData({
connectedDevice: {
code: "",
color: "#F24439",
message: "初始化蓝牙失败"
}
})
wx.showModal({
title: "提示",
content: "请打开手机蓝牙",
});
}
},
});
},
getDeviceSettingList() {
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "获取配置信息"
}
})
let seviceList = [];
app.globalData.ppScale.device.setting.map(item => {
if(this.data.deviceInfo && this.data.deviceInfo.type === item.deviceName) {
seviceList.push(item);
}
})
this.setData({
seviceList: seviceList,
connectedDevice: {
code: "",
color: "#2AC79F",
message: "配置获取成功"
}
})
if(seviceList && seviceList.length) {
app.globalData.ppScale.plugin.Blue.setDeviceSetting(seviceList);
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "开始搜索设备"
}
})
app.globalData.ppScale.plugin.Blue.start(seviceList[0].deviceName, false);
app.globalData.ppScale.plugin.bus.subscribe("devicesList", (res) => {
console.log("deviceInfo ===> devicesList", res);
let fIndex = res.findIndex(item => item.deviceId === this.data.deviceInfo.deviceId);
this.setData({
connectedDevice: {
code: "",
color: "#808080",
message: "设备搜索中"
}
})
if (fIndex >= 0) {
app.globalData.ppScale.plugin.Blue.stopBluetoothDevicesDiscovery();
this.setData({
connectedDevice: {
code: "",
color: "#2AC79F",
message: "连接中"
}
})
app.globalData.ppScale.plugin.Blue.createBLEConnection(res[fIndex]);
return;
}
});
}
},
// 姓名输入
realnameInput(e) {
let realname = e.detail.value.replace(/\s+/g, '');
this.setData({
realname: realname
})
},
// 性别选择
sexChange(e) {
let sex = e.detail.value;
console.log(sex);
this.setData({
['sex.index']: e.detail.value
})
if(this.data.height.index === null) {
this.setData({
['height.index']: sex == 0 ? 50 : 40
})
}
if(this.data.weight.index === null) {
this.setData({
['weight.index']: sex == 0 ? 20 : 10
})
}
},
// 生日选择
birthdayChange(e) {
let v = e.detail.value;
let [year, month, day] = v.split("-");
this.setData({
birthday: {
label: year + "年" + month + "月" + day + "日",
value: v
}
})
},
// 获取手机号
getPhoneNumber(e) {
let params = {
code: e.detail.code,
thirdId: wx.getStorageSync("userInfo").thirdId
};
$.ajax("weighingScale/getPhone", params, "POST").then(res => {
wx.setStorageSync("userInfo", res.result.user);
wx.setStorageSync("token", res.result.token);
this.setData({
phone: res.result.user.phone
})
})
},
// 身高选择
heightChange(e) {
this.setData({
['height.index']: e.detail.value
})
},
// 体重选择
weightChange(e) {
this.setData({
['weight.index']: e.detail.value
})
},
// 提交判断
submit() {
let realname = this.data.realname;
let sex = this.data.sex;
let birthday = this.data.birthday;
let phone = this.data.phone;
let height = this.data.height;
let weight = this.data.weight;
if(this.data.initBluetooth === "1" && !this.data.deviceConnect) {
wx.showToast({
icon: "none",
title: "请靠近设备并点亮后再试"
})
app.globalData.ppScale.plugin.Blue.start(this.data.seviceList[0].deviceName, false);
return false;
}
if(!realname) {
wx.showToast({
icon: "none",
title: "姓名不能为空"
})
return false;
}
if(sex.index === null) {
wx.showToast({
icon: "none",
title: "性别不能为空"
})
return false;
}
if(!birthday.value) {
wx.showToast({
icon: "none",
title: "生日不能为空"
})
return false;
}
if(this.data.customerType === "1" && !phone) {
wx.showToast({
icon: "none",
title: "手机号不能为空"
})
return false;
}
if(height.index === null) {
wx.showToast({
icon: "none",
title: "身高不能为空"
})
return false;
}
if(weight.index === null) {
wx.showToast({
icon: "none",
title: "体重不能为空"
})
return false;
}
if(this.data.customerType === "1") {
this.submitMe({
realname: realname,
sex: sex.data[sex.index].id,
birthday: birthday.value,
phone: phone,
height: height.data[height.index],
weight: weight.data[weight.index]
});
} else {
this.submitUser({
id: this.data.id,
realname: realname,
sex: sex.data[sex.index].id,
birthday: birthday.value,
height: height.data[height.index],
weight: weight.data[weight.index]
});
}
},
// 提交自己的信息
submitMe(params) {
$.ajax("weighingScale/edit/user", params, "POST", true, "保存中...").then(res => {
$.ajax("weighingScale/select/user", {}, "GET", true, "更新用户信息中...").then(res_ => {
wx.setStorageSync("userInfo", res_.result);
wx.showToast({
icon: "none",
title: res.message
})
if(this.data.initBluetooth === "1") {
app.globalData.ppScale.activeProtocol.dataSyncUserInfo({
userID: res_.result.id,
userName: res_.result.realname,
memberID: "",
age: this.getAge(res_.result.birthday), //
gender: res_.result.sex, //
height: res_.result.height, //
isAthleteMode: 0,
currentWeight: res_.result.weight, //
deviceHeaderIndex: 0,
targetWeight: "",
idealWeight: "",
recentData: [],
}, (res) => {
console.log("dataSyncUserInfo", res)
app.globalData.ppScale.plugin.Blue.stop();
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500)
})
} else {
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500)
}
})
})
},
// 提交家庭成员的信息
submitUser(params) {
$.ajax("weighingScale/edit/subUser", params, "POST", true, "保存中...").then(res => {
wx.showToast({
icon: "none",
title: res.message
})
app.globalData.ppScale.activeProtocol.dataSyncUserInfo({
userID: wx.getStorageSync("userInfo").id,
userName: params.realname,
memberID: res.result,
age: this.getAge(params.birthday), //
gender: params.sex, //
height: params.height, //
isAthleteMode: 0,
currentWeight: params.weight, //
deviceHeaderIndex: 0,
targetWeight: "",
idealWeight: "",
recentData: [],
}, (res) => {
console.log("dataSyncUserInfo", res)
app.globalData.ppScale.plugin.Blue.stop();
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500)
})
})
},
// 删除家庭成员
delUser() {
if(this.data.deviceConnect) {
wx.showModal({
title: "提示",
content: "你要定要删除此成员吗?",
success: (res) => {
if (res.confirm) {
let params = {
id: this.data.id
};
console.log(params);
$.ajax("weighingScale/del/subUser", params, "POST", true, "删除中...").then(res => {
wx.showToast({
icon: "none",
title: res.message
})
app.globalData.ppScale.activeProtocol.dataDeleteUser({
userID: wx.getStorageSync("userInfo").id,
memberID: this.data.id,
}, (res) => {
console.log("dataDeleteUser", res);
app.globalData.ppScale.plugin.Blue.stop();
setTimeout(() => {
wx.navigateBack({
delta: 1
})
}, 1500);
})
})
}
}
})
} else {
wx.showToast({
icon: "none",
title: "删除失败,请靠近设备并点亮后再试"
})
app.globalData.ppScale.plugin.Blue.start(this.data.seviceList[0].deviceName, false);
}
},
// 获取家庭成员信息详情
subUserInfo() {
let params = {
userId: this.data.id
};
$.ajax("weighingScale/select/subUser", params, "GET", false).then(res => {
let [year, month, day] = res.result.birthday.split("-");
this.setData({
realname: res.result.realname,
["sex.index"]: this.data.sex.data.findIndex(item => {return item.id === res.result.sex}),
birthday: {
label: year + "年" + month + "月" + day + "日",
value: res.result.birthday
},
["height.index"]: this.data.height.data.findIndex(item => {return item === res.result.height}),
["weight.index"]: this.data.weight.data.findIndex(item => {return item === res.result.weight}),
})
})
},
// 根据生日获取年龄
getAge(birthDateString) {
const birthDate = new Date(birthDateString);
const today = new Date();
let age = today.getFullYear() - birthDate.getFullYear();
const monthDiff = today.getMonth() - birthDate.getMonth();
const dayDiff = today.getDate() - birthDate.getDate();
// 如果当前月份小于出生月份,或者同月但当前日期小于出生日期,年龄需要减 1
if (monthDiff < 0 || (monthDiff === 0 && dayDiff < 0)) {
age--;
}
return age;
},
onUnload() {
if(this.data.initBluetooth === "1") {
app.globalData.ppScale.plugin.Blue.stop();
}
}
})
-6
View File
@@ -1,6 +0,0 @@
{
"usingComponents": {},
"navigationBarTitleText": "用户档案",
"navigationBarBackgroundColor": "#F5F7FB",
"disableScroll": true
}
-81
View File
@@ -1,81 +0,0 @@
<block wx:if="{{initBluetooth === '1'}}">
<view class="device">
<view>
<view>{{deviceInfo && deviceInfo.equipmentName ? deviceInfo.equipmentName : '获取中...'}}</view>
<view>型号:{{deviceInfo && deviceInfo.type ? deviceInfo.type : '获取中...'}}</view>
</view>
<view>
<view style="background-color: {{connectedDevice.color}};"></view>
<view style="color: {{connectedDevice.color}};">{{connectedDevice.message}}</view>
</view>
</view>
</block>
<view class="form">
<view>
<view>姓名</view>
<view>
<input
type="text"
value="{{realname}}"
bindinput="realnameInput"
placeholder="请输入姓名"
placeholder-class="placeholderClass" />
</view>
</view>
<view>
<view>性别</view>
<view class="arrowAfter">
<picker bindchange="sexChange" value="{{sex.index}}" range="{{sex.data}}" range-key="name">
{{sex.index === null ? '请选择性别' : sex.data[sex.index].name}}
</picker>
</view>
</view>
<view>
<view>生日</view>
<view class="arrowAfter">
<picker bindchange="birthdayChange" mode="date" value="{{birthday.value}}">
{{birthday.value ? birthday.label : '请选择生日'}}
</picker>
</view>
</view>
<block wx:if="{{customerType === '1'}}">
<view>
<view>手机号</view>
<view>
<block wx:if="{{phone}}">
{{phone}}
</block>
<block wx:else>
<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">点击获取手机号</button>
</block>
</view>
</view>
</block>
<view>
<view>身高</view>
<view class="arrowAfter">
<picker bindchange="heightChange" value="{{height.index}}" range="{{height.data}}">
{{height.index === null ? '请选择身高' : height.data[height.index] + ' cm'}}
</picker>
</view>
</view>
<view>
<view>体重</view>
<view class="arrowAfter">
<picker bindchange="weightChange" value="{{weight.index}}" range="{{weight.data}}">
{{weight.index === null ? '请选择体重' : weight.data[weight.index] + ' kg'}}
</picker>
</view>
</view>
</view>
<view class="btn" bind:tap="submit">确定</view>
<block wx:if="{{!userInfo && !id}}">
<view class="tips">请填写和完善您家人的健康信息,将用于计算身体数据及运动卡路里消耗等,以便准确的分析数据。我们会严格保护您的家庭信息安全。</view>
</block>
<block wx:if="{{customerType === '0' && id}}">
<view class="delBtn" bind:tap="delUser">删除该档案</view>
</block>
-145
View File
@@ -1,145 +0,0 @@
page {
padding: 30rpx 30rpx 0;
}
.device {
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 35rpx 40rpx;
border-radius: 24rpx;
box-sizing: border-box;
margin-bottom: 24rpx;
background-color: #FFFFFF;
justify-content: space-between;
}
.device>view:nth-of-type(1)>view:nth-of-type(1) {
color: #252535;
height: 32rpx;
font-weight: bold;
font-size: 32rpx;
line-height: 32rpx;
margin-bottom: 22rpx;
}
.device>view:nth-of-type(1)>view:nth-of-type(2) {
color: #808080;
height: 26rpx;
font-size: 26rpx;
line-height: 26rpx;
}
.device>view:nth-of-type(2) {
height: 28rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.device>view:nth-of-type(2)>view:nth-of-type(1) {
width: 14rpx;
height: 14rpx;
border-radius: 50%;
}
.device>view:nth-of-type(2)>view:nth-of-type(2) {
height: 28rpx;
font-weight: bold;
font-size: 28rpx;
line-height: 28rpx;
padding-left: 8rpx;
}
.form {
width: 100%;
padding: 0 30rpx;
border-radius: 16rpx;
box-sizing: border-box;
background-color: #FFFFFF;
margin-bottom: 80rpx;
}
.form>view {
width: 100%;
height: 120rpx;
padding: 0 10rpx;
display: flex;
flex-wrap: nowrap;
box-sizing: border-box;
border-bottom: 1rpx solid #EAECF1;
}
.form>view>view:first-of-type {
color: #252535;
height: 120rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 120rpx;
}
.form>view>view:last-of-type {
flex: 1;
width: 0;
color: #B6B6B6;
font-size: 28rpx;
height: 120rpx;
line-height: 120rpx;
text-align: right;
}
.form>view>view:last-of-type.arrowAfter {
padding-right: 30rpx;
}
.form>view>view:last-of-type input {
color: #252535;
width: 100%;
height: 120rpx;
line-height: 120rpx;
text-align: right;
}
.placeholderClass {
color: #B6B6B6;
font-size: 28rpx;
}
.form>view {
border-bottom: 0;
}
.btn {
color: #FFFFFF;
width: 580rpx;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
margin: 0 auto 50rpx;
background-color: #1385FA;
}
.tips {
color: #77849E;
width: 100%;
font-size: 26rpx;
line-height: 40rpx;
padding: 0 30rpx;
box-sizing: border-box;
}
.delBtn {
color: #1385FA;
width: 580rpx;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
margin: 0 auto;
}