Commit 788e4ee6 authored by dragondean@qq.com's avatar dragondean@qq.com

Merge branch 'fix/price_query' into dev

# Conflicts:
#	src/views/ecw/order/prepayDeal.vue
parents f9afc26f f3dcd007
...@@ -1140,7 +1140,7 @@ ...@@ -1140,7 +1140,7 @@
<!-- <span v-if="!scope.row.oneSeaFreight">{{$t('运费')}}:{{$t('未报价')}}</span> --> <!-- <span v-if="!scope.row.oneSeaFreight">{{$t('运费')}}:{{$t('未报价')}}</span> -->
<div v-if="orderExceptionData.orderExceptionStatus == 0"> <div v-if="orderExceptionData.orderExceptionStatus == 0">
<div> <div>
<el-form-item v-if="unitChangable" :label="$t('是否预付')"> <el-form-item v-if="unitChangable && handlerParams.orderExceptionHandlerResult != 'confirmed_return'" :label="$t('是否预付')">
<el-radio-group v-model="row.needPay"> <el-radio-group v-model="row.needPay">
<el-radio :label="1">{{ $t("预付") }}</el-radio> <el-radio :label="1">{{ $t("预付") }}</el-radio>
<el-radio :label="0">{{ $t("均可") }}</el-radio> <el-radio :label="0">{{ $t("均可") }}</el-radio>
...@@ -1148,7 +1148,7 @@ ...@@ -1148,7 +1148,7 @@
</el-form-item> </el-form-item>
</div> </div>
<div> <div>
<el-form-item v-if="unitChangable" :label="$t('单价模式')"> <el-form-item v-if="unitChangable && handlerParams.orderExceptionHandlerResult != 'confirmed_return'" :label="$t('单价模式')">
<dict-selector <dict-selector
:type="DICT_TYPE.ECW_PRICE_TYPE" :type="DICT_TYPE.ECW_PRICE_TYPE"
v-model="row.charging" v-model="row.charging"
...@@ -1157,7 +1157,7 @@ ...@@ -1157,7 +1157,7 @@
/> />
</el-form-item> </el-form-item>
</div> </div>
<div class="price_list"> <div class="price_list" v-if="handlerParams.orderExceptionHandlerResult != 'confirmed_return'">
<div class="price_label">{{ row.charging == 1 ? $t('全包价') : $t("运费") }}:</div> <div class="price_label">{{ row.charging == 1 ? $t('全包价') : $t("运费") }}:</div>
<div class="price_list"> <div class="price_list">
<div <div
...@@ -1184,7 +1184,7 @@ ...@@ -1184,7 +1184,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="price_list" v-if="row.charging === 0 || row.charging === '0'"> <div class="price_list" v-if="(row.charging === 0 || row.charging === '0') && handlerParams.orderExceptionHandlerResult != 'confirmed_return'">
<div class="price_label">{{ $t("清关费") }}:</div> <div class="price_label">{{ $t("清关费") }}:</div>
<div class="price_list"> <div class="price_list">
<div <div
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment