| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <view>
- <customNav :shownav="true" :title="$t('zhanghu.tixianjil')" tinColor="white" jiantou="1" titledetl=''></customNav>
- <view class="">
- <view style="width: 94%;margin-left: 3%;background-color: white;margin-top: 30rpx;">
- <view class="contentColumn" style="padding: 30rpx;">
- <view class="contentColumn">
- <text class="ruzhangNote">{{$t('tixian.jieshouka')}}:工商银行(8794)</text>
- <text class="timeText" style="margin-left: auto;">{{$t('tixian.shenqingshij')}}:07-13 20:05</text>
- </view>
- <view class="contentInRowS" style="margin-top: 10rpx;">
- <text class="timeText">{{$t('tixian.jiner')}}:100.00</text>
- <text class="yujidzText" style="margin-left: auto;margin-right: 10rpx;">{{$t('zhanghu.yuji')}} 07-14 {{$t('zhanghu.daozhang')}}</text>
- </view>
- <view style="width: 94%;margin-left: 3%;height: 4rpx;background-color: lavender;margin-top: 10rpx;"></view>
- </view>
- </view>
- <view style="width: 94%;margin-left: 3%;background-color: white;margin-top: 30rpx;">
- <view class="contentColumn" style="padding: 30rpx;">
- <view class="contentColumn">
- <text class="ruzhangNote">{{$t('tixian.jieshouka')}}:工商银行(8794)</text>
- <text class="timeText" style="margin-left: auto;">{{$t('tixian.shenqingshij')}}:07-13 20:05</text>
- </view>
- <view class="contentInRowS" style="margin-top: 10rpx;">
- <text class="timeText">{{$t('tixian.jiner')}}:100.00</text>
- <text class="yujidzText" style="margin-left: auto;margin-right: 10rpx;">{{$t('zhanghu.yuji')}} 07-14 {{$t('zhanghu.daozhang')}}</text>
- </view>
- <view style="width: 94%;margin-left: 3%;height: 4rpx;background-color: lavender;margin-top: 10rpx;"></view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: whitesmoke;
- }
- .ruzhangNote{
- padding-left: 10rpx;
- overflow:hidden;
- text-overflow:ellipsis;
- display:-webkit-box;
- -webkit-line-clamp:2;
- -webkit-box-orient:vertical;
- }
- .timeText{
- color: #1A1A1A;
- font-size: 26rpx;
- padding-left: 20rpx;
- }
- .yujidzText{
- color: sandybrown;
- font-size: 26rpx;
- padding-left: 20rpx;
- }
-
- </style>
|