diff --git a/pages.json b/pages.json index 19242ac..7e9740c 100644 --- a/pages.json +++ b/pages.json @@ -295,6 +295,12 @@ "navigationBarTitleText": "企业认证" } }, + { + "path": "pages/release/investorAuth/index", + "style": { + "navigationBarTitleText": "投资方认证" + } + }, { "path": "pages/release/perfectPersonInfo/index", "style": { diff --git a/pages/demandHall/enterpriseServer/index.vue b/pages/demandHall/enterpriseServer/index.vue index 38854b5..ba7b51c 100644 --- a/pages/demandHall/enterpriseServer/index.vue +++ b/pages/demandHall/enterpriseServer/index.vue @@ -23,7 +23,9 @@ - + + {{item.enterpriseType == 1 ? '企业' : '个人'}} + @@ -44,7 +46,7 @@ - + {{item.enterpriseType == 1 ? '企业' : '个人'}} @@ -338,8 +340,8 @@ } .tag { width: auto; - padding: 0 10rpx; - height: 36rpx; + padding: 0rpx 10rpx; + line-height: 26rpx; border-radius: 4rpx; font-size: 20rpx; margin-right: 8rpx; @@ -440,7 +442,7 @@ } .bg2 { - background: rgba(255, 170, 0, 0.63); + background: linear-gradient(141deg, #FFA782 0%, #FF6D31 100%); } diff --git a/pages/demandHall/supplyHall/index.vue b/pages/demandHall/supplyHall/index.vue index 7f7dae6..7b1af35 100644 --- a/pages/demandHall/supplyHall/index.vue +++ b/pages/demandHall/supplyHall/index.vue @@ -45,7 +45,7 @@ - + {{item.enterpriseType == 1 ? '企业' : '个人'}} @@ -69,7 +69,7 @@ - + {{item.enterpriseType == 1 ? '企业' : '个人'}} @@ -89,7 +89,7 @@ 查看详情 - + {{item.enterpriseType == 1 ? '企业' : '个人'}} @@ -201,7 +201,7 @@ showDialog() { this.setData({ - showScreenDialog: true + showScreenDialog: true, }); }, cagetoryClick(e) { @@ -222,13 +222,11 @@ enterpriseType: type }); }, - finishClick() { this.setData({ showScreenDialog: false }); }, - resetClick() { this.setData({ cName: '', @@ -253,7 +251,7 @@ app.http('post', `Resources/listResources?page=${this.pageNumber}&size=${this.pageSize}`, { resourceType: this.active, resourceCagetoryId: this.resourceCagetoryId, - enterpriseType: this.enterpriseType + enterpriseType: this.enterpriseType, }).then(res => { if (res.data.success) { uni.stopPullDownRefresh(); @@ -410,7 +408,7 @@ color: #fff; border-radius: 12rpx 0; text-align: center; - background-color: #007AFF; + background: rgba(88, 144, 255, 0.91); margin-bottom: 5rpx; } @@ -461,7 +459,7 @@ .tag { width: auto; - height: 36rpx; + line-height: 28rpx; border-radius: 4rpx; font-size: 20rpx; margin-right: 8rpx; diff --git a/pages/release/companyAuth/index.css b/pages/release/companyAuth/index.css index 680d626..c6c9285 100644 --- a/pages/release/companyAuth/index.css +++ b/pages/release/companyAuth/index.css @@ -33,6 +33,31 @@ margin-bottom: 38rpx; font-weight: 500; } +.title-l{ + font-size: 36rpx; + line-height: 50rpx; + color: #343434; + font-weight: 600; +} +.title-s{ + font-size: 28rpx; + font-weight: 400; + line-height: 40rpx; + color: #666666; + margin: 16rpx 0; +} +.card-bg{ + width: 670rpx; + height: 320rpx; + background: #FFFFFF; + box-shadow: 0px 6rpx 12rpx rgba(0, 0, 0, 0.16); + border-radius: 16rpx; + margin-bottom: 60rpx; +} +.card-bg image{ + width: 625rpx; + height: 274rpx; +} .form-item{ font-size: 28rpx; color: #666666; @@ -43,6 +68,11 @@ width: 70%; text-align: right; } +.tomore{ + width: 10rpx; + height: 18rpx; + margin-left: 10rpx; +} .yyzz image{ width: 670rpx; height: 368rpx; diff --git a/pages/release/index2.vue b/pages/release/index2.vue index 51edc20..3ff7899 100644 --- a/pages/release/index2.vue +++ b/pages/release/index2.vue @@ -24,7 +24,7 @@ - + 投资方认证 @@ -180,11 +180,28 @@ export default { } }, // 投资方认证 - // toInvestorAuth() { - // uni.navigateTo({ - // url: '/pages/release/investorAuth/index' - // }); - // }, + toInvestorAuth() { + if (this.authStatus == 0) { + uni.navigateTo({ + url: '/pages/release/investorAuth/index' + }); + } else if (this.authStatus == 3) { + let authInfo = encodeURIComponent(JSON.stringify(this.authInfo)); + uni.navigateTo({ + url: '/pages/release/investorAuth/index?authInfo=' + authInfo + }); + } else if (this.authStatus == 1) { + uni.showToast({ + title: '认证申请审核中,请等待!', + icon: 'none' + }); + } else if(this.authStatus == 2){ + uni.showToast({ + title: '已完成认证', + icon: 'none' + }); + } + }, // toPersonlAuth() { // if (this.authStatus == 0) { // uni.navigateTo({ diff --git a/pages/release/investorAuth/index.vue b/pages/release/investorAuth/index.vue index 8cb21ce..64ffb77 100644 --- a/pages/release/investorAuth/index.vue +++ b/pages/release/investorAuth/index.vue @@ -2,44 +2,56 @@ + 请完善资料 + 个人名片 + 姓名 - - 手机号 - - - - - - 身份证号 - - - - - + + 企业名称 + + + + + + 职位 + + + + + + 邮箱 + + + + + + 微信 + + + + + + 企业规模 + + + {{'请选择'}} + + + + + 意向领域 + + + {{'请选择'}} + + + 保存并提交 @@ -139,18 +151,6 @@ export default { icon: 'none' }); return; - } else if (form.legalPhone == '') { - uni.showToast({ - title: '请填写手机号', - icon: 'none' - }); - return; - } else if (form.legalPersonIdcard == '') { - uni.showToast({ - title: '请填写身份证号', - icon: 'none' - }); - return; } else { if (this.isEdit == false) { app.http('post', 'EnterpriseAuthentication/createAuthenticInfoOne', this.form).then(res => {