Commit 28916d18 authored by 黄奎's avatar 黄奎

页面修改

parent 233e9c11
...@@ -9,8 +9,9 @@ ...@@ -9,8 +9,9 @@
</div> </div>
</div> </div>
<div class="page-content"> <div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table sticky-right-column-table" <q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat
separator="none" :data="dataList" :columns="columns" row-key="name"> class="sticky-column-table sticky-right-column-table" separator="none" :data="dataList" :columns="columns"
row-key="name">
<template v-slot:top="props"> <template v-slot:top="props">
<div class="col-2 q-table__title">留学就业审核信息</div> <div class="col-2 q-table__title">留学就业审核信息</div>
<q-space /> <q-space />
...@@ -93,10 +94,10 @@ ...@@ -93,10 +94,10 @@
</template> </template>
<template v-slot:body-cell-Id="props"> <template v-slot:body-cell-Id="props">
<q-td :props="props"> <q-td :props="props">
<q-btn v-if="props.row.SaleState==2&&msg.AuditType>0" flat size="xs" icon="edit" color="accent" style="font-weight:400" label="审核" <q-btn v-if="props.row.SaleState==2&&msg.AuditType>0" flat size="xs" icon="edit" color="accent"
@click="EditStudy(props.row)" /> style="font-weight:400" label="审核" @click="EditStudy(props.row)" />
<q-btn flat size="xs" icon="edit" color="accent" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="详情"
style="font-weight:400" label="详情" @click="getviewInfo(props.row)" /> @click="getviewInfo(props.row)" />
</q-td> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
...@@ -137,6 +138,7 @@ ...@@ -137,6 +138,7 @@
IsQPrice: 1, IsQPrice: 1,
SaleState: 2, //销售状态 SaleState: 2, //销售状态
AuditType: 0, //审核类型(1-部门主管审核,2-部门负责人审核) AuditType: 0, //审核类型(1-部门主管审核,2-部门负责人审核)
AuditState: 1, //审核状态(1-待审核,2-已审核)
}, },
dataList: [], dataList: [],
loading: true, loading: true,
...@@ -214,8 +216,8 @@ ...@@ -214,8 +216,8 @@
PageCount: 0, PageCount: 0,
isShowStudy: false, //是否显示留学弹窗 isShowStudy: false, //是否显示留学弹窗
Id: 0, Id: 0,
currentUserId: 0,//当前用户登录Id currentUserId: 0, //当前用户登录Id
isShowInfo:false isShowInfo: false
} }
}, },
mounted() { mounted() {
...@@ -259,7 +261,7 @@ ...@@ -259,7 +261,7 @@
closeStudyForm() { closeStudyForm() {
this.isShowStudy = false; this.isShowStudy = false;
}, },
closeStudyInfo(){ closeStudyInfo() {
this.isShowInfo = false; this.isShowInfo = false;
}, },
//编辑留学 //编辑留学
...@@ -267,7 +269,7 @@ ...@@ -267,7 +269,7 @@
this.Id = obj.Id; this.Id = obj.Id;
this.isShowStudy = true; this.isShowStudy = true;
}, },
refreshPage(){ refreshPage() {
this.getList(); this.getList();
}, },
//申请审核 //申请审核
......
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