|
@@ -80,32 +80,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <!-- <div class="fa_i_item">
|
|
|
- <span>组织</span>
|
|
|
- <div>
|
|
|
- <el-select
|
|
|
- v-model="org"
|
|
|
- :popper-append-to-body="false"
|
|
|
- placeholder="请选择"
|
|
|
- :disabled="
|
|
|
- (OrgOptions.length == 1 && org) || OrgOptions.length == 0
|
|
|
- "
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in OrgOptions"
|
|
|
- :key="item.Uorg"
|
|
|
- :label="
|
|
|
- item.name
|
|
|
- ? item.name + '-' + item.schoolName
|
|
|
- : item.schoolName
|
|
|
- "
|
|
|
- :value="item.Uorg"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- </div> -->
|
|
|
-
|
|
|
<div class="fa_i_item">
|
|
|
<span>密码</span>
|
|
|
<div>
|
|
@@ -178,31 +152,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div class="fa_i_item">
|
|
|
- <span>组织</span>
|
|
|
- <div>
|
|
|
- <el-select
|
|
|
- v-model="org"
|
|
|
- :popper-append-to-body="false"
|
|
|
- placeholder="请选择"
|
|
|
- :disabled="
|
|
|
- (OrgOptions.length == 1 && org) || OrgOptions.length == 0
|
|
|
- "
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in OrgOptions"
|
|
|
- :key="item.Uorg"
|
|
|
- :label="
|
|
|
- item.name
|
|
|
- ? item.name + '-' + item.schoolName
|
|
|
- : item.schoolName
|
|
|
- "
|
|
|
- :value="item.Uorg"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- </div> -->
|
|
|
+
|
|
|
</div>
|
|
|
<div class="fa_weChat" v-if="['weChat'].includes(loginType)">
|
|
|
<div id="QRcode" class="QRcode" ref="QRcode"></div>
|
|
@@ -327,14 +277,18 @@
|
|
|
<div class="stuList">
|
|
|
<!-- <span v-for="i in classJuri" :key="i.userid">{{ i.name }}</span> -->
|
|
|
<!-- <div v-for="i in 10" :key="i" @click="selAcc(i)">yym</div> -->
|
|
|
- <div
|
|
|
- v-for="i in classJuri"
|
|
|
- :key="i.userid"
|
|
|
- :class="[stuInfoCode.userid == i.userid ? 'stuback' : '']"
|
|
|
- @click="selAcc(i)"
|
|
|
- >
|
|
|
- {{ i.name }}
|
|
|
- </div>
|
|
|
+ <div
|
|
|
+ v-for="i in classJuri"
|
|
|
+ :key="i.userid"
|
|
|
+ :class="[stuInfoCode.userid == i.userid ? 'stuback' : '']"
|
|
|
+ @click="selAcc(i)"
|
|
|
+ >
|
|
|
+ <el-tooltip effect="dark" :content="i.name" placement="top">
|
|
|
+ <span>
|
|
|
+ {{ i.name }}
|
|
|
+ </span>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div v-if="!classJuri.length" class="none">此班级暂无学生</div>
|
|
|
<div class="lp_r_b_btn" @click="loginCode" v-loading="loading">
|