1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="content">
- <view class="gq-detail-wrap">
- <view class="gq-detail" v-for="item in 10">
- <view class="detail-info">
- <view class="detail-tit">
- 购物送股
- </view>
- <view class="detail-time">
- 2022-06-09 13:00:00
- </view>
- </view>
- <view class="detail-pu" :class="{'red':item == 3}">
- -897.00
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- onShow() {
- },
- onReachBottom() {
- },
- onReady() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .gq-detail-wrap {
- width: 100%;
- background-color: #fff;
- .gq-detail {
- width: 696rpx;
- margin: auto;
- border-bottom: #F0F0F0 1rpx solid;
- display: flex;
- align-items: center;
- padding: 15rpx 0;
- .detail-info {
- width: 70%;
- .detail-tit {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- }
- .detail-time {
- font-size: 22rpx;
- font-weight: 500;
- color: #999999;
- margin-top: 15rpx;
- }
- }
- .detail-pu {
- width: 30%;
- text-align: right;
- font-size: 30rpx;
- font-weight: bold;
- }
- .red{
- color: #FD423A;
- }
- }
- }
- </style>
|