0.0 3 years ago
parent
commit
2254869ba6
  1. 2
      src/views/wjnft/appcollectionlication/index.vue
  2. 15
      src/views/wjnft/feedback/index.vue

2
src/views/wjnft/appcollectionlication/index.vue

@ -506,7 +506,7 @@ export default {
this.form.state = 3
}
updateApplication(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.$modal.msgSuccess("审核成功");
this.open = false;
this.getList();
});

15
src/views/wjnft/feedback/index.vue

@ -299,7 +299,9 @@ export default {
total: 0,
srcLists: [],
//
feedbackList: [],
feedbackList: [
],
//
title: "",
//
@ -334,15 +336,12 @@ export default {
getList() {
this.loading = true;
listFeedback(this.queryParams).then(response => {
this.feedbackList = response.rows;
console.log(response.rows)
// this.feedbackList.picture
response.rows.forEach(item =>{
this.feedbackList.picture = item.picture.split(',')[0];
console.log(item.picture.split(','))
this.srcLists.push(item.picture);
this.srcLists.push(item.picture.split(',')[0]);
});
this.feedbackList.picture = this.srcLists;
this.feedbackList = response.rows;
console.log(this.feedbackList.picture)
this.total = response.total;
this.loading = false;
});

Loading…
Cancel
Save