chenrui 3 ヶ月 前
コミット
6790207ba8
1 ファイル変更3 行追加2 行削除
  1. 3 2
      src/views/salesManagement/onlinePayOrder/detail.vue

+ 3 - 2
src/views/salesManagement/onlinePayOrder/detail.vue

@@ -11,7 +11,7 @@
             <a-icon :type="isShowBisiceInfo ? 'eye-invisible' : 'eye'"/>
             {{ isShowBisiceInfo?'隐藏':'查看' }}信息
           </a-button>
-          <a-button id="onlinePayDetail-back-btn" type="link" @click="handleBack" class="button-default"> <a-icon type="rollback" /> 返回列表</a-button>
+          <a-button id="onlinePayDetail-back-btn" type="link" @click="handleBack" class="button-default"> <a-icon type="rollback" />返回列表</a-button>
         </template>
         <!-- 操作区,位于 title 行的行尾 -->
         <template slot="extra" v-if="outBizSn ? $hasPermissions('B_outboundOrderDetail') : $hasPermissions('B_onlinePayPrint')">
@@ -81,6 +81,7 @@
                 总成本:<strong>{{ detailData&&(detailData.totalCost || detailData.totalCost==0) ? toThousands(detailData.totalCost) : '--' }}</strong>;
                 总毛利:<strong>{{ detailData&&(detailData.grossProfit || detailData.grossProfit==0) ? toThousands(detailData.grossProfit) : '--' }}</strong>;
               </template>
+              <span>实收总售价:<strong>{{ detailData&&(detailData.totalRealAmount || detailData.totalRealAmount==0) ? toThousands(detailData.totalRealAmount) : '--' }}</strong>;</span>
               <span v-if="detailData&&detailData.sourceType&&detailData.sourceType==='XPRH_PURCHASE'"> 返券金额:<strong>{{ detailData&&(detailData.totalGiveAmount || detailData.totalGiveAmount==0) ? toThousands(detailData.totalGiveAmount) : '--' }}</strong>;</span>
               <span>抵扣金额:<strong>{{ detailData&&(detailData.subsidyAmount || detailData.subsidyAmount==0) ? toThousands(detailData.subsidyAmount) : '--' }}</strong>;</span>
             </div>
@@ -299,7 +300,7 @@ export default {
     },
     //  返回
     handleBack () {
-      this.$router.push({ name: 'onlinePayOrderList' })
+      this.$router.push({ name: 'onlinePayOrder' })
     },
     //  详情
     getDetail () {