|
|
@@ -74,21 +74,6 @@
|
|
74
|
74
|
<follow-card v-if="recordType === 'followRecord'" :key="'followRecord'" :clue-id="currentClueId" type="5" />
|
|
75
|
75
|
</view>
|
|
76
|
76
|
|
|
77
|
|
- <!-- 核价信息卡片 -->
|
|
78
|
|
- <view v-if="hasInquiryInfo" class="info-card">
|
|
79
|
|
- <view class="info-card-title">核价信息</view>
|
|
80
|
|
- <u-row class="info-row">
|
|
81
|
|
- <u-col span="6">
|
|
82
|
|
- <view class="info-label">核价次数</view>
|
|
83
|
|
- <view class="info-value">{{ currentReceipt.inquiryCount || 0 }}</view>
|
|
84
|
|
- </u-col>
|
|
85
|
|
- <u-col span="6">
|
|
86
|
|
- <view class="info-label">核价价格</view>
|
|
87
|
|
- <view class="info-value">¥{{ currentReceipt.inquiryPrice || 0 }}</view>
|
|
88
|
|
- </u-col>
|
|
89
|
|
- </u-row>
|
|
90
|
|
- </view>
|
|
91
|
|
-
|
|
92
|
77
|
<!-- 基本信息卡片 -->
|
|
93
|
78
|
<view class="info-card">
|
|
94
|
79
|
<view class="info-card-title">基本信息</view>
|
|
|
@@ -174,10 +159,6 @@ export default {
|
|
174
|
159
|
computed: {
|
|
175
|
160
|
currentClueId() {
|
|
176
|
161
|
return (this.currentReceipt && this.currentReceipt.clueId) || (this.orderDetail && this.orderDetail.clueId) || ''
|
|
177
|
|
- },
|
|
178
|
|
- // 是否有核价信息
|
|
179
|
|
- hasInquiryInfo() {
|
|
180
|
|
- return this.currentReceipt && (this.currentReceipt.inquiryCount || this.currentReceipt.inquiryPrice)
|
|
181
|
162
|
}
|
|
182
|
163
|
},
|
|
183
|
164
|
watch: {
|