Commit a7d3c2da authored by 黄奎's avatar 黄奎

页面修改

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