Commit a203cd99 authored by zhengke's avatar zhengke
parents a10830ac d42d4dc7
This diff is collapsed.
...@@ -138,7 +138,8 @@ ...@@ -138,7 +138,8 @@
rowsPerPage: 10, rowsPerPage: 10,
Name: "", Name: "",
IsQPrice: 1, IsQPrice: 1,
SaleState: 2 //销售状态 SaleState: 2, //销售状态
AuditType: 0, //审核类型(1-部门主管审核,2-部门负责人审核)
}, },
dataList: [], dataList: [],
loading: true, loading: true,
...@@ -237,7 +238,9 @@ ...@@ -237,7 +238,9 @@
let StudyAbroadObj = userInfo.StudyAbroadObj; let StudyAbroadObj = userInfo.StudyAbroadObj;
StudyAbroadObj.forEach((x,index)=>{ StudyAbroadObj.forEach((x,index)=>{
if (x.Id === userInfo.Id) { if (x.Id === userInfo.Id) {
console.log("index", index)
this.AuditType = index + 1; this.AuditType = index + 1;
console.log("this.AuditType", this.AuditType)
} }
}) })
}, },
...@@ -250,11 +253,11 @@ ...@@ -250,11 +253,11 @@
//获取留学分页列表 //获取留学分页列表
getList() { getList() {
this.loading = true; this.loading = true;
this.msg.AuditType=1;
queryStudyAbroadPage(this.msg).then(res => { queryStudyAbroadPage(this.msg).then(res => {
this.loading = false; this.loading = false;
this.dataList = res.Data.PageData; this.dataList = res.Data.PageData;
this.PageCount = res.Data.PageCount; this.PageCount = res.Data.PageCount;
console.log(res, '数据');
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
......
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