cyl/master-0822
wangxia 3 months ago
parent a99e2afd80
commit 7dd8471bb7

@ -137,9 +137,14 @@
</div>
<!-- 地址选择输入框 -->
<div class="form-new-choose g_flex_rowRight_columnCenter" v-if="item.tip == 'slot-choose&input-address'">
<div class="" v-if="item.tip == 'slot-choose&input-address'">
<view v-if="item.uneditable" class="g_text_r">
{{ item.value || '-' }}
</view>
<view class="form-new-choose g_flex_rowRight_columnCenter" v-else>
<u-input v-model="item.value" @input="(e) => handleAddress(e, item, index)" class="g_flex_1 g_ml_8" maxlength="1000" type="textarea" :placeholder="item.placeholder" placeholder-style="color:#999;line-height:24px" :clearable="false" :customStyle="{ fontSize: '16px', 'text-align': 'right', 'min-height': '24px', 'line-height': '24px' }" />
<i class="iconfont g_fsi_18 g_c_c g_ml_4" :class="item.suffix" @click="chooseAddress(item)"></i>
</view>
</div>
<!-- 手机号 -->
<div class="form-new-tel g_flex_rowRight_columnCenter g_w_all" v-if="item.tip == 'slot-mobile'">

@ -130,6 +130,8 @@ export default {
uni.$on("changeJobInfo", function (data) {
that.updateInfo.jobId = data.info.leafCateId;
that.updateInfo.jobName = data.info.title;
that.currentJobInfo = data.info;
that.jobType = data.info.jobType;
console.log("data.info", data.info);
that.getJobDetail(data.info);
@ -196,6 +198,7 @@ export default {
IS_CREATOR: false,
jobType: 2,
isFans: 2,
currentJobInfo: {},
cdnBaseImg: this.G.store().cdnBaseImg,
nation: nationlist.map((item, index) => {
return item.name;
@ -256,6 +259,8 @@ export default {
},
setFormList(policyStr) {
let that = this;
console.log("that.updateInfo", that.updateInfo);
console.log('that.currentJobInfo.agencyId == uni.getStorageSync("apply-userinfo").agencyId',that.currentJobInfo.agencyId == uni.getStorageSync("apply-userinfo").agencyId);
if (that.isFans == 2) {
that.jobData = [
{
@ -294,6 +299,7 @@ export default {
longitude: that.updateInfo["interviewLng"],
},
tip: "slot-choose&input-address",
// uneditable: (that.currentJobInfo.agencyId == uni.getStorageSync("apply-userinfo").agencyId) ? false : true,
placeholder: "请选择面试地址",
type: "slot",
fontSize: "16px",

Loading…
Cancel
Save