|
@@ -199,7 +199,7 @@ export default {
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
+ created () {
|
|
|
// console.log("==============="+this.processData);
|
|
|
// console.log("==============="+this.processData.status);
|
|
|
// console.log("==============="+this.processData.title);
|
|
@@ -246,12 +246,12 @@ export default {
|
|
|
let that = this;
|
|
|
if (dynamicKeyValueList.length > 0) {
|
|
|
// 获取数据字典数据源
|
|
|
- postAction('/sys/dict/getDictItems/getDictList', dynamicKeyValueList).then(dictData => {
|
|
|
+ postAction('/sys/dict/getDictItems/getDictList', dynamicKeyValueList).then(async(dictData) => {
|
|
|
if (dictData.success) {
|
|
|
this.dynamicData = dictData.result.dicList
|
|
|
if(getProjctName() =='技能博物馆'){
|
|
|
//技能博物馆部门信息
|
|
|
- this.getAction('/sys/sysDepart/queryMyDeptList').then(res => {
|
|
|
+ await this.getAction('/sys/sysDepart/queryMyDeptList').then(res => {
|
|
|
if (res.success) {
|
|
|
var aa=[]
|
|
|
res.result.map(item=>{
|
|
@@ -264,7 +264,7 @@ export default {
|
|
|
})
|
|
|
|
|
|
//技能博物馆人员信息
|
|
|
- this.getAction('/sys/user/list', { pageSize: -1}).then(res => {
|
|
|
+ await this.getAction('/sys/user/list', { pageSize: -1}).then(res => {
|
|
|
if (res.success) {
|
|
|
var aa = []
|
|
|
res.result.records.map(item =>{
|
|
@@ -292,7 +292,7 @@ export default {
|
|
|
})
|
|
|
|
|
|
//技能博物馆项目信息
|
|
|
- this.getAction('/oa/activiti/getSelectionList',{tableName:'bwg_project_start'}).then(res => {
|
|
|
+ await this.getAction('/oa/activiti/getSelectionList',{tableName:'bwg_project_start'}).then(res => {
|
|
|
if (res.success) {
|
|
|
var aa=[]
|
|
|
res.result.map(item=>{
|
|
@@ -311,7 +311,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
//技能博物馆会议室信息
|
|
|
- this.getAction('/oa/meetingRoom/all').then(res => {
|
|
|
+ await this.getAction('/oa/meetingRoom/all').then(res => {
|
|
|
if (res.success) {
|
|
|
var aa=[]
|
|
|
res.result.map(item=>{
|