springboot+vue使用时前端在控制台输出能拿到数据,却不显示,找不出问题所在,人麻了,希望hxd帮忙看看
加我, 我远程看下
从代码来看是没啥问题,应该是其他地方出问题了,私信我可以看看
页面效果(样式还没调,凑合着看吧):
元素:
<div>
<h4 style="font-weight:500;height:15px;">发票附件</h4>
<template v-for="(value,index) in attachedUrls">
<a>{{value}}</a>
<v-button-search @click='download(value)' style="float:right;">下载</v-button-search>
</template>
</div>
事件:
download(name) {
window.location.href="http://127.0.0.1:8088/server/invoice/downFile?name="+name;
}