Commit fd82d8f2 authored by 黄奎's avatar 黄奎

页面修改

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