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