|
@@ -49,7 +49,7 @@
|
49
|
49
|
<view class="flex-h">
|
50
|
50
|
<view><text class="Point">*</text>学校</view>
|
51
|
51
|
<view class="flex-item">
|
52
|
|
- <Picker v-model="Form.schoolId" :range="schoolList" @change="handleSchoolChange" label-key="name" value-key="schoolId">
|
|
52
|
+ <Picker :disabled="!!UserInfo.schoolName || !!Student.schoolName" v-model="Form.schoolId" :range="schoolList" @change="handleSchoolChange" label-key="name" value-key="schoolId">
|
53
|
53
|
<text style="font-size: 14px;">{{ Form.schoolName || '请选择学校' }}</text>
|
54
|
54
|
</Picker>
|
55
|
55
|
</view>
|
|
@@ -57,7 +57,7 @@
|
57
|
57
|
<view class="flex-h">
|
58
|
58
|
<view><text class="Point">*</text>专业</view>
|
59
|
59
|
<view class="flex-item">
|
60
|
|
- <Picker v-model="Form.specialtyId" :range="specialtyList" @change="handleSpecialtyChange" label-key="name" value-key="specialtyId">
|
|
60
|
+ <Picker :disabled="!!UserInfo.specialtyName || !!Student.specialtyName" v-model="Form.specialtyId" :range="specialtyList" @change="handleSpecialtyChange" label-key="name" value-key="specialtyId">
|
61
|
61
|
<text style="font-size: 14px;">{{ Form.specialtyName || '请选择专业' }}</text>
|
62
|
62
|
</Picker>
|
63
|
63
|
</view>
|
|
@@ -71,7 +71,7 @@
|
71
|
71
|
<view class="flex-h">
|
72
|
72
|
<view><text class="Point">*</text>学号</view>
|
73
|
73
|
<view class="flex-item">
|
74
|
|
- <input placeholder="请输入学号" v-model="Form.studentNo" />
|
|
74
|
+ <input :disabled="!!UserInfo.studentNo || !!(Student || {}).studentNo" placeholder="请输入学号" v-model="Form.studentNo" />
|
75
|
75
|
</view>
|
76
|
76
|
</view>
|
77
|
77
|
<view class="Save">
|