|
@@ -404,7 +404,7 @@ let app = new Vue({
|
|
|
color: "#EC8AED"
|
|
color: "#EC8AED"
|
|
|
}
|
|
}
|
|
|
},],
|
|
},],
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
schoolList2: [{
|
|
schoolList2: [{
|
|
|
name: "产学研合作高校",
|
|
name: "产学研合作高校",
|
|
|
image: "./images/newImage/yellow.png",
|
|
image: "./images/newImage/yellow.png",
|
|
@@ -530,6 +530,9 @@ let app = new Vue({
|
|
|
}
|
|
}
|
|
|
skillList[this.skillIndex].flag = true
|
|
skillList[this.skillIndex].flag = true
|
|
|
}, 2000)
|
|
}, 2000)
|
|
|
|
|
+ setTimeout(()=>{
|
|
|
|
|
+
|
|
|
|
|
+ },9000)
|
|
|
})
|
|
})
|
|
|
let that = this;
|
|
let that = this;
|
|
|
localEnvAppToken().then(res => {
|
|
localEnvAppToken().then(res => {
|
|
@@ -544,6 +547,9 @@ let app = new Vue({
|
|
|
this.getHumanResources()
|
|
this.getHumanResources()
|
|
|
// this.getlaborproductivity()
|
|
// this.getlaborproductivity()
|
|
|
})
|
|
})
|
|
|
|
|
+ }).catch(err=>{
|
|
|
|
|
+ let industry = that.$refs.industry
|
|
|
|
|
+ that.initOrganizationElse(industry, "", that.industry, "")
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@@ -4507,16 +4513,17 @@ let app = new Vue({
|
|
|
let that = this
|
|
let that = this
|
|
|
let data = {}
|
|
let data = {}
|
|
|
fetchPostMethods("/ierp/kapi/v2/mdnb/mdnb_control/Industrydistribution", data).then(res => {
|
|
fetchPostMethods("/ierp/kapi/v2/mdnb/mdnb_control/Industrydistribution", data).then(res => {
|
|
|
- console.log(res.data, "Industrydistribution");
|
|
|
|
|
- let x = []
|
|
|
|
|
- let y = []
|
|
|
|
|
- that.industry = JSON.parse(JSON.stringify({}))
|
|
|
|
|
- res.data.forEach(item => {
|
|
|
|
|
- x.push(item.key)
|
|
|
|
|
- y.push(item.value)
|
|
|
|
|
- })
|
|
|
|
|
- that.industry.x = x
|
|
|
|
|
- that.industry.y = y
|
|
|
|
|
|
|
+ if (res.data) {
|
|
|
|
|
+ let x = []
|
|
|
|
|
+ let y = []
|
|
|
|
|
+ that.industry = JSON.parse(JSON.stringify({}))
|
|
|
|
|
+ res.data.forEach(item => {
|
|
|
|
|
+ x.push(item.key)
|
|
|
|
|
+ y.push(item.value)
|
|
|
|
|
+ })
|
|
|
|
|
+ that.industry.x = x
|
|
|
|
|
+ that.industry.y = y
|
|
|
|
|
+ }
|
|
|
let industry = that.$refs.industry
|
|
let industry = that.$refs.industry
|
|
|
that.initOrganizationElse(industry, "", that.industry, "")
|
|
that.initOrganizationElse(industry, "", that.industry, "")
|
|
|
//
|
|
//
|