| | |
| | | async onLoad(options) { |
| | | this.orderItemId = options.orderItemId || '' |
| | | this.op = options.op || '' |
| | | this.opStr = options.opStr || '' |
| | | if (this.opStr) { |
| | | uni.setNavigationBarTitle({ |
| | | title: opStr |
| | | }) |
| | | } |
| | | |
| | | await this.init() |
| | | |
| | |
| | | <template> |
| | | <view class="delivery-detail-page bg-white p20"> |
| | | <no-data v-if="!dto.id" style="width: 100%;"></no-data> |
| | | |
| | | |
| | | <view v-if="dto.id"> |
| | | <view class="delivery-info p10 flex"> |
| | | <view class="flex1"> |
| | |
| | | <view class="name" v-if="dto.targetLevel">降级等级:{{ dto.targetLevelStr || dto.targetLevel || '-'}} |
| | | </view> |
| | | |
| | | <view class="name" v-if="dto.type">处理类型:{{ dto.type || '-'}}</view> |
| | | <!-- <view class="name" v-if="dto.type">处理类型:{{ dto.type || '-'}}</view> --> |
| | | <view class="name">处理数量:{{ dto.num || '-' }}</view> |
| | | <view class="name">扣款金额:{{ dto.deductAmount || '-'}}</view> |
| | | |