cyywl_server/yudao-ui-app/pages/member_record/index.vue

64 lines
1.3 KiB
Vue
Raw Normal View History

2023-05-17 15:25:16 +08:00
<template>
<view class="box">
<u-search placeholder="请输入关键字" v-model="keyword" :show-action="false"></u-search>
<view class="list-item" v-for="(item,index) in 5" :key="index">
<text class="item-phone">充值号码13627451300</text>
<view class="item-text">
<text>充值档次套餐1</text>
<text>日期2023-05-12</text>
</view>
</view>
</view>
</template>
<script>
export default {
name: "member_application",
data() {
return {
keyword:'',
};
},
mounted() {
},
onLoad() {
},
methods: {
}
};
</script>
<style lang="scss" scoped>
.box {
padding: 20rpx;
::v-deep .u-search__content{
background: #fff !important;
height: 70rpx;
.uni-input-form{
background: #fff !important;
}
}
.list-item{
padding: 20rpx;
background: #fff;
border-radius: 20rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 20rpx;
.item-phone{
font-size: 36rpx;
font-weight: bolder;
}
.item-text{
margin-top: 20rpx;
display: flex;
justify-content: space-between;
}
}
}
</style>