|
@@ -22,9 +22,13 @@
|
|
|
<view>发货状态:</view>
|
|
<view>发货状态:</view>
|
|
|
<view style="color:green;font-weight:bold;font-size:30upx;">待收货</view>
|
|
<view style="color:green;font-weight:bold;font-size:30upx;">待收货</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <view class="order-info_box" v-if="detailInfo.fhType == 1">
|
|
|
|
|
+ <view>物流名称:</view>
|
|
|
|
|
+ <view>{{ detailInfo.fhWl }}</view>
|
|
|
|
|
+ </view>
|
|
|
<view class="order-info_box" v-if="detailInfo.fhType == 1">
|
|
<view class="order-info_box" v-if="detailInfo.fhType == 1">
|
|
|
<view>物流单号:</view>
|
|
<view>物流单号:</view>
|
|
|
- <view>{{ detailInfo.fhWl }} {{detailInfo.fhWlNo}}</view>
|
|
|
|
|
|
|
+ <view>{{detailInfo.fhWlNo}}</view>
|
|
|
<view class="price">
|
|
<view class="price">
|
|
|
<button @click="copyWl(detailInfo.fhWlNo)" class="admin-button-com default">复制单号</button>
|
|
<button @click="copyWl(detailInfo.fhWlNo)" class="admin-button-com default">复制单号</button>
|
|
|
</view>
|
|
</view>
|
|
@@ -325,6 +329,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
<script>
|
|
<script>
|
|
|
import { mapGetters } from "vuex";
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
+import { getCgExpressTrack } from "@/api/express"
|
|
|
import { purchaseDetail, purchaseDebtPay,purchaseClearCreateOrder,confirmTake } from "@/api/purchase";
|
|
import { purchaseDetail, purchaseDebtPay,purchaseClearCreateOrder,confirmTake } from "@/api/purchase";
|
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
|
import { getGhsDataApi } from "@/api/ghs";
|
|
import { getGhsDataApi } from "@/api/ghs";
|
|
@@ -533,6 +538,12 @@ export default {
|
|
|
that.settlePrice = parseFloat(that.settlePrice.toFixed(2))
|
|
that.settlePrice = parseFloat(that.settlePrice.toFixed(2))
|
|
|
that.afterSale = res.data.afterSale
|
|
that.afterSale = res.data.afterSale
|
|
|
that.$forceUpdate()
|
|
that.$forceUpdate()
|
|
|
|
|
+
|
|
|
|
|
+ if (!this.$util.isEmpty(that.detailInfo.fhWlSn)){
|
|
|
|
|
+ //获取运单轨迹
|
|
|
|
|
+ //getCgExpressTrack({id:id}).then(res=>{ })
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
toPay () {
|
|
toPay () {
|