diff --git a/src/views/information/realInfo/index.vue b/src/views/information/realInfo/index.vue index 1446a06..62b5965 100644 --- a/src/views/information/realInfo/index.vue +++ b/src/views/information/realInfo/index.vue @@ -36,7 +36,7 @@ - + - - + + + + - - +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + +
@@ -343,16 +292,9 @@ width="180" /> - @@ -389,7 +331,7 @@ - + @@ -451,7 +393,6 @@ import { getaccountStatus, getsalletStatus, getattestation, - getYesnouploadsList, getorderStatus, memberRealInfo } from '@/api/member' @@ -497,12 +438,6 @@ export default { checked: true, prop: 'pkSettleGrade' }, - { - id: 42, - text: '真实奖衔', - checked: true, - prop: 'pkAwards' - }, { id: 33, text: '性别', @@ -538,67 +473,8 @@ export default { text: '证件(反面)', checked: true, prop: 'idCardBack' - }, - { - id: 9, - text: '省', - checked: true, - prop: 'provinceName' - }, - { - id: 10, - text: '市', - checked: true, - prop: 'cityName' - }, - { - id: 11, - text: '区/县', - checked: true, - prop: 'countyName' - }, - { - id: 12, - text: '详细地址', - checked: true, - prop: 'address' - }, - { - id: 13, - text: '银行名称', - checked: true, - prop: 'bankName' - }, - { - id: 14, - text: '支行名称', - checked: true, - prop: 'subBankName' - }, - { - id: 15, - text: '开户姓名', - checked: true, - prop: 'accountName' - }, - { - id: 16, - text: '预留电话', - checked: true, - prop: 'reservedPhone' - }, - { - id: 17, - text: '银行卡号', - checked: true, - prop: 'cardNumber' - }, - { - id: 18, - text: '邮箱地址', - checked: true, - prop: 'email' } + ], moren: 'RealInfo', topList: [ @@ -642,6 +518,7 @@ export default { tattestation: [], // 实名认证 是否认证 yesnouploadsList: [], // 营业执照 是否上传 orderStatusList: [], // 订单状态 + agentGradeList: [], // 代理等级 directPushNumber: '', // 修改直推次数 sexList: [], @@ -664,19 +541,6 @@ export default { this.getSexs() this.getCardTypes() this.getAllArea() - // this.getvertexValue(); - // this.getmemberTeamList(); - // this.getRegistration(); - // this.getaccountStatus(); - // this.getsalletStatus(); - // this.getattestation(); - // this.getYesnouploadsList(); - // this.getorderStatus(); - // 初始化表头 - // this.checkLabels = JSON.parse( - // JSON.stringify(Object.keys(this.tableData[0])) - // ); - // this.colums = JSON.parse(JSON.stringify(Object.keys(this.tableData[0]))); }, mounted() { this.getUserRole() @@ -705,16 +569,21 @@ export default { this.queryParams.pkCounty = value[2] }, changeTime3(val) { - this.queryParams.startCertificationTime = val[0] - this.queryParams.endCertificationTime = val[1] + if (val) { + this.queryParams.startCertificationTime = val[0] + this.queryParams.endCertificationTime = val[1] + } else { + this.queryParams.startCertificationTime = null + this.queryParams.endCertificationTime = null + } }, changeTime1(val) { - this.queryParams.startCreationTime = val[0] - this.queryParams.endCreationTime = val[1] + this.queryParams.startCreationTime = val ? val[0] : null + this.queryParams.endCreationTime = val ? val[1] : null }, changeTime2(val) { - this.queryParams.startPayTime = val[0] - this.queryParams.endPayTime = val[1] + this.queryParams.startPayTime = val ? val[0] : null + this.queryParams.endPayTime = val ? val[1] : null }, // 性别 getSexs() { @@ -772,12 +641,7 @@ export default { this.orderStatusList = res.data }) }, - // 营业执照-是否上传 - getYesnouploadsList() { - getYesnouploadsList().then((res) => { - this.yesnouploadsList = res.data - }) - }, + // 认证下拉选 getattestation() { getattestation().then((res) => { diff --git a/src/views/selfService/register/index.vue b/src/views/selfService/register/index.vue index b1fe0e0..50c4a45 100644 --- a/src/views/selfService/register/index.vue +++ b/src/views/selfService/register/index.vue @@ -6,180 +6,240 @@ -->