Commit a0035239 authored by zhengke's avatar zhengke

增加生成单据按钮

parent 7c600074
...@@ -35,9 +35,10 @@ ...@@ -35,9 +35,10 @@
<th width="100">订单人数</th> <th width="100">订单人数</th>
<th width="100">单价(日元)</th> <th width="100">单价(日元)</th>
<th>泊数/日期</th> <th>泊数/日期</th>
<th width="100">小计(日元)</th> <th width="150">小计(日元)</th>
<th width="100">小计(人民币)</th> <th width="150">小计(人民币)</th>
<th width="100">单号</th> <th width="200">单号</th>
<th width="100">生成单据</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">
...@@ -59,6 +60,11 @@ ...@@ -59,6 +60,11 @@
<td> <td>
{{subItem.Frids}} {{subItem.Frids}}
</td> </td>
<td>
<el-tooltip class="item" effect="dark" content="生成单据" placement="top-start">
<el-button type="success" icon="el-icon-check" circle></el-button>
</el-tooltip>
</td>
</tr> </tr>
</template> </template>
</tbody> </tbody>
......
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