|
|
@@ -41,40 +41,40 @@
|
|
|
<el-tab-pane label="交费明细表" name="first">
|
|
|
<el-table :data="entityList" size="mini" height="calc(100vh - 300px)" border style="width: 100%" @sort-change="orderby">
|
|
|
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="AccessCardNo" label="准入编码"></el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="SupplierName" label="企业名称"></el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="SupplierTypeName" label="准入类别"></el-table-column>
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="AccessCardNo" label="准入编码"></el-table-column>
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="SupplierName" label="企业名称"></el-table-column>
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="SupplierTypeName" label="准入类别"></el-table-column>
|
|
|
|
|
|
- <el-table-column min-width="210" align="center" show-overflow-tooltip label="款项类别">
|
|
|
+ <el-table-column width="300" align="center" show-overflow-tooltip label="款项类别">
|
|
|
<template slot-scope="scope">
|
|
|
{{ transferStr(scope.row.PayType) }}
|
|
|
</template>
|
|
|
- <el-table-column sortable min-width="70" align="center" show-overflow-tooltip prop="Access" label="新准入">
|
|
|
+ <el-table-column sortable width="100" align="center" show-overflow-tooltip prop="Access" label="新准入">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.Access <= 0 ? "" : scope.row.Access}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column sortable min-width="70" align="center" show-overflow-tooltip prop="Annual" label="年审">
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="Annual" label="年审">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.Annual <= 0 ? "" : scope.row.Annual}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column sortable min-width="70" align="center" show-overflow-tooltip prop="Addition" label="增项">
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="Addition" label="增项">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.Addition <= 0 ? "" : scope.row.Addition}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="Sums" label="金额合计"></el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="PayDate" label="交费日期">
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="Sums" label="金额合计"></el-table-column>
|
|
|
+ <el-table-column sortable width="150" align="center" show-overflow-tooltip prop="PayDate" label="交费日期">
|
|
|
<template slot-scope="scope">
|
|
|
{{ jstimehandle(scope.row.PayDate+'') }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="Remarks" label="备注"></el-table-column>
|
|
|
+ <el-table-column sortable width="440" align="center" show-overflow-tooltip prop="Remarks" label="备注"></el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
|