Commit 0370265d authored by 黄奎's avatar 黄奎

页面修改

parent a0d66fa9
This diff is collapsed.
...@@ -139,7 +139,8 @@ ...@@ -139,7 +139,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,
...@@ -243,7 +244,9 @@ ...@@ -243,7 +244,9 @@
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.auditList.forEach((x, index) => { this.auditList.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)
} }
}) })
}) })
...@@ -256,11 +259,11 @@ ...@@ -256,11 +259,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