forked from integrated_whb/integrated_whb_vue
bug:15741、15743
parent
def2819255
commit
85ae613eb8
|
@ -38,13 +38,35 @@
|
|||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<el-divider content-position="left">保养记录</el-divider>
|
||||
<layout-table :data="list" :show-pagination="false">
|
||||
<el-table-column type="index" label="序号" align="center" />
|
||||
<el-table-column prop="MAINTAIN_DATE" label="保养时间" />
|
||||
<el-table-column prop="MAINTAIN_CONDITION" label="保养情况" />
|
||||
<el-table-column prop="MAINTAIN_PERSON" label="保养人" />
|
||||
<el-table-column prop="REMARK" label="备注" />
|
||||
</layout-table>
|
||||
<div class="print_no_use">
|
||||
<layout-table :data="list" :show-pagination="false">
|
||||
<el-table-column type="index" label="序号" align="center" />
|
||||
<el-table-column prop="MAINTAIN_DATE" label="保养时间" />
|
||||
<el-table-column prop="MAINTAIN_CONDITION" label="保养情况" />
|
||||
<el-table-column prop="MAINTAIN_PERSON" label="保养人" />
|
||||
<el-table-column prop="REMARK" label="备注" />
|
||||
</layout-table>
|
||||
</div>
|
||||
<table class="print_use">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<th>保养时间</th>
|
||||
<th>保养情况</th>
|
||||
<th>保养人</th>
|
||||
<th>备注</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(item, index) in list" :key="index">
|
||||
<td>{{ index + 1 }}</td>
|
||||
<td>{{ item.MAINTAIN_DATE }}</td>
|
||||
<td>{{ item.MAINTAIN_CONDITION }}</td>
|
||||
<td>{{ item.MAINTAIN_PERSON }}</td>
|
||||
<td>{{ item.REMARK }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="mt-10 tc">
|
||||
<el-button v-print="'#printContainer'" type="primary">打印</el-button>
|
||||
|
|
|
@ -41,13 +41,35 @@
|
|||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<el-divider content-position="left">保养记录</el-divider>
|
||||
<layout-table :data="list" :show-pagination="false">
|
||||
<el-table-column type="index" label="序号" align="center" />
|
||||
<el-table-column prop="MAINTAIN_DATE" label="保养时间" />
|
||||
<el-table-column prop="MAINTAIN_CONDITION" label="保养情况" />
|
||||
<el-table-column prop="MAINTAIN_PERSON" label="保养人" />
|
||||
<el-table-column prop="REMARK" label="备注" />
|
||||
</layout-table>
|
||||
<div class="print_no_use">
|
||||
<layout-table :data="list" :show-pagination="false">
|
||||
<el-table-column type="index" label="序号" align="center" />
|
||||
<el-table-column prop="MAINTAIN_DATE" label="保养时间" />
|
||||
<el-table-column prop="MAINTAIN_CONDITION" label="保养情况" />
|
||||
<el-table-column prop="MAINTAIN_PERSON" label="保养人" />
|
||||
<el-table-column prop="REMARK" label="备注" />
|
||||
</layout-table>
|
||||
</div>
|
||||
<table class="print_use">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<th>保养时间</th>
|
||||
<th>保养情况</th>
|
||||
<th>保养人</th>
|
||||
<th>备注</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(item, index) in list" :key="index">
|
||||
<td>{{ index + 1 }}</td>
|
||||
<td>{{ item.MAINTAIN_DATE }}</td>
|
||||
<td>{{ item.MAINTAIN_CONDITION }}</td>
|
||||
<td>{{ item.MAINTAIN_PERSON }}</td>
|
||||
<td>{{ item.REMARK }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="mt-10 tc">
|
||||
<el-button v-print="'#printContainer'" type="primary">打印</el-button>
|
||||
|
|
Loading…
Reference in New Issue