|
@@ -8,7 +8,9 @@
|
|
|
<span>时间:{{ details.publish_time }}</span>
|
|
|
</div>
|
|
|
<el-col :span="24" class="image" v-if="details.img_url">
|
|
|
- <el-image :src="details.img_url"></el-image>
|
|
|
+ <el-col :span="24" v-for="(item, index) in details.img_url" :key="index">
|
|
|
+ <el-image :src="item"></el-image>
|
|
|
+ </el-col>
|
|
|
</el-col>
|
|
|
<p v-html="details.content"></p>
|
|
|
</el-col>
|