@@ -100,11 +100,13 @@
@search="search(3)"
/>
<!-- 订单列表 -->
- <dislogOrderList
+ <dislog-order-list
+ divideModel="2"
:info="activeOrderInfo"
:dialogVisible.sync="orderDialogVisible"
<dislog-divide-pay
+ type="2"
:dialogVisible.sync="examineDialogVisible"
@search="search"
@@ -52,7 +52,11 @@
</template>
</BaseDialog>
- <dislogOrderList :info="info" :dialogVisible.sync="orderDialogVisible" />
+ <dislogOrderList
+ :divideModel="type"
+ :info="info"
+ :dialogVisible.sync="orderDialogVisible"
+ />
</div>
@@ -71,6 +75,10 @@ export default {
return {};
},
+ type: {
+ type: String,
+ default: "1",
+ },
data() {
return {
@@ -196,7 +196,6 @@ export default {
prop: "orderType",
scope: "type",
hidden: true,
- // width: 100,
values: {
1: "完单分成",
2: "退款扣除",
@@ -206,21 +205,21 @@ export default {
label: "订单金额",
prop: "orderPrice",
scope: "formatPrice",
{
label: "税前佣金",
prop: "pretaxBrokerage",
label: "应付分成",
- prop: "payMoney",
+ prop:
+ this.divideModel == "1"
+ ? "divideCompanyMoney"
+ : "divideSellerMoney",
],
@@ -103,7 +103,7 @@