|
@@ -440,7 +440,7 @@
|
|
|
}).catch(err=> {this.$toast.clear();});
|
|
|
},
|
|
|
sea() {
|
|
|
- console.log(this.userName.length)
|
|
|
+ // console.log(this.userName.length)
|
|
|
if(this.userName.length > 0) {
|
|
|
// let text = this.userName
|
|
|
// let reg = new RegExp(text)
|
|
@@ -456,7 +456,7 @@
|
|
|
let arrList = Array.from(new Set(dataTree))
|
|
|
this.projectss = arrList
|
|
|
} else {
|
|
|
- console.log(456)
|
|
|
+ // console.log(456)
|
|
|
this.projectss = this.proads
|
|
|
}
|
|
|
},
|
|
@@ -722,7 +722,7 @@
|
|
|
this.form.domains[this.clickTimeIndex].label = value.label;
|
|
|
this.showPickerTime = false;
|
|
|
} else if (this.reportTimeType.type == 1) {
|
|
|
- console.log('this.reportTimeType.type=='+value,this.form.domains);
|
|
|
+ // console.log('this.reportTimeType.type=='+value,this.form.domains);
|
|
|
this.form.domains[this.clickTimeIndex].workingTime = value;
|
|
|
this.form.domains[this.clickTimeIndex].label = value.toFixed(1)+'小时';
|
|
|
this.showPickerHours = false;
|
|
@@ -878,7 +878,7 @@
|
|
|
}
|
|
|
}
|
|
|
let serverPicArray = [];
|
|
|
- console.log('picArray=='+list[i].picStr);
|
|
|
+ // console.log('picArray=='+list[i].picStr);
|
|
|
if (list[i].picStr != null && list[i].picStr != '@') {
|
|
|
serverPicArray = JSON.parse(list[i].picStr.replace(/@/g,","));
|
|
|
}
|
|
@@ -958,7 +958,7 @@
|
|
|
this.$toast.fail('获取失败:'+res.msg);
|
|
|
}
|
|
|
if(localStorage.getItem("formVal")) {
|
|
|
- console.log('触发了')
|
|
|
+ // console.log('触发了')
|
|
|
var obj = localStorage.getItem("formVal")
|
|
|
this.form = JSON.parse(obj)
|
|
|
localStorage.removeItem('formVal')
|
|
@@ -1015,7 +1015,7 @@
|
|
|
if (!this.canEdit) return;
|
|
|
// this.clickIndex = i;
|
|
|
// this.showPickerProject = true;
|
|
|
- console.log(i, item, this.form)
|
|
|
+ // console.log(i, item, this.form)
|
|
|
this.proIdx = i
|
|
|
this.showPickerUserddp = true
|
|
|
// this.$router.push({
|
|
@@ -1037,7 +1037,7 @@
|
|
|
//选择任务
|
|
|
clickPickerTask(i) {
|
|
|
if (!this.canEdit) return;
|
|
|
- console.log(i);
|
|
|
+ // console.log(i);
|
|
|
this.clickIndex = i;
|
|
|
// var proId = this.form.domains[this.clickIndex].projectId
|
|
|
// this.getTaskList(proId)
|
|
@@ -1114,12 +1114,12 @@
|
|
|
|
|
|
|
|
|
getProjectProfessions(domain, index) {
|
|
|
- console.log(domain, '数据')
|
|
|
+ // console.log(domain, '数据')
|
|
|
this.$axios.post("/project-profession/getMyProfession", {projectId: domain.projectId})
|
|
|
.then(res => {
|
|
|
if(res.code == "ok") {
|
|
|
this.form.domains[this.clickIndex].professionProgress = res.data;
|
|
|
- console.log(this.form.domains)
|
|
|
+ // console.log(this.form.domains)
|
|
|
this.$forceUpdate();
|
|
|
} else {
|
|
|
this.$toast.fail('获取失败');
|
|
@@ -1539,7 +1539,7 @@
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
- console.log(localStorage.getItem("formVal"))
|
|
|
+ // console.log(localStorage.getItem("formVal"))
|
|
|
var ua = navigator.userAgent.toLowerCase();
|
|
|
this.isIOSystem = this.isIOS();
|
|
|
if (ua.indexOf("wxwork") > 0) {
|