修改意见反馈 申请入会 个人信息修改
This commit is contained in:
parent
d461a6d3b8
commit
6e060e7234
@ -7,7 +7,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:info.association_name+'入会申请'}]" :current="topCurrent" activeColor="#000"
|
||||
:bold="false" :fontSize="30"></tn-tabs>
|
||||
</view>
|
||||
@ -15,94 +15,106 @@
|
||||
</tn-nav-bar>
|
||||
|
||||
<view class="tn-safe-area-inset-bottom" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
|
||||
<view style="margin-top: 40rpx">
|
||||
<tn-steps :list="tab_list" :current="current"></tn-steps>
|
||||
<view style="margin-top: 20rpx;padding: 40rpx;background: #FFFFFF;">
|
||||
<tn-steps :list="tab_list" :current="current" activeColor="#2368F2" inactiveColor="#9B9B9B"></tn-steps>
|
||||
</view>
|
||||
<view v-if="current==1" style="padding: 30rpx">
|
||||
<view v-if="current==1" style="margin-top: 20rpx;padding: 30rpx;background: #FFFFFF;">
|
||||
<view v-html="info.ruhuixizhu"></view>
|
||||
<view style="text-align: center;margin-top: 60rpx">
|
||||
<tn-checkbox :size="40" v-model="checked1">同意入会协议</tn-checkbox>
|
||||
<tn-checkbox :size="40" shape="circle" activeColor="#2368F2" v-model="checked1">同意入会协议</tn-checkbox>
|
||||
<view style="margin-top: 30rpx">
|
||||
<tn-button backgroundColor="#01BEFF" fontColor="#ffffff" @click="one_next()">下一步</tn-button>
|
||||
<tn-button shape="round" width="616rpx" height="85rpx" backgroundColor="#2368F2" fontColor="#ffffff" @click="one_next()">下一步</tn-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="current==2">
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">推荐人</view>
|
||||
<view v-if="current==2" style="background: #FFFFFF;">
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin" style="margin-top: 20rpx;">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">推荐人</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input v-model="new_info.recommendation_name" placeholder="选填" :showRightIcon="false"
|
||||
:disabled="true" @click="tuijian_show = true" />
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input v-model="new_info.recommendation_name" placeholder="请输入推荐人(选填)" :showRightIcon="true"
|
||||
:disabled="true" @click="tuijian_show = true" placeholder-style="color:#9B9B9B"/>
|
||||
<tn-select v-model="tuijian_show" mode="single" :list="member_list"
|
||||
@confirm="getTuiJianId"></tn-select>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">手机号</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">手机号</view>
|
||||
</view>
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input placeholder="请输入手机号" disabled v-model="userInfo.phone"
|
||||
placeholder-style="color:#9B9B9B"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input placeholder="手机号" disabled v-model="userInfo.phone"
|
||||
placeholder-style="color:#AAAAAA"></input>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">真实姓名</view>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">真实姓名</view>
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input placeholder="请输入真实姓名" v-model="new_info.nikename" placeholder-style="color:#9B9B9B"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input placeholder="请输入真实姓名" v-model="new_info.nikename" placeholder-style="color:#AAAAAA"></input>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">性别</view>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">性别</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input v-model="new_info.gender_name" :showRightIcon="false" :disabled="true"
|
||||
@click="gender_show = true" />
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;display: flex;align-items: center;">
|
||||
<input v-model="new_info.gender_name" :showRightIcon="true" :disabled="true"
|
||||
@click="gender_show = true" placeholder="请选择性别" placeholder-style="color:#9B9B9B"/>
|
||||
<view class="tn-icon-right" style="margin-left: 10rpx;"></view>
|
||||
<tn-select v-model="gender_show" mode="single" :list="genderList"
|
||||
@confirm="getGenderId"></tn-select>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">企业名称</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">企业名称</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input placeholder="请输入企业名称" v-model="new_info.enterprise_name"
|
||||
placeholder-style="color:#AAAAAA"></input>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">所属行业</view>
|
||||
placeholder-style="color:#9B9B9B"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">所属行业</view>
|
||||
</view>
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;display: flex;align-items: center;">
|
||||
<view class="tn-flex tn-flex-center tn-flex-col-center" @click="industry_id_show = true">
|
||||
<view style="font-size: 28rpx; color: rgba(102, 102, 102, 1);">
|
||||
{{formData.industrynew_id_name}}
|
||||
<view style="font-size: 28rpx; color: #9B9B9B;">
|
||||
{{new_info.industrynew_id_name}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-icon-right" style="margin-left: 10rpx;"></view>
|
||||
<tn-select v-model="industry_id_show" mode="single" :list="industry_list"
|
||||
@confirm="getindustryId"></tn-select>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-padding-right-xs tn-text-bold">申请理由</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs tn-text-bold">申请理由</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<tn-input v-model="new_info.reason" :maxLength="1000" placeholder="申请入会理由" :clearable="false"
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 18rpx;padding: 20rpx 30rpx;">
|
||||
<tn-input v-model="new_info.reason" :maxLength="1000" placeholder="请输入申请入会理由" placeholder-style="color:#9B9B9B" :clearable="false"
|
||||
:height="300" type="textarea" :customStyle="{lineHeight:'42rpx',color:'#777777'}" />
|
||||
</view>
|
||||
<div style="text-align: center;margin-top: 40px">
|
||||
<tn-button @click="current=1" backgroundColor="#E6E6E6" fontColor="#000000">上一步</tn-button>
|
||||
<tn-button backgroundColor="#01BEFF" fontColor="#ffffff" style="margin-left: 40rpx"
|
||||
@click="newSubmit">提交申请
|
||||
<div style="text-align: center;margin-top: 40rpx;padding-bottom: 40rpx;">
|
||||
<tn-button shape="round" width="194rpx" height="85rpx" @click="current=1" backgroundColor="#EEEEEE" fontColor="#323232 ">上一步</tn-button>
|
||||
<tn-button shape="round" width="392rpx" height="85rpx" backgroundColor="#2368F2" fontColor="#ffffff" style="margin-left: 30rpx;" @click="newSubmit">提交申请
|
||||
</tn-button>
|
||||
</div>
|
||||
</view>
|
||||
@ -154,22 +166,23 @@
|
||||
phone: '',
|
||||
nikename: '',
|
||||
enterprise_name: '',
|
||||
gender_name: '请选择',
|
||||
gender_name: '',
|
||||
gender: 0,
|
||||
industry_id: 0,
|
||||
reason: '',
|
||||
industrynew_id: 0,
|
||||
industrynew_id_name: '请选择所属行业',
|
||||
},
|
||||
formData: {
|
||||
position_name: '请选择',
|
||||
position_id: 0,
|
||||
industry_id: '',
|
||||
industry_id_name: '请选择',
|
||||
industrynew_id_name: '请选择',
|
||||
industrynew_id_name: '请选择所属行业',
|
||||
phone: '',
|
||||
password: '',
|
||||
nikename: '',
|
||||
gender_name: '请选择',
|
||||
gender_name: '',
|
||||
gender: 0,
|
||||
birth_time_name: '请选择',
|
||||
birth_time: '',
|
||||
@ -363,7 +376,7 @@
|
||||
getindustryId(d) {
|
||||
console.log(d);
|
||||
var info = d[0];
|
||||
this.formData.industrynew_id_name = info.label;
|
||||
this.new_info.industrynew_id_name = info.label;
|
||||
this.new_info.industrynew_id = info.value;
|
||||
},
|
||||
birth_time_chick(d) {
|
||||
@ -795,4 +808,32 @@
|
||||
}
|
||||
|
||||
/* 标签内容 end*/
|
||||
|
||||
|
||||
|
||||
.bfre{
|
||||
position: relative;
|
||||
.bf{
|
||||
margin-left: 12rpx;
|
||||
&::before{
|
||||
border-radius: 936rpx;
|
||||
content: ' ';
|
||||
width: 4rpx;
|
||||
height: 24rpx;
|
||||
background: #2368F2;
|
||||
position: absolute;
|
||||
top: 8rpx;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 690rpx;
|
||||
height: 1rpx;
|
||||
background: #E5E5E5;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
</style>
|
@ -6,7 +6,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'我参与的活动'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'入会申请记录'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -22,19 +22,19 @@
|
||||
<view style="bottom:-105rpx;position: absolute;left: 28rpx;">
|
||||
<view class="tn-flex tn-flex-center tn-flex-col-center">
|
||||
<view style="width: 170rpx;height: 170rpx;position: relative;">
|
||||
<image v-if="userThisInfo.photo_image!=null" :src="apiImgUrl+userThisInfo.photo_image"
|
||||
<image v-if="userThisInfo.photo_image != null" :src="apiImgUrl+userThisInfo.photo_image"
|
||||
mode="aspectFill" style="width: 170rpx;height: 170rpx;border-radius: 50%;"></image>
|
||||
<image v-if="userThisInfo.photo_image==null" src="/static/def.png" mode="aspectFill"
|
||||
<image v-if="userThisInfo.photo_image == null" src="/static/def.png" mode="aspectFill"
|
||||
style="width: 170rpx;height: 170rpx;border-radius: 50%;"></image>
|
||||
</view>
|
||||
<view style="margin-left: 10rpx">
|
||||
<view style="font-size: 35rpx;color: #ffffff;font-weight: 600">{{userThisInfo.nikename}}
|
||||
</view>
|
||||
<view style="font-size: 28rpx;margin-top: 10rpx;">
|
||||
<text>协会职务:{{userThisInfo.position_name==null||userThisInfo.position_name==''?'无':userThisInfo.position_name}}</text>
|
||||
<text>协会职务:{{userThisInfo.position_name == null || userThisInfo.position_name == '' ? '无' : userThisInfo.position_name }}</text>
|
||||
<text style="margin-left: 40rpx">性别:{{userThisInfo.gender==0?'女':'男'}}</text>
|
||||
</view>
|
||||
<view style="margin-top: 10rpx" v-if="userThisInfo.if_tongyi==0">
|
||||
<view style="margin-top: 10rpx" v-if="userThisInfo.if_tongyi == 0">
|
||||
联系方式:{{userThisInfo.phone}}</view>
|
||||
<view style="margin-top: 10rpx" v-if="userThisInfo.if_tongyi!=0">联系方式:***********</view>
|
||||
</view>
|
||||
@ -47,7 +47,7 @@
|
||||
<view style="font-size: 30rpx;font-weight: 600;margin-bottom: 20rpx">个人经历</view>
|
||||
<view style="background-color: #ffffff;border-radius: 15rpx;width: 100%;margin: 0 auto;">
|
||||
<view style="padding: 20rpx;line-height: 50rpx;">
|
||||
<view class="tn-text-ellipsis-5" @click="editInfo=true;editType=1">
|
||||
<view class="tn-text-ellipsis-5" @click="editInfo = true; editType=1">
|
||||
{{userThisInfo.introduction==''||userThisInfo.introduction==null?'无':userThisInfo.introduction}}
|
||||
</view>
|
||||
</view>
|
||||
@ -56,17 +56,17 @@
|
||||
<view style="background-color: #ffffff;border-radius: 15rpx;width: 100%;margin: 0 auto;">
|
||||
<view class="tn-flex tn-flex-center tn-flex-col-center" style="padding: 20rpx;">
|
||||
<view style="padding-left: 20rpx">
|
||||
<image v-if="userThisInfo.company_image!=''" :src="apiImgUrl+userThisInfo.company_image"
|
||||
<image v-if="userThisInfo.company_image != '' " :src="apiImgUrl+userThisInfo.company_image"
|
||||
mode="aspectFill" style="width: 160rpx;height: 160rpx;"></image>
|
||||
<view v-if="userThisInfo.company_image==''"
|
||||
<view v-if="userThisInfo.company_image == '' "
|
||||
style="width: 160rpx;height: 160rpx;background: #d9d9d9;"></view>
|
||||
</view>
|
||||
<view style="font-size: 24rpx;color: #666666;margin-left: 30rpx;">
|
||||
<view style="font-size: 36rpx;font-weight: 600;color: #000000">
|
||||
{{userThisInfo.enterprise_name==null||userThisInfo.enterprise_name==''?'未填写':userThisInfo.enterprise_name}}
|
||||
{{userThisInfo.enterprise_name == null || userThisInfo.enterprise_name == '' ? '未填写' : userThisInfo.enterprise_name}}
|
||||
</view>
|
||||
<view style="margin: 15rpx 0rpx">
|
||||
所属行业:{{userThisInfo.industry_id==-1?'其他行业':userThisInfo.industry_name}}</view>
|
||||
所属行业:{{ userThisInfo.industry_id == -1 ? '其他行业' : userThisInfo.industry_name }}</view>
|
||||
<view>
|
||||
企业地址:{{userThisInfo.enterprise_location==null||userThisInfo.enterprise_location==''?'无':userThisInfo.enterprise_location}}
|
||||
</view>
|
||||
@ -118,7 +118,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:editType==1?'个人经历':'公司介绍'}]" :current="topCurrent" activeColor="#000"
|
||||
:bold="false" :fontSize="24"></tn-tabs>
|
||||
</view>
|
||||
|
@ -7,7 +7,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'名片夹'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:info.association_name}]" :current="topCurrent" activeColor="#000"
|
||||
:bold="false" :fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="tn-safe-area-inset-bottom" style="background: rgba(242, 241, 246, 1);">
|
||||
<view class="tn-safe-area-inset-bottom allbg">
|
||||
<!-- 顶部自定义导航 -->
|
||||
<tn-nav-bar :isBack="false" backTitle="" :alpha="true" :bottomShadow="false">
|
||||
<view class="custom-nav tn-flex tn-flex-col-center tn-flex-row-left">
|
||||
@ -14,24 +14,24 @@
|
||||
</view>
|
||||
</tn-nav-bar>
|
||||
<view style="width: 100%;height: 450rpx;position: absolute;top: 0;">
|
||||
<image v-if="addMod.background_image==''" src="/static/my.png" style="width: 100%;height: 450rpx;"></image>
|
||||
<image v-if="addMod.background_image!=''" :src="apiImgUrl+addMod.background_image"
|
||||
<image v-if="addMod.background_image == '' " src="/static/my.png" style="width: 100%;height: 450rpx;"></image>
|
||||
<image v-if="addMod.background_image != '' " :src="apiImgUrl+addMod.background_image"
|
||||
style="width: 100%;height: 450rpx;"></image>
|
||||
<view style="bottom: 28rpx;position: absolute;left: 28rpx;">
|
||||
<view style="position: absolute;left: 40%;background: #ffffff;border-radius: 50%;bottom: 60rpx;">
|
||||
<view @click="d_img(1)" style="width: 150rpx;height: 150rpx;position: relative;">
|
||||
<image :src="apiImgUrl+addMod.photo_image" mode="aspectFill"
|
||||
style="width: 150rpx;height: 150rpx;border-radius: 50%;"></image>
|
||||
style="width: 164rpx;height: 164rpx;border-radius: 50%;"></image>
|
||||
<image src="/static/pic.png"
|
||||
style="height: 50rpx;width: 50rpx;position: absolute;right: 0;bottom: 0;">
|
||||
</image>
|
||||
</view>
|
||||
</view>
|
||||
<view style="bottom: 50rpx;right: 28rpx;position: absolute;">
|
||||
<!-- <view style="bottom: 50rpx;right: 28rpx;position: absolute;">
|
||||
<tn-button @click="d_img(3)" shape="round" padding="10rpx 40rpx" backgroundColor="#ffffff"
|
||||
fontColor="rgba(65, 142, 242, 1);">更改背景</tn-button>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin-top" style="padding-top: 450rpx;z-index:1;">
|
||||
<view class="tn-margin-top" style="z-index:1;margin: 360rpx 30rpx 0rpx 30rpx;background: #ffffff;border-radius: 18rpx;">
|
||||
<view style="font-size: 32rpx;color: rgba(119, 119, 119, 1);padding:25rpx 0rpx 30rpx 50rpx;">个人资料</view>
|
||||
<view style="padding: 0px 30rpx;;">
|
||||
<tn-list-view :customTitle="true" backgroundColor="transparent">
|
||||
@ -129,7 +129,7 @@
|
||||
<view style="font-size: 32rpx;color: #000000;font-weight: 500;">公司Logo</view>
|
||||
<view class="tn-flex tn-flex-row-right tn-flex-center tn-flex-col-center" @click="d_img(2)">
|
||||
<view>
|
||||
<view v-if="addMod.company_image==''">暂无</view>
|
||||
<view v-if="addMod.company_image == '' ">暂无</view>
|
||||
<image v-if="addMod.company_image!=''" :src="apiImgUrl+addMod.company_image"
|
||||
style="width: 95rpx;" mode="widthFix"></image>
|
||||
</view>
|
||||
@ -166,8 +166,8 @@
|
||||
</view>
|
||||
<view class="tn-flex">
|
||||
<view class="tn-flex-1 justify-content-item tn-margin-sm tn-text-center">
|
||||
<tn-button backgroundColor="rgb(65, 142, 242)" shape="round" fontColor="#ffffff" padding="40rpx 0"
|
||||
width="90%" fontBold @click="setUserEditDo">
|
||||
<tn-button backgroundColor="#2368F2" shape="round" fontColor="#ffffff" height="90rpx"
|
||||
width="616rpx" fontBold @click="setUserEditDo">
|
||||
<!-- <text class="tn-icon-light tn-padding-right-xs tn-color-black"></text> -->
|
||||
<text>提交审核</text>
|
||||
</tn-button>
|
||||
@ -210,8 +210,8 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:editType==4?'编辑个人经历':'编辑公司介绍'}]" :current="topCurrent" activeColor="#000"
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:editType==4?'编辑个人经历':'编辑公司介绍'}]" :current="topCurrent" activeColor="#202020"
|
||||
:bold="false" :fontSize="24"></tn-tabs>
|
||||
</view>
|
||||
</view>
|
||||
@ -228,12 +228,12 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-center tn-flex-row-center" style="color: #ffffff;">
|
||||
<view @click="editText = false"
|
||||
<!-- <view @click="editText = false"
|
||||
style="width: 300rpx;height: 80rpx;background: #d9d9d9;text-align: center;line-height: 80rpx;">
|
||||
取消</view>
|
||||
取消</view> -->
|
||||
<view @click="editTextDo()"
|
||||
style="width: 300rpx;height: 80rpx;background: #418EF2;margin-left: 48rpx;text-align: center;line-height: 80rpx;">
|
||||
确定</view>
|
||||
style="width: 616rpx;height: 90rpx;background: #2368F2;text-align: center;line-height: 90rpx;border-radius: 50rpx;">
|
||||
保存</view>
|
||||
</view>
|
||||
</view>
|
||||
</tn-popup>
|
||||
@ -541,7 +541,7 @@
|
||||
nikename: res.data.nikename,
|
||||
phone: res.data.phone,
|
||||
wx_number: res.data.wx_number,
|
||||
introduction: res.data.introduction == null || res.data.introduction == '' ? '无' : res
|
||||
introduction: res.data.introduction == null || res.data.introduction == '' ? '请输入个人经历' : res
|
||||
.data.introduction,
|
||||
enterprise_name: res.data.enterprise_name == null || res.data.enterprise_name == '' ?
|
||||
'无' : res.data.enterprise_name,
|
||||
@ -597,6 +597,13 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
.allbg{
|
||||
background: url('https://ysx.hschool.com.cn/uploads/1/20250508/f1e9d095e4b53735a4f02f427a762fad.png') no-repeat;
|
||||
background-size: 100%;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
/* 授权 */
|
||||
.login-page {
|
||||
width: 100vw;
|
||||
@ -671,4 +678,5 @@
|
||||
}
|
||||
|
||||
/* 底部悬浮按钮 end*/
|
||||
|
||||
</style>
|
@ -1,60 +1,62 @@
|
||||
<template>
|
||||
<view class="template-edit tn-safe-area-inset-bottom">
|
||||
<view class="allbg">
|
||||
<!-- 顶部自定义导航 -->
|
||||
<tn-nav-bar :isBack="false" backTitle="" :bottomShadow="true" backgroundColor="#FFFFFF">
|
||||
<tn-nav-bar :isBack="false" backTitle="" :bottomShadow="true" backgroundColor="transparent">
|
||||
<view class="custom-nav tn-flex tn-flex-col-center tn-flex-row-left">
|
||||
<view style="padding-left: 15rpx;" @click="goBack()">
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;color: #FFFFFF;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'意见反馈'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
style="">
|
||||
<tn-tabs :list="[{name:''}]" :current="topCurrent" activeColor="#ffffff" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
</view>
|
||||
</tn-nav-bar>
|
||||
<!-- :style="{paddingTop: vuex_custom_bar_height + 'px'}" -->
|
||||
<view class="tn-safe-area-inset-bottom bgmsg" >
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs">反馈人</view>
|
||||
</view>
|
||||
|
||||
<view class="tn-safe-area-inset-bottom" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-text-lg tn-padding-right-xs tn-text-bold">反馈人</view>
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input placeholder="填写姓名" name="input" v-model="formData.name" placeholder-style="color:#9B9B9B"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input placeholder="填写姓名" name="input" v-model="formData.name" placeholder-style="color:#AAAAAA"></input>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs">联系方式</view>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-text-lg tn-padding-right-xs tn-text-bold">联系方式</view>
|
||||
|
||||
<view class="" style="border-radius: 10rpx;text-align: right;">
|
||||
<input placeholder="填写联系方式" v-model="formData.phone" name="input" placeholder-style="color:#9B9B9B"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light" style="border-radius: 10rpx;padding: 20rpx 30rpx;">
|
||||
<input placeholder="填写联系方式" v-model="formData.phone" name="input" placeholder-style="color:#AAAAAA"></input>
|
||||
</view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-padding-top tn-margin">
|
||||
<view class="tn-flex justify-content-item">
|
||||
<view class="tn-text-lg tn-padding-right-xs tn-text-bold">反馈内容</view>
|
||||
<view class="line"></view>
|
||||
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
||||
<view class="tn-flex justify-content-item bfre">
|
||||
<view class="bf tn-padding-right-xs">反馈内容</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tn-margin tn-bg-gray--light tn-padding" style="border-radius: 10rpx;">
|
||||
<textarea maxlength="500" v-model="formData.content" placeholder="填写反馈内容" placeholder-style="color:#AAAAAA"></textarea>
|
||||
<view class="tn-bg-gray--light tn-padding tn-margin" style="border-radius: 10rpx;">
|
||||
<textarea maxlength="500" v-model="formData.content" placeholder="填写反馈内容" placeholder-style="color:#9B9B9B"></textarea>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<!-- 悬浮按钮-->
|
||||
<view class="tn-flex tn-footerfixed">
|
||||
<view class='tn-flex tn-tabbar-height' style="margin-top: 50rpx;">
|
||||
<view class="tn-flex-1 justify-content-item tn-margin-sm tn-text-center">
|
||||
<tn-button backgroundColor="#FBBD12" fontColor="#ffffff" padding="40rpx 0" width="60%" shadow
|
||||
fontBold @tap="submit">
|
||||
<tn-button shape="round" backgroundColor="#2368F2" fontColor="#ffffff" fontSize="32rpx" width="616rpx" height="85rpx"
|
||||
@tap="submit">
|
||||
<!-- <text class="tn-icon-light tn-padding-right-xs tn-color-black"></text> -->
|
||||
<text>提 交</text>
|
||||
<text style="font-size: 32rpx;">提交信息</text>
|
||||
</tn-button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class='tn-tabbar-height'></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@ -128,6 +130,12 @@ import store from "@/store";
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.allbg{
|
||||
background: url('https://ysx.hschool.com.cn/uploads/8/20250508/71582b6f021a4bed1b409ee3d48bf298.png') no-repeat;
|
||||
background-size: 100%;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
/* 底部悬浮按钮 start*/
|
||||
.tn-tabbar-height {
|
||||
min-height: 100rpx;
|
||||
@ -140,7 +148,6 @@ import store from "@/store";
|
||||
bottom: calc(30rpx + env(safe-area-inset-bottom));
|
||||
z-index: 1024;
|
||||
box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0);
|
||||
|
||||
}
|
||||
|
||||
/* 底部悬浮按钮 end*/
|
||||
@ -160,4 +167,36 @@ import store from "@/store";
|
||||
}
|
||||
|
||||
/* 标签内容 end*/
|
||||
.bgmsg{
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 18rpx;
|
||||
margin: 0 30rpx;
|
||||
margin-top: 440rpx;
|
||||
padding-bottom: 2rpx;
|
||||
}
|
||||
|
||||
.bfre{
|
||||
position: relative;
|
||||
.bf{
|
||||
margin-left: 12rpx;
|
||||
&::before{
|
||||
border-radius: 936rpx;
|
||||
content: ' ';
|
||||
width: 4rpx;
|
||||
height: 24rpx;
|
||||
background: #2368F2;
|
||||
position: absolute;
|
||||
top: 8rpx;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 630rpx;
|
||||
height: 1rpx;
|
||||
background: #E5E5E5;
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
|
@ -7,7 +7,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'我的消息'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -22,7 +22,7 @@
|
||||
<tn-input :disabled="true" :clearable="false" @click="upload_img" />
|
||||
<view slot="right" @click="upload_img">
|
||||
<view>
|
||||
<text v-if="formData.activity_image==''">请上传活动主图</text>
|
||||
<text v-if="formData.activity_image == ''">请上传活动主图</text>
|
||||
<image class="no-img" v-if="formData.activity_image!=''"
|
||||
:src="apiImgUrl+formData.activity_image"
|
||||
style="width: 100rpx;vertical-align: middle;" mode="widthFix"></image>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'详情'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||||
</view>
|
||||
<view class="tn-margin-top"
|
||||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
style="text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||||
<tn-tabs :list="[{name:'公告详情'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||||
:fontSize="36"></tn-tabs>
|
||||
</view>
|
||||
|
BIN
static/choose.png
Normal file
BIN
static/choose.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 541 B |
@ -305,8 +305,8 @@
|
||||
flex-direction: column;
|
||||
|
||||
.tn-steps__item__line {
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 2px;
|
||||
border-bottom-style: dashed;
|
||||
width: 50%;
|
||||
left: 75%;
|
||||
|
||||
@ -327,8 +327,8 @@
|
||||
min-height: 120rpx;
|
||||
|
||||
.tn-steps__item__line {
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
border-left-width: 2px;
|
||||
border-left-style: dashed;
|
||||
height: 50%;
|
||||
top: 75%;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user