kun 191127 01:48

This commit is contained in:
沈学坤
2019-11-27 01:47:21 +08:00
parent e07dcffaad
commit 77ff7e6d76
2 changed files with 6 additions and 2 deletions

View File

@@ -2,4 +2,4 @@
ENV = 'production'
# base api
VUE_APP_BASE_API = 'http://cyteam.org.cn/api/'
VUE_APP_BASE_API = http://cyteam.org.cn/api/

View File

@@ -765,7 +765,8 @@ export default {
funds: '',
proimages: '',
subStatus: 0,
picture: []
picture: [],
id: 0
}
},
computed: {},
@@ -1015,6 +1016,7 @@ export default {
method: 'post',
url: 'v1/project/apply',
data: {
id: _this.id,
subStatus: _this.subStatus,
name: _this.name,
company: _this.company,
@@ -1219,6 +1221,8 @@ export default {
this.initialTextVal = data.funds
this.initialText = data.funds
this.id = data.id
let imgs = JSON.parse(data.proimages)
this.fileLists = imgs
},