purchase-let/pageQuota/feedBack/list.vue

43 lines
830 B
Vue

<template>
<view class="content">
<view class="li" v-for="itme in 10" @click="goDetail">
<view class="lias">
<view class="">
<view class="">
<text style="color: #20B128;">未收到短信</text> 反馈内容
</view>
<view style="font-size: 24rpx;margin-top: 10rpx;">
2024-05-10 09:24:25
</view>
</view>
<up-icon name="arrow-right"></up-icon>
</view>
<up-line style="margin-top: 20rpx;" color="#EFEFEF"></up-line>
</view>
</view>
</template>
<script setup>
const goDetail = () => {
uni.navigateTo({
url: '/pageQuota/feedBack/detail'
})
}
</script>
<style lang="scss">
.li {
background-color: white;
padding: 20rpx;
padding-bottom: 0;
// align-items: c;
}
.lias {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>