You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
4 years ago
|
<template>
|
||
|
<div class="app-container">
|
||
|
<el-table :data="authenticationList">
|
||
|
<el-table-column label="企业名称" align="center" prop="name" />
|
||
|
<el-table-column label="企业前缀" align="center" prop="corporateUnifiedSocialCreditCode" />
|
||
|
<el-table-column label="认证等级" align="center" prop="nameLegalRepresentative" />
|
||
|
<el-table-column label="认证日期" align="center" prop="certificateNumberLegalRepresentative" />
|
||
|
<el-table-column label="认证状态" align="center" prop="contactInformation" />
|
||
|
<el-table-column label="认证结果" align="center" class-name="small-padding fixed-width">
|
||
|
<template slot-scope="scope">
|
||
|
<el-button
|
||
|
size="mini"
|
||
|
type="text"
|
||
|
>详情</el-button>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { listCertification} from "@/api/system/certification";
|
||
|
export default {
|
||
|
name:'authentication',
|
||
|
data(){
|
||
|
return {
|
||
|
authenticationList:[],
|
||
|
queryParams: {
|
||
|
pageNum: 1,
|
||
|
pageSize: 10,
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
listCertification(this.queryParams).then(response => {
|
||
|
this.authenticationList = response.rows;
|
||
|
});
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
}
|
||
|
</script>
|