Commit ab734fc0 authored by 沈良进's avatar 沈良进

save

parent 966d31d5
......@@ -169,23 +169,23 @@
</div>
<p>
<span
>收款金额:
{{ (item.Income|| 0).toFixed(2) }}
>销售额:
{{ (item.SumPreferPrice|| 0).toFixed(2) }}
</span>
<span
>团应收金额:
{{ (item.PreferPrice|| 0).toFixed(2) }}
>收款金额:
{{ (item.Income|| 0).toFixed(2) }}
</span>
<!-- <span
>手续费:
{{ item.PlatformTax.toFixed(2) }}
</span> -->
<span
>收金额:
{{ (item.SumPreferPrice|| 0).toFixed(2) }}
>收金额:
{{ (item.notInCome|| 0).toFixed(2) }}
</span>
<span
>单项收客数:
>正常收客数:
{{ item.TotalGuestNum }}
</span>
<!-- <span
......
......@@ -132,6 +132,7 @@
</template>
<script>
import Vue from "vue";
import moment from 'moment'
// 自定义列组件
Vue.component("table-operation", {
template: `<span>
......@@ -456,6 +457,7 @@ export default {
if (!param.QStartDate) {
param.QStartDate = "2019-01-01";
}
this.tableData = []
this.apipost("sellorder_get_sellvolumerankNew", param, (r) => {
r.data.data.forEach((x) => {
x.incomeVal = parseFloat(x.income);
......@@ -523,6 +525,9 @@ export default {
(err) => {}
);
},
settStartDates() {
this.msg.tStartDates = []
},
handleClick(tab, event) {
this.msg.EnterID = 0;
this.msg.QueryType = 0;
......
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