文件名从 sub_pages/supplier/order-sale/order-sale.vue 修改 |
| | |
| | | <view class="order-sale-item br-4 list-item bg-white"> |
| | | <view class="title flex"> |
| | | <view>售后单号:{{item.salesNo}}</view> |
| | | <view class="m-l-a m-r-0 status">审核状态:{{item.auditStatusStr}}</view> |
| | | <view class="m-l-a m-r-0 status">审核状态:{{item.auditStatusStr||'-'}}</view> |
| | | </view> |
| | | <view class="line"></view> |
| | | <view class="form"> |
| | | <view class="sale-form"> |
| | | <view class="form-item"> |
| | | <view class="label" @click="copyTxt(item.orderNo)">订单单号</view> |
| | | <view class="value">{{item.orderNo}}</view> |
| | |
| | | } |
| | | }, |
| | | onLoad() { |
| | | // #ifdef PUB_SUPPLIER |
| | | this.listApi = '/api/supplier/sales/list' |
| | | // #endif |
| | | // #ifdef PUB_PARTNER |
| | | this.listApi = '/api/partner/sales/list' |
| | | // #endif |
| | | // #ifdef PUB_CUSTOMER |
| | | this.listApi = '/api/customer/sales/list' |
| | | // #endif |
| | | this.getList() |
| | | |
| | | }, |
| | |
| | | }, |
| | | toDetail(item) { |
| | | uni.navigateTo({ |
| | | url: `/sub_pages/supplier/order-sale/order-sale-detail?id=${item.id}` |
| | | url: `/pages/order/order-sale/order-sale-detail?id=${item.id}` |
| | | }) |
| | | } |
| | | } |
| | |
| | | margin-bottom: 16rpx; |
| | | } |
| | | |
| | | .form { |
| | | display: flex; |
| | | flex-wrap: wrap; |
| | | .sale-form { |
| | | // display: flex; |
| | | // flex-wrap: wrap; |
| | | |
| | | .form-item { |
| | | display: flex; |
| | | flex: 1; |
| | | // min-width: 40%; |
| | | // max-width: 50%; |
| | | line-height: 40rpx; |
| | | font-size: 28rpx; |
| | | |
| | | .label { |
| | | font-weight: 400; |
| | | font-size: 24rpx; |
| | | color: #666666; |
| | | line-height: 34rpx; |
| | | } |
| | | |
| | | .label::after { |
| | | content: ":"; |
| | | font-weight: 400; |
| | | font-size: 24rpx; |
| | | color: #666666; |
| | | line-height: 34rpx; |
| | | } |
| | | |
| | | .value { |
| | | font-weight: 400; |
| | | font-size: 24rpx; |
| | | color: #000000; |
| | | line-height: 34rpx; |
| | | } |
| | | |
| | | .value.red { |