|
@@ -55,6 +55,12 @@
|
|
|
|
|
|
</el-input>
|
|
</el-input>
|
|
|
|
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="总佣金" label-width="120px" prop="outTradeNo">
|
|
|
|
+ <el-input readonly :value="totalCommission" type="text" >
|
|
|
|
+
|
|
|
|
+ </el-input>
|
|
|
|
+
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="支付类型" prop="payType">
|
|
<!-- <el-form-item label="支付类型" prop="payType">
|
|
<el-select v-model="queryParams.payType" placeholder="">
|
|
<el-select v-model="queryParams.payType" placeholder="">
|
|
@@ -176,6 +182,7 @@ export default {
|
|
// 总条数
|
|
// 总条数
|
|
total: 0,
|
|
total: 0,
|
|
totalPrice:'',
|
|
totalPrice:'',
|
|
|
|
+ totalCommission:'',
|
|
// 错题表格数据
|
|
// 错题表格数据
|
|
errorList: [],
|
|
errorList: [],
|
|
// 弹出层标题
|
|
// 弹出层标题
|
|
@@ -219,6 +226,7 @@ export default {
|
|
this.errorList = response.rows;
|
|
this.errorList = response.rows;
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.totalPrice = Number(response.data.total)/100+'元'
|
|
this.totalPrice = Number(response.data.total)/100+'元'
|
|
|
|
+ this.totalCommission = Number(response.data.commission)/100 +'元'
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
},
|
|
},
|