mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-14 05:16:45 +08:00
feat:添加在线课面授课任务命名规则
This commit is contained in:
@@ -29,15 +29,21 @@
|
||||
</div>
|
||||
<span style="margin-right: 3px">课程名称:</span>
|
||||
</div>
|
||||
<div class="btnbox" style="position: relative">
|
||||
<div class="btnbox">
|
||||
<div
|
||||
style="position: relative; display: flex; align-items: center"
|
||||
>
|
||||
<a-input
|
||||
v-model:value="courseName"
|
||||
style="width: 423px; height: 32px"
|
||||
placeholder="请输入名称,最多输入20个字"
|
||||
:maxlength="20"
|
||||
/>
|
||||
<div class="inp_num" style="position: absolute; right: 115px">
|
||||
<span style="color: #c7cbd2"> {{ courseName.length }}/20 </span>
|
||||
<div class="inp_num" style="position: absolute; right: 7px">
|
||||
<span style="color: #c7cbd2">
|
||||
{{ courseName ? courseName.length : 0 }}/20
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -98,7 +104,7 @@
|
||||
</div>
|
||||
<span style="margin-right: 3px">授课教师:</span>
|
||||
</div>
|
||||
<div class="btnbox" style="width: 423px">
|
||||
<div class="btnbox" style="width: 300px">
|
||||
<!-- <a-auto-complete placeholder="选择老师" :value="memberValue.label" style="width: 364px"-->
|
||||
<!-- :options="options" @change="handleChange2" @search="handleSearch"></a-auto-complete>-->
|
||||
<ProjectManager
|
||||
|
||||
@@ -22,13 +22,26 @@
|
||||
<div class="mi_ipts">
|
||||
<div class="mii_ipt">
|
||||
<div class="ipt_name">课程名称:</div>
|
||||
<div class="fi_input">
|
||||
<div
|
||||
class="fi_input"
|
||||
style="position: relative; display: flex; align-items: center"
|
||||
>
|
||||
<a-input
|
||||
v-model:value="inputV1"
|
||||
style="width: 240px; height: 40px; border-radius: 8px"
|
||||
style="
|
||||
width: 280px;
|
||||
height: 40px;
|
||||
border-radius: 8px;
|
||||
padding-right: 49px;
|
||||
"
|
||||
placeholder="请输入课程名称"
|
||||
maxlength="20"
|
||||
/>
|
||||
<div class="inp_num" style="position: absolute; right: 7px">
|
||||
<span style="color: #c7cbd2">
|
||||
{{ inputV1 ? inputV1.length : 0 }}/20
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 2022-12-10注释 后面放开 李晓鸽 -->
|
||||
|
||||
Reference in New Issue
Block a user