123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <view class="content">
- <view class="list">
- <view class="title">
- <view>
- <image src="/static/image/myx.png" mode=""></image>
- <text class="question">ETC使用问题</text>
- </view>
- <text class="status">待处理</text>
- </view>
- <view class="bot">
- <view class="details">
- <view><text>工单号码:</text><view>0921793812311110</view></view>
- <view><text>发生日期:</text><view>2025-03-05</view></view>
- <view><text>客户诉求:</text><view>这是客户诉求详情这是客户诉求详情,这是 客户诉求详情。</view></view>
- </view>
- <view class="time">2025.03.06 10:21:09</view>
- </view>
-
- </view>
- </view>
- <image class="add" src="/static/image/wode.png" mode=""></image>
- </template>
-
- <script setup lang="ts">
-
- </script>
-
- <style lang="scss" scoped>
- .content{
- padding-top: 30rpx;
- box-sizing: border-box;
- }
- .list{
- background: #FFFFFF;
- border-radius: 12rpx;
- border: 1px solid #FFFFFF;
- width: 90%;
- margin: 0 auto;
- font-weight: 400;
- .title{
- padding: 0 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 80rpx;
- image{
- width: 23rpx;
- height: 23rpx;
-
- }
- .question{
- font-size: 30rpx;
- color: #01243A;
- margin-left: 10rpx;
- }
- .status{
- font-size: 24rpx;
- color: #1458E5;
- background: #E3ECFF;
- border-radius: 6rpx;
- border: 1px solid #1458E5;
- padding: 4rpx 6rpx;
- }
- }
- .bot{
- padding: 0 20rpx;
- .details{
- font-size: 26rpx;
- padding: 10rpx 0 5rpx 0;
- view{
- display: flex;
- margin-bottom: 5rpx;
- text{
- color: #999999;
- width: 21%;
- }
- view{
- color: #002025;
- width: 79%;
- }
- }
- }
- .time{
- font-size: 24rpx;
- color: #999999;
- padding:20rpx 0;
- border-top: 1rpx solid #DCDCDC;
- }
- }
-
- }
- .add{
- position: fixed;
- z-index: 999;
- bottom: 40rpx;
- right: 40rpx;
- width: 174rpx;
- height: 174rpx;
- }
- </style>
|