|
@@ -94,12 +94,12 @@
|
|
|
<view class="label">公司</view>
|
|
<view class="label">公司</view>
|
|
|
<input v-model="companyName" :disabled="true" placeholder="请填写公司名称" placeholder-class="placeholder" class="ipt flex" />
|
|
<input v-model="companyName" :disabled="true" placeholder="请填写公司名称" placeholder-class="placeholder" class="ipt flex" />
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="li ddflex">
|
|
|
|
|
|
|
+ <!-- <view class="li ddflex">
|
|
|
<view class="label">公司简介</view>
|
|
<view class="label">公司简介</view>
|
|
|
<input v-if="!companyIntroduction" @tap="jumpUrl('/card/editDesc/editDesc?isCompanyIntroduction=true')" :disabled="true" maxlength="11" type="number" placeholder="请填写公司简介" placeholder-class="placeholder" class="ipt flex" />
|
|
<input v-if="!companyIntroduction" @tap="jumpUrl('/card/editDesc/editDesc?isCompanyIntroduction=true')" :disabled="true" maxlength="11" type="number" placeholder="请填写公司简介" placeholder-class="placeholder" class="ipt flex" />
|
|
|
<view class="fflex" v-else style="color: #47C776;" @tap="jumpUrl('/card/editDesc/editDesc?isCompanyIntroduction=true')">已完善</view>
|
|
<view class="fflex" v-else style="color: #47C776;" @tap="jumpUrl('/card/editDesc/editDesc?isCompanyIntroduction=true')">已完善</view>
|
|
|
<image src="../../static/images/rico.png" class="rico"></image>
|
|
<image src="../../static/images/rico.png" class="rico"></image>
|
|
|
- </view>
|
|
|
|
|
|
|
+ </view> -->
|
|
|
<view class="li ddflex">
|
|
<view class="li ddflex">
|
|
|
<view class="label">入司时间</view>
|
|
<view class="label">入司时间</view>
|
|
|
<picker mode="date" v-model="inDate" :disabled="true" @change="inDateChange">
|
|
<picker mode="date" v-model="inDate" :disabled="true" @change="inDateChange">
|
|
@@ -275,7 +275,7 @@ export default {
|
|
|
this.wechatCode = res.wechatCode;
|
|
this.wechatCode = res.wechatCode;
|
|
|
this.email = res.email;
|
|
this.email = res.email;
|
|
|
this.companyName = res.companyName;
|
|
this.companyName = res.companyName;
|
|
|
- this.companyIntroduction = res.companyIntroduction
|
|
|
|
|
|
|
+ this.companyIntroduction = res.companyIntroduction?res.companyIntroduction:''
|
|
|
this.industryName = res.industryName;
|
|
this.industryName = res.industryName;
|
|
|
this.tradeId = res.tradeId;
|
|
this.tradeId = res.tradeId;
|
|
|
this.address = res.address;
|
|
this.address = res.address;
|
|
@@ -499,7 +499,7 @@ export default {
|
|
|
if (!this.wechat) return req.msg('请填写微信号');
|
|
if (!this.wechat) return req.msg('请填写微信号');
|
|
|
if (!this.wechatCode) return req.msg('请上传微信二维码');
|
|
if (!this.wechatCode) return req.msg('请上传微信二维码');
|
|
|
if (!this.companyName) return req.msg('请填写公司名称');
|
|
if (!this.companyName) return req.msg('请填写公司名称');
|
|
|
- if (!this.companyIntroduction) return req.msg('请填写公司简介');
|
|
|
|
|
|
|
+ // if (!this.companyIntroduction) return req.msg('请填写公司简介');
|
|
|
if (!this.job) return req.msg('请填写职位')
|
|
if (!this.job) return req.msg('请填写职位')
|
|
|
if (!this.areaCode) return req.msg('请选择所在地区');
|
|
if (!this.areaCode) return req.msg('请选择所在地区');
|
|
|
if (!this.address) return req.msg('请填写详细地址');
|
|
if (!this.address) return req.msg('请填写详细地址');
|