Tixianjilv.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view>
  3. <customNav :shownav="true" :title="$t('zhanghu.tixianjil')" tinColor="#006AFF" jiantou="0" titledetl=''></customNav>
  4. <view class="">
  5. <view style="width: 94%;margin-left: 3%;background-color: white;margin-top: 30rpx;">
  6. <view class="contentColumn" style="padding: 30rpx;">
  7. <view class="contentColumn">
  8. <text class="ruzhangNote">{{$t('tixian.jieshouka')}}:工商银行(8794)</text>
  9. <text class="timeText" style="margin-left: auto;">{{$t('tixian.shenqingshij')}}:07-13 20:05</text>
  10. </view>
  11. <view class="contentInRowS" style="margin-top: 10rpx;">
  12. <text class="timeText">{{$t('tixian.jiner')}}:100.00</text>
  13. <text class="yujidzText" style="margin-left: auto;margin-right: 10rpx;">{{$t('zhanghu.yuji')}} 07-14 {{$t('zhanghu.daozhang')}}</text>
  14. </view>
  15. <view style="width: 94%;margin-left: 3%;height: 4rpx;background-color: lavender;margin-top: 10rpx;"></view>
  16. </view>
  17. </view>
  18. <view style="width: 94%;margin-left: 3%;background-color: white;margin-top: 30rpx;">
  19. <view class="contentColumn" style="padding: 30rpx;">
  20. <view class="contentColumn">
  21. <text class="ruzhangNote">{{$t('tixian.jieshouka')}}:工商银行(8794)</text>
  22. <text class="timeText" style="margin-left: auto;">{{$t('tixian.shenqingshij')}}:07-13 20:05</text>
  23. </view>
  24. <view class="contentInRowS" style="margin-top: 10rpx;">
  25. <text class="timeText">{{$t('tixian.jiner')}}:100.00</text>
  26. <text class="yujidzText" style="margin-left: auto;margin-right: 10rpx;">{{$t('zhanghu.yuji')}} 07-14 {{$t('zhanghu.daozhang')}}</text>
  27. </view>
  28. <view style="width: 94%;margin-left: 3%;height: 4rpx;background-color: lavender;margin-top: 10rpx;"></view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. @import '@/common/common.scss';
  46. page{
  47. background-color: whitesmoke;
  48. }
  49. .ruzhangNote{
  50. padding-left: 10rpx;
  51. overflow:hidden;
  52. text-overflow:ellipsis;
  53. display:-webkit-box;
  54. -webkit-line-clamp:2;
  55. -webkit-box-orient:vertical;
  56. }
  57. .timeText{
  58. color: #1A1A1A;
  59. font-size: 26rpx;
  60. padding-left: 20rpx;
  61. }
  62. .yujidzText{
  63. color: sandybrown;
  64. font-size: 26rpx;
  65. padding-left: 20rpx;
  66. }
  67. </style>