Commit c759fd7c authored by zhengke's avatar zhengke

1

parent 0d5d6a0f
...@@ -82,16 +82,15 @@ ...@@ -82,16 +82,15 @@
</q-card-section> </q-card-section>
<q-card-section class="q-pt-none scroll" style="max-height: 70vh"> <q-card-section class="q-pt-none scroll" style="max-height: 70vh">
<q-table :pagination="pMsg" :loading="loading" no-data-label="暂无相关数据" selection="multiple" flat <q-table :pagination="pMsg" :loading="loading" no-data-label="暂无相关数据" selection="multiple" flat
:selected.sync="selected" class="sticky-column-table" separator="none" :data="dataList" :columns="columns" :selected.sync="selected" class="sticky-column-table" separator="none" style="max-height: 500px" :data="dataList" :columns="columns"
row-key="ClassPlanId" hide-bottom> row-key="ClassPlanId" hide-bottom>
<template v-slot:top="props"> <template v-slot:top="props">
<q-space /> <q-space />
<div class="page-option"> <div class="page-option">
<q-btn color="accent" size="sm" class="q-mr-md" @click="isShowClassForm=true" label="全部重排" /> <q-btn color="accent" size="sm" class="q-mr-md" @click="isShowClassForm=true" label="全部重排" />
<q-select filled stack-label option-value="Id" option-label="Name" v-model="msg.ChangeType" <q-select filled stack-label style="display:inline-block;width:150px;" option-value="Id" option-label="Name" v-model="msg.ChangeType"
:options="changeTypeList" label="变更类型" :dense="false" class="col-6" emit-value map-options :options="changeTypeList" label="变更类型" :dense="false" class="col-6" emit-value map-options
@input="changeTypeResult" /> @input="changeTypeResult" />
</div> </div>
</template> </template>
<template v-slot:body-cell-PlanTimeList="props"> <template v-slot:body-cell-PlanTimeList="props">
...@@ -145,6 +144,14 @@ ...@@ -145,6 +144,14 @@
</q-td> </q-td>
</template> </template>
</q-table> </q-table>
<div class="row wrap">
<div class="col-6">
<q-select filled stack-label option-value="TId" option-label="TeacherName" v-model="TeacherId"
ref="Teacher_Id" :options="TeacherList" label="关联教师" :dense="false" class="col-6 q-pr-lg q-pb-lg"
emit-value map-options />
</div>
</div>
</q-card-section> </q-card-section>
<q-separator /> <q-separator />
<q-card-actions align="right" class="bg-white"> <q-card-actions align="right" class="bg-white">
...@@ -269,7 +276,9 @@ ...@@ -269,7 +276,9 @@
ChangeType: 1, ChangeType: 1,
selected: [] selected: []
}, },
saveClassLoading: false saveClassLoading: false,
TeacherId: 0,
ClassRoomId: 0
} }
}, },
created() { created() {
...@@ -285,7 +294,9 @@ ...@@ -285,7 +294,9 @@
this.getList(); this.getList();
}, },
methods: { methods: {
changeTypeResult(){
},
//关闭弹窗 //关闭弹窗
closeCourseForm() { closeCourseForm() {
this.$emit('close'); this.$emit('close');
......
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