This commit is contained in:
xuyucheng 2022-04-11 16:23:07 +08:00
parent b2df14fe94
commit 66bf6b9a2d
3 changed files with 19 additions and 17 deletions

View File

@ -8,8 +8,8 @@
受评企业长期综合信用等级分三等九级AAAAAABBBBBBCCCCCC除AAA级CCC级()以下等级外每一个信用等级可用+-符号进行微调表示略高或略低于本等级
</div>
</div>
<el-row style="padding: 0 2.5%; margin-top: 40px" type="flex" justify="space-between">
<el-col style="width:30%" v-for="(item, index) in data" :key="index">
<el-row style="padding: 0 2.5%; margin-top: 40px" type="flex" justify="space-around">
<el-col :span="6" v-for="(item, index) in data" :key="index">
<el-card
:body-style="{ padding: '0px' }"
@click.native="toLocation(item.targetUrl)"

View File

@ -24,11 +24,11 @@
>
</span>
</el-dialog>
<el-row type="flex" justify="center"
><el-image :src="logo" style="width: 200px"></el-image
<el-row type="flex" justify="center" style="margin-top:10%"
><el-image :src="logo" style="width: 250px"></el-image
></el-row>
<el-row type="flex" justify="center"
><el-col :span="8" style="display: flex"
><el-col :span="10" style="display: flex"
><div
v-for="(item, index) in data"
:key="index"
@ -41,7 +41,7 @@
></el-row
>
<el-row type="flex" justify="center"
><el-col :span="8" style="display: flex"
><el-col :span="10" style="display: flex"
><el-input :placeholder="checked.placeholder" v-model="checked.value">
<i slot="prefix" class="el-input__icon el-icon-search"></i>
</el-input>
@ -51,7 +51,8 @@
>
</el-row>
<el-row style="margin-top: 40px"
><fecr-table :data="value" :columns="column">
><div v-if="value.length === 0"></div>
<fecr-table :data="value" :columns="column" v-else>
<template slot="report" slot-scope="{ url }">
<el-button
type="primary"

View File

@ -18,17 +18,18 @@
<el-button
size="small"
@click="emailVisible = true"
style="margin-left: 20px; background: #c3ccc8; color: #fff"
style="margin-left: 20px;"
round
type="primary"
>修改绑定邮箱</el-button
>
</el-form-item>
<el-form-item label="认证状态">
<el-tag
style="border-radius: 25px; padding: 0 20px; color: #fff"
@click="visible = form['已认证'] !== '是' ? true : false"
:color="form['已认证'] === '是' ? '#49C788' : '#909399'"
>{{ form["认证"] === "是" ? "已认证" : "未认证" }}</el-tag
@click="visible = form['认证状态'] !== '已认证' ? true : false"
:color="form['认证状态'] === '已认证' ? '#49C788' : '#909399'"
>{{ form["认证状态"] }}</el-tag
>
</el-form-item>
</el-col>
@ -131,7 +132,7 @@
</el-col>
<el-col :span="12">
<el-form>
<el-form-item label="公司名">
<el-form-item label="公司名">
<el-input
disabled
v-model="businessLicense['公司名称']"
@ -275,7 +276,7 @@ export default {
avatar_id: `avatar_0${index + 1}`,
};
JsonPost("/user/change_avatar", obj).then((res) => {
if (res.info === "头像已更换") {
if (res.info === "修改成功") {
this.$message.success(res.info);
this.getAvatar();
}
@ -287,7 +288,7 @@ export default {
this.businessLoading = true;
FormDataPost("/user/upload_business_license", { image: val.file })
.then((res) => {
if (res.info === "识别正确") {
if (res.info === "识别结果") {
this.$message.success(res.info);
this.businessLicense = res.result;
} else {
@ -306,7 +307,7 @@ export default {
this.IDCardLoading = true;
FormDataPost("/user/upload_id_card", { image: val.file })
.then((res) => {
if (res.info === "识别正确") {
if (res.info === "识别结果") {
this.$message.success(res.info);
this.IDCard = res.result;
} else {
@ -325,8 +326,8 @@ export default {
this.loading = true;
get("/user/company_verify")
.then((res) => {
this.form["已认证"] = res.info === "认证成功" ? "是" : "否";
res.info === ""
// this.form[""] = res.info === "" ? "" : "";
res.info === "认证成功"
? this.$message.success(res.info)
: this.$message.warning(res.info);
this.visible = false;