|
@@ -425,6 +425,7 @@ export default {
|
|
|
},
|
|
|
//计划下---组织改变--触发的方法
|
|
|
orgChangeOne(val) {
|
|
|
+ console.log(val)
|
|
|
//设置该处选择的对象
|
|
|
//设置当前选择的对象
|
|
|
//获取val 为ID
|
|
@@ -451,14 +452,14 @@ export default {
|
|
|
//设置的话触发一次对比
|
|
|
},
|
|
|
orgChangeTwo(val) {
|
|
|
+
|
|
|
let list1 = [];
|
|
|
list1 = this.organizationsList.filter((item) => {
|
|
|
return item.id == val;
|
|
|
});
|
|
|
- if (list1[0].length == 1) {
|
|
|
+ if (list1.length == 1) {
|
|
|
this.compareOptionsOrg2 = list1[0];
|
|
|
}
|
|
|
-
|
|
|
if (
|
|
|
this.firstParams == 1 &&
|
|
|
this.selectPlan1 !== null &&
|
|
@@ -675,6 +676,7 @@ export default {
|
|
|
|
|
|
// 判断是否标红
|
|
|
isRed(i, n) {
|
|
|
+ // return false
|
|
|
//先判断两个是否相同
|
|
|
//如果相同的话
|
|
|
if (this.compareTableDate[i][1] == this.compareTableDate[i][2]) {
|