add:1.积分过期提醒弹窗 2.@antmjs/vantui自动引入css
parent
6dbbe576f3
commit
9bbbf5daf6
@ -1,63 +1,20 @@
|
|||||||
.alert-box {
|
.text-left {
|
||||||
width: 650rpx;
|
text-align: left;
|
||||||
// height: 800rpx;
|
|
||||||
padding: 40rpx;
|
|
||||||
padding-bottom: 80rpx;
|
|
||||||
box-sizing: border-box;
|
|
||||||
.alert-popup-title {
|
|
||||||
font-size: 36rpx;
|
|
||||||
font-weight: 700;
|
|
||||||
text-align: center;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.alert-popup-content-box {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alert-popup-content {
|
|
||||||
font-size: 28rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
max-height: 600rpx;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alert-popup-content.is-alert {
|
|
||||||
color: #41a9fc;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alert-popup-content.is-last {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-popup-btns {
|
.type3btn {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 76rpx;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
align-items: center;
|
||||||
|
|
||||||
.alert-popup-btn {
|
|
||||||
width: 480rpx;
|
|
||||||
height: 80rpx;
|
|
||||||
line-height: 80rpx;
|
|
||||||
font-size: 30rpx;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1rpx solid #000;
|
padding: 10rpx;
|
||||||
border-radius: 40rpx;
|
margin-top: -20rpx;
|
||||||
color: #fff;
|
.checked {
|
||||||
background-color: #000;
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
}
|
}
|
||||||
|
.text {
|
||||||
.pupup-close {
|
color: #666;
|
||||||
position: absolute;
|
|
||||||
right: 30rpx;
|
|
||||||
top: 30rpx;
|
|
||||||
color: #000;
|
|
||||||
font-size: 36rpx;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-left {
|
|
||||||
text-align: left;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
export default definePageConfig({
|
||||||
|
navigationBarTitleText: "护理历程",
|
||||||
|
});
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
import { Component, PropsWithChildren, useEffect, useState } from "react";
|
||||||
|
import Taro from "@tarojs/taro";
|
||||||
|
import { Block, View, Text, Image, Input, Button } from "@tarojs/components";
|
||||||
|
|
||||||
|
import { Tab, Tabs } from "@antmjs/vantui";
|
||||||
|
|
||||||
|
import "./recording.less";
|
||||||
|
|
||||||
|
export default class Recording extends Component<any, any> {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
name: "护理历程",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async onLoad() {}
|
||||||
|
componentDidMount() {}
|
||||||
|
|
||||||
|
componentWillUnmount() {}
|
||||||
|
|
||||||
|
componentDidShow() {}
|
||||||
|
|
||||||
|
componentDidHide() {}
|
||||||
|
|
||||||
|
async initData() {}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
let { name } = this.state;
|
||||||
|
return <View>{name}</View>;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue