|
|
@ -20,7 +20,7 @@
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<p style="margin:10px 0 10px -480px;text-align:center">招募海报</p>
|
|
|
|
<p style="margin:10px 0 10px -480px;text-align:center">招募海报</p>
|
|
|
|
<div style="text-align: center;">
|
|
|
|
<div style="text-align: center;">
|
|
|
|
<img style="width:500px;height:500px" :src="initData.scheduleVO.params[0].defaultVal" alt="">
|
|
|
|
<img style="width:500px;height:500px" :src="imgUrl" alt="">
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- <div style="margin-top:20px;text-align: center;"><Button ghost type="primary">上传</Button></div> -->
|
|
|
|
<!-- <div style="margin-top:20px;text-align: center;"><Button ghost type="primary">上传</Button></div> -->
|
|
|
@ -68,7 +68,8 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
inidData:{},
|
|
|
|
inidData:{},
|
|
|
|
showUpload:false,
|
|
|
|
showUpload:false,
|
|
|
|
btnStr:'编辑'
|
|
|
|
btnStr:'编辑',
|
|
|
|
|
|
|
|
imgUrl:''
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted: function() {
|
|
|
|
mounted: function() {
|
|
|
@ -82,10 +83,11 @@ export default {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
bulletinService.getDetail({}, function (data) {
|
|
|
|
bulletinService.getDetail({}, function (data) {
|
|
|
|
console.log(data);
|
|
|
|
console.log(data);
|
|
|
|
data.results.scheduleVO.params.forEach(item => {
|
|
|
|
data.data.results.scheduleVO.params.forEach(item => {
|
|
|
|
item.defaultVal = http.getBaseUrl() + item.defaultVal;
|
|
|
|
item.defaultVal = http.getBaseUrl() + item.defaultVal;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
that.initData = data.results;
|
|
|
|
that.initData = data.data.results;
|
|
|
|
|
|
|
|
that.imgUrl = that.initData.scheduleVO.params[0].defaultVal
|
|
|
|
|
|
|
|
|
|
|
|
}, function (err) {
|
|
|
|
}, function (err) {
|
|
|
|
that.$Message.error("网络异常,请重试");
|
|
|
|
that.$Message.error("网络异常,请重试");
|
|
|
|