purchase-let/pageQuota/feedBack/list.vue

43 lines
830 B
Vue
Raw Normal View History

2024-05-09 18:01:57 +08:00
<template>
2024-05-10 09:45:35 +08:00
<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>
2024-05-09 18:01:57 +08:00
</view>
</template>
2024-05-10 09:45:35 +08:00
<script setup>
const goDetail = () => {
uni.navigateTo({
url: '/pageQuota/feedBack/detail'
})
}
2024-05-09 18:01:57 +08:00
</script>
2024-05-10 09:45:35 +08:00
<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;
}
2024-05-09 18:01:57 +08:00
</style>