diff --git a/src/views/information/realInfo/index.vue b/src/views/information/realInfo/index.vue index a1fc0aa..8ba2667 100644 --- a/src/views/information/realInfo/index.vue +++ b/src/views/information/realInfo/index.vue @@ -36,7 +36,7 @@ - + - - + + + + - - +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + +
@@ -344,16 +292,9 @@ width="180" /> - @@ -390,7 +331,7 @@ - + @@ -499,12 +440,6 @@ export default { checked: true, prop: 'pkSettleGrade' }, - { - id: 42, - text: '真实奖衔', - checked: true, - prop: 'pkAwards' - }, { id: 33, text: '性别', @@ -540,60 +475,6 @@ 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' } ], @@ -704,16 +585,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() { diff --git a/vue.config.js b/vue.config.js index 71371bd..788cbd7 100644 --- a/vue.config.js +++ b/vue.config.js @@ -44,9 +44,11 @@ module.exports = { }, proxy: { '/prod-api': { - target: 'https://t-mana.beida666.com/', - changeOrigin: true - + target: 'http://localhost:8080/', + changeOrigin: true, + pathRewrite: { + '^/prod-api': '' + } } } // proxy: {