Commit 084c9144 by 莫晓莉

mxl

parent acb2fac2
......@@ -72,11 +72,14 @@
},
methods: {
getSatisfactionEvaluation() {
// uni.showLoading({
// title:"加载中..."
// })
getSatisfactionEvaluation({
page: this.page,
size: this.size
}).then(res => {
}).then(res => {
// uni.hideLoading()
console.log("获取反馈历史", res);
if (res.code != 200) {
uni.showToast({
......@@ -93,6 +96,7 @@
this.page++;
this.satisHisList = _list;
this.hasMore = hasMore;
})
}
......
......@@ -260,7 +260,7 @@
})
},
getApplyProject(){
getApplyProject({size:20,page:1}).then(res => {
getApplyProject({status:1,size:20,page:1}).then(res => {
if (res.code == 200) {
var list=res.data.data.rows;
this.applyProjectList=list;
......@@ -269,6 +269,12 @@
},
//选择项目
ChangeProId(e) {
// if(this.applyProjectList.length==0){
// uni.showModal({
// content:'暂无申请项目'
// })
// }
this.applyProjectListIndex = e.detail.value;
this.evaluationForm.projectId=this.applyProjectList[this.applyProjectListIndex].id;
this.evaluationForm.sort=this.applyProjectList[this.applyProjectListIndex].disableUserProjectTypeName;
......
......@@ -117,11 +117,15 @@
},
// 分页获取列表
getApplyProject() {
// uni.showLoading({
// title:"加载中..."
// })
getApplyProject({
status: this.statusIndex,
page: this.page,
size: this.size
}).then(res => {
// uni.hideLoading();
if (res.code != 200) {
uni.showToast({
title: '系统繁忙,加载失败!',
......
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