|
|
@ -71,7 +71,7 @@
|
|
|
|
{{ (pagination.currentPage - 1) * pagination.pageSize + scope.$index + 1 }}
|
|
|
|
{{ (pagination.currentPage - 1) * pagination.pageSize + scope.$index + 1 }}
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="name" label="企业名称">
|
|
|
|
<el-table-column prop="name" label="企业名称" show-overflow-tooltip>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-input v-if="scope.row.isEditing" v-model="scope.row.name"></el-input>
|
|
|
|
<el-input v-if="scope.row.isEditing" v-model="scope.row.name"></el-input>
|
|
|
|
<span v-else style="color: #2B62F1;" >{{ scope.row.name }}</span>
|
|
|
|
<span v-else style="color: #2B62F1;" >{{ scope.row.name }}</span>
|
|
|
@ -91,7 +91,7 @@
|
|
|
|
<span v-else>{{ scope.row.zjjg }}</span>
|
|
|
|
<span v-else>{{ scope.row.zjjg }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="zcdz" label='注册地址'>
|
|
|
|
<el-table-column prop="zcdz" label='注册地址' show-overflow-tooltip>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-input v-if="scope.row.isEditing" v-model.number="scope.row.zcdz"></el-input>
|
|
|
|
<el-input v-if="scope.row.isEditing" v-model.number="scope.row.zcdz"></el-input>
|
|
|
|
<span v-else>{{ scope.row.zcdz }}</span>
|
|
|
|
<span v-else>{{ scope.row.zcdz }}</span>
|
|
|
@ -152,7 +152,7 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
<div class="block">
|
|
|
|
<div class="block">
|
|
|
|
<el-pagination :current-page="pagination.currentPage" :page-sizes="[10, 20, 50, 100]"
|
|
|
|
<el-pagination :current-page="pagination.currentPage" :page-sizes="[5]"
|
|
|
|
:page-size="pagination.pageSize" layout="total, prev, pager, next, jumper" :total="pagination.total"
|
|
|
|
:page-size="pagination.pageSize" layout="total, prev, pager, next, jumper" :total="pagination.total"
|
|
|
|
@current-change="handleCurrentChange" @size-change="handleSizeChange">
|
|
|
|
@current-change="handleCurrentChange" @size-change="handleSizeChange">
|
|
|
|
</el-pagination>
|
|
|
|
</el-pagination>
|
|
|
|