|
@@ -319,7 +319,6 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
isRadioFun(val) {
|
|
|
- console.log(val);
|
|
|
},
|
|
|
forMatCom(val) {
|
|
|
if (val.isComplete == "0") {
|
|
@@ -338,7 +337,6 @@ export default {
|
|
|
//查询题目列表
|
|
|
let list = [];
|
|
|
list = res.data;
|
|
|
- console.log(list);
|
|
|
//过滤一下list
|
|
|
|
|
|
this.topPicList = list.filter((item) => {
|
|
@@ -349,8 +347,6 @@ export default {
|
|
|
this.topicVisible = true;
|
|
|
},
|
|
|
radioClick(val) {
|
|
|
- console.log(val);
|
|
|
- console.log(this.proDataLin);
|
|
|
//在数组中招待
|
|
|
let params = {
|
|
|
planId: val.planId,
|
|
@@ -363,13 +359,9 @@ export default {
|
|
|
},
|
|
|
reportDetail(params) {
|
|
|
let url = `/userRecordScore/findByFlagAndUserNo?planId=${params.planId}&userNo=${params.userNo}&flag=${params.flag}`;
|
|
|
- console.log(url);
|
|
|
this.$http.get(url, {}, (res) => {
|
|
|
- console.log(res);
|
|
|
if (res.code == 200) {
|
|
|
// this.reportData = res.data;
|
|
|
- console.log("res");
|
|
|
- console.log(res);
|
|
|
this.reportDataAll = res.data.filter((item) => {
|
|
|
return item.dimensionName != "总分";
|
|
|
});
|
|
@@ -415,7 +407,6 @@ export default {
|
|
|
//调用接口开始添加
|
|
|
let url = `/planUser/deletePlanUsers`;
|
|
|
this.$http.post(url, data, (res) => {
|
|
|
- console.log(res);
|
|
|
if (res && res.code == 200) {
|
|
|
this.searchTarget();
|
|
|
this.tableData = res.data.content;
|
|
@@ -432,7 +423,6 @@ export default {
|
|
|
this.userSearchTarget();
|
|
|
},
|
|
|
isComUser(val, row) {
|
|
|
- console.log(this.multipleSelection);
|
|
|
//添加已选用户
|
|
|
let data = [];
|
|
|
if (val == 1) {
|
|
@@ -461,7 +451,6 @@ export default {
|
|
|
//调用接口开始添加
|
|
|
let url = `/planUser/savePlanUsers`;
|
|
|
this.$http.post(url, data, (res) => {
|
|
|
- console.log(res);
|
|
|
if (res && res.code == 200) {
|
|
|
this.searchTarget();
|
|
|
this.userSearchTarget();
|
|
@@ -485,7 +474,6 @@ export default {
|
|
|
searchList() {
|
|
|
let url = `/plan/findAllByUserNo?pageSize=${this.pageSize}&pageNum=${this.pageNum}&userNo=${this.proDataLin.userNo}`;
|
|
|
this.$http.get(url, {}, (res) => {
|
|
|
- console.log(res);
|
|
|
if (res && res.code == 200) {
|
|
|
this.tableData = res.data.content;
|
|
|
this.total = res.data.totalElements;
|
|
@@ -499,7 +487,6 @@ export default {
|
|
|
userSearchList() {
|
|
|
let url = `/plan/planAddUser?pageSize=${this.userpageSize}&pageNum=${this.userPageNum}&planId=${this.proDataLin.id}&orgNo=${this.proDataLin.planOrgNo}`;
|
|
|
this.$http.get(url, {}, (res) => {
|
|
|
- console.log(res);
|
|
|
if (res && res.code == 200) {
|
|
|
this.userTableData = res.data.content;
|
|
|
this.userTotalotal = res.data.totalElements;
|
|
@@ -511,7 +498,6 @@ export default {
|
|
|
},
|
|
|
//每页多少条
|
|
|
handleSizeChange(val) {
|
|
|
- console.log(`每页 ${val} 条`);
|
|
|
//将首页重置为1时---且总条数变化
|
|
|
//设置为当前总条数
|
|
|
},
|
|
@@ -620,7 +606,6 @@ export default {
|
|
|
|
|
|
register() {
|
|
|
let that = this;
|
|
|
- console.log(this.userInfo);
|
|
|
this.$http.post(`/plan/addOrUpdate`, {}, (res) => {
|
|
|
this.disableFlagStatus();
|
|
|
// this.disableFlag = false;
|