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.
43 lines
796 B
43 lines
796 B
<template>
|
|
<view>
|
|
<view class="mart15 width100">
|
|
<view class="width94 backcorfff border-r mart15" v-for="(item,index) in collectionlist" :key="index">
|
|
<view class="conts">¥<text class="font24 fcor089 fontwig6">299.99</text></view>
|
|
<view class="conts">2020-01-12 12:12:12</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
collectionlist:[1,2,3,4,5,6]
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
.notes {
|
|
width: calc(100% - 40upx);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 20upx 0 20upx 20upx;
|
|
}
|
|
|
|
.conts {
|
|
width: calc(100% - 60rpx);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10rpx 30rpx 10rpx 30rpx;
|
|
}
|
|
</style>
|
|
|