调整年报修改授权
This commit is contained in:
parent
d63a0b2bde
commit
08e2af3401
|
|
@ -6,13 +6,13 @@
|
|||
<el-row>
|
||||
<label class="label-name_1">注册号/统一社会信用代码:</label>
|
||||
<div class="search-input-box_1">
|
||||
<el-input v-model="searchForm.paramMap.uniscid" clearable type="text" class="search-input" placeholder="请输入注册号/统一社会信用代码" @keyup.enter.native="search" />
|
||||
<el-input v-model="searchForm.paramMap.uniscid" clearable type="text" placeholder="请输入注册号/统一社会信用代码" @keyup.enter.native="search" />
|
||||
</div>
|
||||
</el-row>
|
||||
</el-col>
|
||||
<el-col :span="1" :offset="3">
|
||||
<div class="btn-box" style="font-size: 14px;float:right;">
|
||||
<el-button size="mini" type="primary" :loading="loading" @click="loadPage()">查询</el-button>
|
||||
<el-button type="primary" :loading="loading" @click="loadPage()">查询</el-button>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
|
@ -22,7 +22,6 @@
|
|||
<el-col :offset="22">
|
||||
<el-button
|
||||
type="primary"
|
||||
size="mini"
|
||||
:loading="loading"
|
||||
@click="()=>{
|
||||
this.$refs.AddOrEditAuthorizateAnnualReport?.openDialog()
|
||||
|
|
@ -31,7 +30,6 @@
|
|||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="22" :offset="1">
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="tableData"
|
||||
|
|
@ -42,7 +40,7 @@
|
|||
>
|
||||
<el-table-column prop="index" label="序号" min-width="50" align="center" />
|
||||
<el-table-column prop="uniscid" label="统一社会信用代码" min-width="120" align="left" />
|
||||
<el-table-column prop="ancheyear" :show-overflow-tooltip="true" label="年报年" min-width="100" align="left" />
|
||||
<el-table-column prop="ancheyear" :show-overflow-tooltip="true" label="年报年度" min-width="100" align="left" />
|
||||
<el-table-column prop="begintime" :show-overflow-tooltip="true" label="开始时间" min-width="180" align="left">
|
||||
<template #default="scope">
|
||||
<span>{{ scope.row.begintime ? $moment(scope.row.begintime).format('YYYY-MM-DD HH:mm:ss') : '-' }}</span>
|
||||
|
|
@ -61,10 +59,8 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :offset="13">
|
||||
<el-row style="text-align:right;margin-top:16px">
|
||||
<el-pagination
|
||||
:disabled="loading"
|
||||
:page-size="pageParam.size"
|
||||
|
|
@ -79,7 +75,6 @@
|
|||
第 {{ pageParam.current }} 页/共 {{ (pageParam.total !== 0 ? parseInt((pageParam.total + pageParam.size - 1) / pageParam.size) : 1) }} 页
|
||||
</span>
|
||||
</el-pagination>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<AddOrEditAuthorizateAnnualReport ref="AddOrEditAuthorizateAnnualReport" @refreshList="loadPage" />
|
||||
</div>
|
||||
|
|
@ -187,7 +182,8 @@ export default {
|
|||
<style lang="scss" scoped>
|
||||
.main-content {
|
||||
background: #fff;
|
||||
padding: 10pt;
|
||||
padding: 20px;
|
||||
margin: 20px;
|
||||
|
||||
.content-header {
|
||||
background: white;
|
||||
|
|
|
|||
Loading…
Reference in New Issue