add:1.积分过期提醒弹窗 2.@antmjs/vantui自动引入css
parent
6dbbe576f3
commit
9bbbf5daf6
@ -1,63 +1,20 @@
|
||||
.alert-box {
|
||||
width: 650rpx;
|
||||
// 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;
|
||||
.text-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.alert-popup-btns {
|
||||
.type3btn {
|
||||
display: flex;
|
||||
margin-top: 76rpx;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.alert-popup-btn {
|
||||
width: 480rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
font-size: 30rpx;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
border: 1rpx solid #000;
|
||||
border-radius: 40rpx;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.pupup-close {
|
||||
position: absolute;
|
||||
right: 30rpx;
|
||||
top: 30rpx;
|
||||
color: #000;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
|
||||
.text-left {
|
||||
text-align: left;
|
||||
padding: 10rpx;
|
||||
margin-top: -20rpx;
|
||||
.checked {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
margin-right: 30rpx;
|
||||
}
|
||||
.text {
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
|
||||
@ -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