index.vue
585 Bytes
<template>
<view class="container" style="padding:10rpx;">
<image :src="BASE_URL+item.url" style="width:100%;border-radius:20rpx;" v-for="(item,index) in Info[0].banner" :key="index"></image>
</view>
</template>
<script>
import BASE_URL from '../../common/config.js'
export default{
data(){
return{
BASE_URL,
Info:[]
}
},
onLoad() {
this.ShowZC()
},
methods:{
ShowZC(){
this.API.GetPolicyList(this.model).then(res=>{
console.log('政策管理',res)
this.Info=res.data.list
})
}
}
}
</script>
<style>
</style>