|
|
|
|
@ -13,7 +13,7 @@ import {
|
|
|
|
|
RichText,
|
|
|
|
|
PageMeta,
|
|
|
|
|
} from "@tarojs/components";
|
|
|
|
|
import { Popup } from "@antmjs/vantui";
|
|
|
|
|
import { Popup,Radio } from "@antmjs/vantui";
|
|
|
|
|
/*** redux ***/
|
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
|
import { userRefresh, tokenRefresh } from "@/store/features/userInfo";
|
|
|
|
|
@ -83,8 +83,24 @@ class Index extends Component<any, any> {
|
|
|
|
|
userinfo: {
|
|
|
|
|
mobile: Taro.getStorageSync("mobile"),
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
list: [],
|
|
|
|
|
// 膜布列表
|
|
|
|
|
MembraneClothList:[ {
|
|
|
|
|
name:'mox名字'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name:'mox名字'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name:'mox名字'
|
|
|
|
|
}, {
|
|
|
|
|
name:'mox名字'
|
|
|
|
|
}, {
|
|
|
|
|
name:'mox名字'
|
|
|
|
|
},],
|
|
|
|
|
checkedMembraneCloth:'',
|
|
|
|
|
list: [
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
params: "",
|
|
|
|
|
messageCount: Taro.getStorageSync("messageCount") || 0,
|
|
|
|
|
offlineDialogType: 1, //1离线弹窗 2升级弹窗
|
|
|
|
|
@ -1092,6 +1108,7 @@ class Index extends Component<any, any> {
|
|
|
|
|
show,
|
|
|
|
|
isCommonError,
|
|
|
|
|
commonErrorText,
|
|
|
|
|
MembraneClothList,
|
|
|
|
|
calendarComplete,
|
|
|
|
|
calendarInComplete,
|
|
|
|
|
currentDate,
|
|
|
|
|
@ -1457,6 +1474,32 @@ class Index extends Component<any, any> {
|
|
|
|
|
<Popup show={show} className="custom-popup" overlay={false}>
|
|
|
|
|
<View className="popBox">你已绑定所有设备</View>
|
|
|
|
|
</Popup>
|
|
|
|
|
|
|
|
|
|
<Popup show={false} >
|
|
|
|
|
<View className="MembraneCloth">
|
|
|
|
|
<View className="title">膜布选择</View>
|
|
|
|
|
<View className="center">
|
|
|
|
|
{MembraneClothList.map((item, index) => {
|
|
|
|
|
return (
|
|
|
|
|
<View
|
|
|
|
|
key={index}
|
|
|
|
|
className="list"
|
|
|
|
|
>
|
|
|
|
|
<Radio name="1" v-model={this.state.checkedMembraneCloth}>{item.name}</Radio>
|
|
|
|
|
|
|
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</View>
|
|
|
|
|
<View className="popbtnbox flex aitems jcenter">
|
|
|
|
|
<View className="btn1" >
|
|
|
|
|
确认
|
|
|
|
|
</View>
|
|
|
|
|
</View>
|
|
|
|
|
</View>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Popup>
|
|
|
|
|
{/* </PageMeta> */}
|
|
|
|
|
{/* <View
|
|
|
|
|
style="position:fixed;width:100vw;height:100vh"
|
|
|
|
|
|