|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div style="display: flex; flex-direction: column">
|
|
|
|
|
<el-button size="small" style="margin-left: auto; margin-right: 15px" type="primary" icon="el-icon-bottom-right" @click="onSubmit">登记</el-button>
|
|
|
|
|
<el-button size="small" style="margin-left: auto; margin-right: 15px" type="primary" icon="el-icon-bottom-right"
|
|
|
|
|
@click="onSubmit">登记
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-form :model="inputQuery" :rules="formRules" ref="dataForm" label-width="150px" style="padding-top: 40px">
|
|
|
|
|
<el-card style="margin-top: -30px">
|
|
|
|
|
<el-row>
|
|
|
|
@ -150,7 +152,8 @@
|
|
|
|
|
>选择单据
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
<el-table v-loading="loading" @current-change="handleSelectionChange" :data="list" style="width: 100%" highlight-current-row border>
|
|
|
|
|
<el-table v-loading="loading" @current-change="handleSelectionChange" :data="list" style="width: 100%"
|
|
|
|
|
highlight-current-row border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="billTypeName" width="150"></el-table-column>
|
|
|
|
@ -171,13 +174,13 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
@pagination="getCodeDetailLists"
|
|
|
|
|
/>
|
|
|
|
|
<!-- <pagination-->
|
|
|
|
|
<!-- v-show="total > 0"-->
|
|
|
|
|
<!-- :total="total"-->
|
|
|
|
|
<!-- :page.sync="filterQuery.page"-->
|
|
|
|
|
<!-- :limit.sync="filterQuery.limit"-->
|
|
|
|
|
<!-- @pagination="getCodeDetailLists"-->
|
|
|
|
|
<!-- />-->
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -309,9 +312,7 @@ export default {
|
|
|
|
|
billNo: null,
|
|
|
|
|
mainAction: null,
|
|
|
|
|
action: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
supInoivceSearch: 'supInvoice',
|
|
|
|
|
limit: 10,
|
|
|
|
|
startTime: null,
|
|
|
|
|
endTime: null,
|
|
|
|
|
},
|
|
|
|
|