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

页面修改

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