|
|
@@ -41,7 +41,10 @@
|
|
|
<text class="detail-label">巡店奖励</text>
|
|
|
<text class="detail-value reward">{{ patrolDetails.reward }}</text>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view class="detail-item">
|
|
|
+ <text class="detail-label">定位地址</text>
|
|
|
+ <text class="detail-value">{{ patrolDetails.remarks }}</text>
|
|
|
+ </view>
|
|
|
<view class="detail-item">
|
|
|
<text class="detail-label">备注</text>
|
|
|
<text class="detail-value">{{ patrolDetails.remarks }}</text>
|
|
|
@@ -89,7 +92,8 @@ export default {
|
|
|
reward: '',
|
|
|
remarks: '',
|
|
|
storefrontPhoto: '',
|
|
|
- displayPhoto: ''
|
|
|
+ displayPhoto: '',
|
|
|
+ storeLocation:""
|
|
|
}
|
|
|
};
|
|
|
},
|
|
|
@@ -118,7 +122,8 @@ export default {
|
|
|
remarks: data.remark,
|
|
|
// 请替换为您真实的图片URL
|
|
|
storefrontPhoto: data.storeImg,
|
|
|
- displayPhoto: data.displayImg
|
|
|
+ displayPhoto: data.displayImg,
|
|
|
+ storeLocation:data.storeLocation
|
|
|
};
|
|
|
uni.hideLoading();
|
|
|
})
|