| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <view class="content">
- <view class="gq-list">
- <view class="gq-item" v-for="item in 11" @click="navto('/pagesT/user/gqDetail')">
- <image src="" mode="" class="gq-logo"></image>
- <view class="store-name ellipsis">
- 君海蓝(黄岩店)君海蓝(黄岩店)君海蓝(黄岩店)君海蓝(黄岩店)
- </view>
- <view class="gq-num ellipsis">
- 20股
- </view>
- <view class="gq-num ellipsis">
- 浙江省台州市椒江区市府大道400号1楼
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- onShow() {
- },
- onReachBottom() {
- },
- onReady() {
- },
- methods: {
- navto(url) {
- uni.navigateTo({
- url
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .gq-list {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- // justify-content: space-between;
- padding: 20rpx 0 20rpx 20rpx;
- }
- .gq-item {
- margin: 0 0 20rpx 14rpx;
- width: 227rpx;
- height: 351rpx;
- background: #FFFFFF;
- box-shadow: 0px 5rpx 5rpx 0px rgba(35, 24, 21, 0.06);
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx 14rpx;
- .gq-logo {
- width: 140rpx;
- height: 140rpx;
- background-color: #eee;
- }
- .store-name {
- padding-top: 10rpx;
- text-align: center;
- width: 100%;
- font-size: 26rpx;
- font-weight: 500;
- color: #262261;
- overflow: hidden;
- }
- .gq-num {
- text-decoration: underline;
- width: 100%;
- font-size: 18rpx;
- font-weight: 500;
- color: #666666;
- text-align: center;
- position: relative;
- padding-left: 50rpx;
- &::before {
- content: '股权:';
- text-align: left;
- position: absolute;
- top: 0;
- left: 0;
- }
- }
- }
- </style>
|