Commit 37c6fd3a authored by 沈良进's avatar 沈良进
parents 339e5d66 17a2115c
...@@ -20,14 +20,15 @@ ...@@ -20,14 +20,15 @@
<span class="cF1416C" <span class="cF1416C"
:class="{'cursor-pointer':(objNew.createTime&&objNew.createTime>=new Date('2023-04-01').Format('yyyy-MM-dd')) :class="{'cursor-pointer':(objNew.createTime&&objNew.createTime>=new Date('2023-04-01').Format('yyyy-MM-dd'))
||(objNew.createDate&&objNew.createDate>=new Date('2023-04-01').Format('yyyy-MM-dd')) ||(objNew.createDate&&objNew.createDate>=new Date('2023-04-01').Format('yyyy-MM-dd'))
||(objNew.CreateTime&&objNew.CreateTime>=new Date('2023-04-01').Format('yyyy-MM-dd')) ||(objNew.CreateTime&&new Date(objNew.CreateTime).Format('yyyy-MM-dd')>=new Date('2023-04-01').Format('yyyy-MM-dd'))}"
||(objNew.CreateTime&&objNew.CreateTime>=new Date('2023/04/01').Format('yyyy/MM/dd'))
&&objNew.commissionMoney>0}"
@click="(objNew.createTime&&objNew.createTime>=new Date('2023-04-01').Format('yyyy-MM-dd')) @click="(objNew.createTime&&objNew.createTime>=new Date('2023-04-01').Format('yyyy-MM-dd'))
||(objNew.createDate&&objNew.createDate>=new Date('2023-04-01').Format('yyyy-MM-dd')) ||(objNew.createDate&&objNew.createDate>=new Date('2023-04-01').Format('yyyy-MM-dd'))
||(objNew.CreateTime&&objNew.CreateTime>=new Date('2023-04-01').Format('yyyy-MM-dd')) ||(objNew.CreateTime&&new Date(objNew.CreateTime).Format('yyyy-MM-dd')>=new Date('2023-04-01').Format('yyyy-MM-dd'))?DetailsOfRoyalty():''">
||(objNew.CreateTime&&objNew.CreateTime>=new Date('2023/04/01').Format('yyyy/MM/dd'))?DetailsOfRoyalty():''"> <span class="fz15 fbold">
<span class="fz15 fbold">{{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }} {{objNew.commissionCurrency?objNew.commissionCurrency:''}}</span> <!-- {{objNew.commissionCurrency?objNew.commissionCurrency:objNew.CurrencyName!='人民币'?objNew.CurrencyName:'¥'}} -->
{{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }}
{{objNew.commissionCurrency?objNew.commissionCurrency:''}}
</span>
</span> </span>
<el-dialog width="1000px" title="提成详情" :visible.sync="outerVisible" center> <el-dialog width="1000px" title="提成详情" :visible.sync="outerVisible" center>
<div class="flexOne domesticCommissionUser"> <div class="flexOne domesticCommissionUser">
...@@ -150,7 +151,6 @@ ...@@ -150,7 +151,6 @@
}, },
methods: { methods: {
goUrl(){ goUrl(){
console.log(this.objNew,'----')
this.outerVisible = false this.outerVisible = false
this.$router.push({ this.$router.push({
path: 'TradeTicketUserDetails', path: 'TradeTicketUserDetails',
......
...@@ -509,11 +509,7 @@ ...@@ -509,11 +509,7 @@
<span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span> <span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.SellCommission&&item.SellCommission>0" label="提成" style="background:#EAEAEA">
<template slot-scope="scope">
<commissionDialog :objNew="item"></commissionDialog>
</template>
</el-table-column>
<!-- <el-table-column label="手配费应收" min-width="100"> <!-- <el-table-column label="手配费应收" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="fz15 fbold">{{ <span class="fz15 fbold">{{
...@@ -533,6 +529,11 @@ ...@@ -533,6 +529,11 @@
<span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span> <span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.SellCommission&&item.SellCommission>0" label="提成" style="background:#EAEAEA">
<template slot-scope="scope">
<commissionDialog :objNew="item"></commissionDialog>
</template>
</el-table-column>
</el-table> </el-table>
<div class="row justify-sb mt mb20" v-if="item.OrderStatus!=3"> <div class="row justify-sb mt mb20" v-if="item.OrderStatus!=3">
<div class="row pt20" style="margin-right: 10px;width: 300px;" <div class="row pt20" style="margin-right: 10px;width: 300px;"
......
...@@ -612,10 +612,8 @@ ...@@ -612,10 +612,8 @@
</el-table-column> </el-table-column>
<el-table-column v-if="item.commissionMoney&&item.commissionMoney>0" label="提成" style="background:#EAEAEA"> <el-table-column v-if="item.commissionMoney&&item.commissionMoney>0" label="提成" style="background:#EAEAEA">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="cF1416C" style="float: left;"></span>
<commissionDialog :objNew="scope.row"></commissionDialog> <commissionDialog :objNew="scope.row"></commissionDialog>
<!-- <span class="cursor-pointer" :class="{'cF1416C':scope.row.commissionMoney>0}" @click="DetailsOfRoyalty(item)">
<span class="fz15 fbold">{{ moneyFormat(scope.row.commissionMoney) }}</span>
</span> -->
</template> </template>
</el-table-column> </el-table-column>
<template slot="append" > <template slot="append" >
......
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