Commit a6537e36 authored by 罗超's avatar 罗超

1

parent ee2c7cab
...@@ -12,7 +12,7 @@ export default { ...@@ -12,7 +12,7 @@ export default {
<style> <style>
@import url('~assets/css/font.css'); @import url('~assets/css/font.css');
@import url('//at.alicdn.com/t/font_2077629_tknu7rklxe.css'); @import url('//at.alicdn.com/t/font_2077629_gab1nkk31vv.css');
.q-scrollarea__thumb{ .q-scrollarea__thumb{
z-index: 999999!important; z-index: 999999!important;
} }
......
...@@ -237,7 +237,7 @@ ...@@ -237,7 +237,7 @@
<div class="replayReason"> <div class="replayReason">
<div class="replay_Title">停课原因</div> <div class="replay_Title">停课原因</div>
<div style="color:#666666;margin-top:5px;"> <div style="color:#666666;margin-top:5px;">
{{setingObj.DataObj.Remarks}} {{setingObj.DataObj.Remarks||'无'}}
</div> </div>
</div> </div>
<!-- <template v-if="setingObj.SpecialNode==1"> <!-- <template v-if="setingObj.SpecialNode==1">
......
...@@ -195,9 +195,9 @@ ...@@ -195,9 +195,9 @@
class="sticky-column-table" separator="none" :data="setingObj.DataObj.ClassPlanTimeList" class="sticky-column-table" separator="none" :data="setingObj.DataObj.ClassPlanTimeList"
:columns="columns" row-key="name"> :columns="columns" row-key="name">
<template v-slot:body-cell-time="props"> <template v-slot:body-cell-time="props">
<td class="flex items-center full-height" style="height:100%"> <q-td >
{{props.row.StartTime}}-{{props.row.EndTime}} {{props.row.StartTime}}-{{props.row.EndTime}}
</td> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
</template> </template>
...@@ -221,7 +221,7 @@ ...@@ -221,7 +221,7 @@
<div class="replayReason"> <div class="replayReason">
<div class="replay_Title">申请原因</div> <div class="replay_Title">申请原因</div>
<div style="color:#666666;margin-top:5px;"> <div style="color:#666666;margin-top:5px;">
{{setingObj.DataObj.Remarks}} {{setingObj.DataObj.Remarks||'无'}}
</div> </div>
</div> </div>
<div v-if="showType==2"> <div v-if="showType==2">
......
...@@ -74,9 +74,9 @@ ...@@ -74,9 +74,9 @@
</q-item> </q-item>
</template> </template>
</q-select> </q-select>
<q-input filled v-model="msg.GuestName" clearable class="col-6" label="学员姓名" maxlength="200"> <q-input filled v-model="msg.GuestName" clearable class="col-6" label="学员姓名" maxlength="200" @clear="getNotClassStudentList">
<template v-slot:append> <template v-slot:append >
<q-icon name="search" @click="getNotClassStudentList" @keyup.enter="getNotClassStudentList" /> <q-icon name="search" style="cursor:pointer;" @click="getNotClassStudentList"/>
</template> </template>
</q-input> </q-input>
</div> </div>
...@@ -199,7 +199,13 @@ ...@@ -199,7 +199,13 @@
}, },
stuList: [], stuList: [],
selectedStu: [], selectedStu: [],
stuColumns: [{ stuColumns: [
{
name: 'Id',
label: '编号',
field: 'Id',
align: 'left'
},{
name: 'GuestName', name: 'GuestName',
label: '姓名', label: '姓名',
field: 'GuestName', field: 'GuestName',
...@@ -372,7 +378,6 @@ ...@@ -372,7 +378,6 @@
OrderGuestIds: stuIds, OrderGuestIds: stuIds,
Remarks: this.msg.Remarks Remarks: this.msg.Remarks
} }
console.log(366,obj)
this.saveLoading = true this.saveLoading = true
setStuInviteApply(obj).then(res => { setStuInviteApply(obj).then(res => {
this.saveLoading = false this.saveLoading = false
...@@ -394,7 +399,7 @@ ...@@ -394,7 +399,7 @@
}) })
} }
}).catch(err => { }).catch(err => {
this.saveLoading = true this.saveLoading = flase
}) })
} }
}, },
......
This diff is collapsed.
...@@ -1022,6 +1022,10 @@ const routes = [{ ...@@ -1022,6 +1022,10 @@ const routes = [{
path: "/teacher/teacherSchedule", path: "/teacher/teacherSchedule",
component: () => component: () =>
import("pages/teacher/teacherSchedule") import("pages/teacher/teacherSchedule")
}, {
path: "/stuMan/activeList",//学管 活动列表
component: () =>
import("pages/stuMan/activeList")
} }
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment