Commit 32c97fac authored by Q Y's avatar Q Y
Browse files

修改会员

No related merge requests found
Showing with 21 additions and 32 deletions
+21 -32
......@@ -143,7 +143,7 @@
>导出</el-button
>
</el-col>
<right-toolbar
<!-- <right-toolbar
:showSearch.sync="showSearch"
@queryTable="handleQueryQ"
:columns="columns"
......@@ -154,7 +154,7 @@
@queryTable="handleQueryG"
:columns="columns"
v-else
></right-toolbar>
></right-toolbar> -->
</el-row>
<el-row class="mt10 mb10">
<el-radio-group v-model="radio" @input="handleRadioChange">
......@@ -180,7 +180,6 @@
min-width="220"
prop="loginName"
:show-overflow-tooltip="true"
v-if="columns[0].visible"
>
<template v-slot="scope">
<span class="link-type" @click="handleLink(scope.row)">{{
......@@ -194,7 +193,15 @@
min-width="200"
prop="orgName"
:show-overflow-tooltip="true"
v-if="columns[1].visible && radio == 0"
v-if="radio == 0"
/>
<el-table-column
label="姓名"
align="left"
min-width="200"
prop="realName"
:show-overflow-tooltip="true"
v-if="radio == 1"
/>
<el-table-column
label="身份证号"
......@@ -202,7 +209,7 @@
min-width="200"
prop="identificationNum"
:show-overflow-tooltip="true"
v-if="columns[2].visible && radio == 1"
v-if="radio == 1"
/>
<el-table-column
label="企业信用代码"
......@@ -210,7 +217,7 @@
min-width="200"
prop="orgSocialCode"
:show-overflow-tooltip="true"
v-if="columns[3].visible && radio == 0"
v-if="radio == 0"
/>
<el-table-column
......@@ -219,7 +226,6 @@
min-width="140"
prop="userType"
:show-overflow-tooltip="true"
v-if="columns[4].visible"
>
<!-- <template v-slot="scope">
<dict-tag
......@@ -234,7 +240,6 @@
min-width="100"
prop="portraitFace"
:show-overflow-tooltip="true"
v-if="columns[5].visible"
>
<template v-slot="scope">
<el-button
......@@ -251,7 +256,6 @@
min-width="90"
prop="applicationBusiness"
:show-overflow-tooltip="true"
v-if="columns[6].visible"
>
<template v-slot="scope">
<el-button size="mini" type="text" @click="handleLookPdf(scope.row)"
......@@ -265,7 +269,6 @@
min-width="140"
prop="accountBlance"
:show-overflow-tooltip="true"
v-if="columns[7].visible"
/>
<el-table-column
label="会员等级"
......@@ -273,7 +276,6 @@
min-width="140"
prop="permissionLevel"
:show-overflow-tooltip="true"
v-if="columns[8].visible"
>
<!-- <template v-slot="scope">
<dict-tag
......@@ -288,7 +290,6 @@
min-width="140"
prop="auditStatus"
:show-overflow-tooltip="true"
v-if="columns[9].visible"
>
<!-- <template v-slot="scope">
<dict-tag
......@@ -303,7 +304,6 @@
min-width="200"
prop="cellphone"
:show-overflow-tooltip="true"
v-if="columns[10].visible"
/>
<el-table-column
label="企业邮箱"
......@@ -311,7 +311,6 @@
min-width="200"
prop="email"
:show-overflow-tooltip="true"
v-if="columns[11].visible"
/>
<el-table-column
label="注册时间"
......@@ -319,7 +318,6 @@
min-width="140"
prop="registerDate"
:show-overflow-tooltip="true"
v-if="columns[12].visible"
>
<template v-slot="scope">
{{ parseTime(scope.row.registerDate, "{y}-{m}-{d} {h}:{i}:{s}") }}
......@@ -769,13 +767,20 @@
disabled
/>
</el-form-item>
<el-form-item label="公司名称" prop="orgName">
<el-form-item label="公司名称" prop="orgName" v-if="radio == 0">
<el-input
v-model="ruleUpdateForm.orgName"
placeholder="请输入公司名称"
clearable
/>
</el-form-item>
<el-form-item label="姓名" prop="realName" v-if="radio == 1">
<el-input
v-model="ruleUpdateForm.realName"
placeholder="请输入姓名"
clearable
/>
</el-form-item>
<el-form-item label="身份证" prop="identificationNum">
<el-input
v-model="ruleUpdateForm.identificationNum"
......@@ -1284,22 +1289,6 @@ export default {
total3: 0,
termList: [],
showSearch: true,
columns: [
{ key: 0, label: `用户名`, visible: true },
{ key: 1, label: `公司名称`, visible: true },
{ key: 2, label: `身份证号`, visible: true },
{ key: 3, label: `企业信用代码`, visible: true },
{ key: 4, label: `注册类型`, visible: true },
{ key: 5, label: `证件资料`, visible: true },
{ key: 6, label: `申请业务表`, visible: true },
{ key: 7, label: `余额`, visible: true },
{ key: 8, label: `会员等级`, visible: true },
{ key: 9, label: `审核状态`, visible: true },
{ key: 10, label: `手机号`, visible: true },
{ key: 11, label: `企业邮箱`, visible: true },
{ key: 12, label: `注册时间`, visible: true },
],
// 数据字典
statusDictDatas: getDictDatas(DICT_TYPE.STANDERD_ENTERPRISE_STATUS),
adoDictDatas: getDictDatas(DICT_TYPE.ADOPTIVE_STANDARD),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment