You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
3 years ago
|
<template>
|
||
|
<view>
|
||
|
<view class="border-b">
|
||
|
|
||
|
</view>
|
||
|
<view class="cu-list menu-avatar comment solids-top" v-for="(item,index) in data">
|
||
|
<view class="cu-item">
|
||
|
<view class="cu-avatar" style="top: 140rpx;background-color:transparent;color: black;">{{index+1}}</view>
|
||
|
<view class="content">
|
||
|
<!-- <view class="text-grey">标题</view> -->
|
||
|
<view class="bg-grey padding-sm radius margin-top-sm text-sm">
|
||
|
<view class="flex">
|
||
|
<view class="flex-sub">{{item.businessCode}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="margin-top-sm flex justify-between">
|
||
|
<view class="text-gray text-df">发送日期:{{item.createTime}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
data:[
|
||
|
|
||
|
],
|
||
|
|
||
|
};
|
||
|
},
|
||
|
created() {
|
||
|
this.getData()
|
||
|
},
|
||
|
methods:{
|
||
|
getData(){
|
||
|
this.$http.get('/api-guarantee/guarantee/efficiency/notice').then(res=>{
|
||
|
this.data = res.data
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.border-b{
|
||
|
margin-bottom: 5rpx;
|
||
|
}
|
||
|
</style>
|