| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view>
- <view class="cu-bar search bg-white">
- <view class="search-form round " >
- <text class="cuIcon-search"></text>
- <input :adjust-position="false" type="text" placeholder="搜索平台名称" confirm-type="search"></input>
- </view>
- <view class="action">
- <text class="text-bold">搜索</text>
- </view>
- </view>
-
- <view class="card" v-for="(item,index) in 6" :key="index">
- <view class="left">
- <image src="@/static/icon/BOC.png" mode=""></image>
- <view class="">
- <text>中国银行</text>
- </view>
- </view>
-
- <view class="right">
- <image src="../../static/icon/points-value.png" mode=""></image>
- <text class="data">200</text>
- <text class="value">(价值¥60.00)</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .card{
- margin: 20rpx;
- border-radius: 20rpx;
- padding:36rpx 30rpx;
- background-color: #FFFFFF;
- display: flex;
- justify-content: space-between;
-
- .left{
- display: flex;
- image{
- width: 80rpx;
- height: 80rpx;
- }
-
- view{
- display: flex;
- justify-content: center;
- align-items: center;
- text{
- padding-left: 20rpx;
- font-weight: 800;
- font-size: 30rpx;
- }
- }
-
-
- }
-
- .right{
- display: flex;
- justify-content: center;
- align-items: center;
- image{
- width: 40rpx;
- height: 40rpx;
- }
-
- .data{
- margin-left: 10rpx;
- font-size: 36rpx;
- color: #F39248;
- }
- .value{
- font-size: 28rpx;
- color: #666666;
- }
- }
- }
- </style>
|