12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view>
- <uni-nav-bar id="nav-bar" status-bar="true" @clickLeft="onBack()" @clickRight="onNavSearchFriend()" title="我的好友" color="#000000" fixed="true"
- :border="false">
- <view slot="left">
- <view class=" flex align-center margin-left">
- <image class="p-left-arrow" src="../../../static/p-left-arrow.png"></image>
- </view>
- </view>
- <view slot="right">
- <view class=" flex align-center margin-left">
- <image class="p-left-arrow" src="../../../static/friend/add.png"></image>
- </view>
- </view>
- </uni-nav-bar>
- <view class="cu-list menu-avatar margin-top">
- <view class="cu-item card-view" style="height: 180rpx;" v-for="(item, index) in 10" :key="index">
- <view class="cu-avatar round lg"
- style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10001.jpg);">
- <view class="cu-tag badge">99+</view>
- </view>
- <view class="content" style="width: 360rpx;">
- <view class="text-grey">凯尔</view>
- <view class="text-gray text-sm flex">
- <view class="text-cut">
- <text class="cuIcon-infofill text-red margin-right-xs"></text>
- 我已天理为凭,踏入这片荒芜,不再受凡人的枷锁遏制。我已天理为凭,踏入这片荒芜,不再受凡人的枷锁遏制。
- </view>
- </view>
- <view class="text-gray text-sm flex">
- <view class="text-cut">
- <text class="cuIcon-infofill text-red margin-right-xs"></text>
- 我已天理为凭,踏入这片荒芜,不再受凡人的枷锁遏制。我已天理为凭,踏入这片荒芜,不再受凡人的枷锁遏制。
- </view>
- </view>
- </view>
- <view class="action" style="width: 160rpx; ">
- <button class="cu-btn round lines-gray text-13px" style=" line-height: 26rpx; white-space: nowrap; width: 146rpx; right: 30rpx;">
- 取消关注</button>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- onBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- onNavSearchFriend(){
- uni.navigateTo({
- url:"../search/search"
- })
- }
- }
- }
- </script>
- <style>
- </style>
|