Commit a7d3c2da authored by 黄奎's avatar 黄奎

页面修改

parent d82ec8ea
......@@ -41,7 +41,9 @@
<th width="120">订单人数</th>
<th width="120">单价(日元)</th>
<th>泊数/日期</th>
<th width="170">小计</th>
<th width="170">小计(日元)</th>
<th width="170">小计(人民币)</th>
<th width="170">单号</th>
</tr>
<tbody v-for="(item,index) in dataList" :key="index">
<template v-for="(subItem,subIndex) in item.SubList">
......@@ -57,6 +59,12 @@
{{subItem.UseTime}}
</td>
<td>{{subItem.SubtotalMoney}}</td>
<td>
<template v-if="subItem.Frids!=''"> {{subItem.RMBMoney}}</template>
</td>
<td>
{{subItem.Frids}}
</td>
</tr>
</template>
</tbody>
......@@ -76,9 +84,9 @@
return {
//请求
msg: {
StartDate: "2020-01-01",
EndDate: "2020-01-31",
Supplier: 30,
StartDate: "",
EndDate: "",
Supplier: 0,
PageIndex: 1,
PageSize: 15,
},
......@@ -109,7 +117,7 @@
},
mounted() {
this.initSupplier();
this.getList();
//this.getList();
},
filters: {},
methods: {
......
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