Commit c07242f4 authored by youjie's avatar youjie

no message

parent c1cad5bd
......@@ -1236,6 +1236,12 @@
}else{
this.CompletedLoading = false
}
for (let i = 0; i < this.dataList.length; i++) {
this.$refs.multipleTable.toggleRowSelection(
this.dataList[i],
false
);
}
this.multipleSelection = []
this.$message.success('操作成功!');
this.getList()
......
......@@ -638,6 +638,13 @@
</span>
</template>
</el-table-column>
<el-table-column label="利润" style="background:#EAEAEA">
<template slot-scope="scope">
<span :class="{'cF1416C':scope.row.dueInMoney>0}">
<span class="fz15 fbold">{{moneyFormat((scope.row.income*100)-(scope.row.costMoney*100)-(scope.row.refundMoney*100)/100)}}</span>
</span>
</template>
</el-table-column>
<el-table-column label="提成" style="background:#EAEAEA"
v-if="(scope.row.commissionMoney&&scope.row.commissionMoney>0)||(scope.row.opCommission&&scope.row.opCommission>0)">
<template slot-scope="scope">
......@@ -1270,6 +1277,12 @@ export default {
}else{
this.CompletedLoading = false
}
for (let i = 0; i < this.OrderList.length; i++) {
this.$refs.multipleTable.toggleRowSelection(
this.OrderList[i],
false
);
}
this.multipleSelection = []
this.$message.success('操作成功!');
this.$emit('success')
......
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