123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* pages/manageComplaint/manageComplaint.wxss */
- /* 设置页面背景 */
- page{
- height: 100%;
- padding: 20rpx;
- background-color: #E2F0D9;
- }
- .handleComplaintWrapper{
- width: 94%;
- }
- /* 投诉列表 */
- .handleComplaint{
- padding: 20rpx;
- border-radius: 20rpx;
- background-color: #FFF2CC;
- margin-bottom: 20rpx;
- }
- /* 日期和状态 */
- .complaintDateStatus{
- display: flex;
- position: relative;
- }
- /* 处理状态 */
- .handleStatus{
- position: absolute;
- left: 56%;
- }
- /* 投诉号、日期、状态详情 */
- .complaintNum,
- .complaintDate,
- .complaintStatus{
- margin-left: 20rpx;
- font-weight: bold;
- }
- /* 状态字体颜色 */
- .complaintStatus{
- color: red;
- }
|