Commit fd82d8f2 authored by 黄奎's avatar 黄奎

页面修改

parents b299e281 833d23d4
This diff is collapsed.
......@@ -63,9 +63,8 @@
:input="true" @input="changePage" />
</template>
</q-table>
<yuekeForm v-if="isShowYue" :ChoiceType="ChoiceType" :save-obj="visitorItem" @close="closeYuekeForm"
@success="refreshPage"></yuekeForm>
<exorderForm v-if="isShowExOrder" @close="closeOrderForm" @success="refreshPage"></exorderForm>
<yuekeForm v-if="isShowYue" :ChoiceType="ChoiceType" :save-obj="visitorItem" @close="closeYuekeForm" @success="refreshPage"></yuekeForm>
<exorderForm v-if="isShowExOrder" :save-obj="visitorItem" @close="closeOrderForm" @success="refreshPage"></exorderForm>
</div>
</template>
......@@ -150,12 +149,11 @@
field: 'Id'
}
],
isShowYue: false,
ChoiceType: 0,
visitorItem: {}, //选中的对象
isShowExOrder: false,
TeacherList: [], //教师列表
ClassRoomList: [], //教室列表
isShowYue:false,
ChoiceType:0,
visitorItem:{},//选中的对象
isShowExOrder:false,
}
},
created() {
......@@ -194,7 +192,6 @@
//获取课程系列分页列表
getList() {
queryVisitorReservePage(this.msg).then(res => {
console.log(res, '数据');
if (res.Code == 1) {
this.dataList = res.Data.PageData;
this.PageCount = res.Data.PageCount;
......@@ -218,10 +215,10 @@
refreshPage() {
this.getList();
},
ExchangeOrder() {
this.isShowExOrder = true;
ExchangeOrder(item){
this.visitorItem = item;
this.isShowExOrder=true;
}
}
}
......
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