|
@@ -35,6 +35,7 @@
|
|
|
<uni-forms :modelValue="formData" label-width="0">
|
|
|
|
|
|
<text style="color: red;line-height: 30px;vertical-align: middle;margin-right: 4px;">*</text><text>用户昵称:</text>
|
|
|
+ <text class="tn-icon-help" style="color:#999;padding: 4px;" @click="showTips=!showTips"></text>
|
|
|
<uni-forms-item label="用户昵称" name="realName" label-width="0">
|
|
|
<uni-easyinput type="text" disabled v-model="formInfo.contactNickName" placeholder="请输入您的昵称" />
|
|
|
</uni-forms-item>
|
|
@@ -48,6 +49,7 @@
|
|
|
</uni-forms-item>
|
|
|
|
|
|
</uni-forms>
|
|
|
+ <text v-if="showTips" style="font-size: 12px;color:#999;">如要更改个人信息,请在我的=><text>个人信息</text>页面更改</text>
|
|
|
</view>
|
|
|
|
|
|
<view v-if="selectValue=='公司'" style="padding: 16px">
|
|
@@ -385,6 +387,7 @@
|
|
|
mixins: [template_page_mixin],
|
|
|
data() {
|
|
|
return {
|
|
|
+ showTips:false,
|
|
|
canSave:true,
|
|
|
isMedical: '1',
|
|
|
content: '',
|
|
@@ -536,7 +539,7 @@
|
|
|
}
|
|
|
},
|
|
|
onLoad(props) {
|
|
|
- console.error(props.sid);
|
|
|
+ //从暂存里面编辑
|
|
|
if(props.sid){
|
|
|
this.isEdit = true;
|
|
|
this.editItem = JSON.parse(uni.getStorageSync(props.sid)||'{}');
|
|
@@ -582,6 +585,11 @@
|
|
|
this.getCompany();
|
|
|
},
|
|
|
methods: {
|
|
|
+ showSet(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/minePages/set',
|
|
|
+ });
|
|
|
+ },
|
|
|
preStep(){
|
|
|
this.stepIndex = this.stepIndex-1;
|
|
|
},
|