contract.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="page-wrap">
  3. <view class="item-row">
  4. <view class="name">记账报税套餐(年度)</view>
  5. <view class="text">天津超易达胜科技发展有限公司</view>
  6. <view class="text">合同总额:3600.00</view>
  7. <view class="text">申请日期:2023-09 至 2024-08</view>
  8. <view class="state">生效中</view>
  9. </view>
  10. <view class="item-row">
  11. <view class="name">记账报税套餐(年度)</view>
  12. <view class="text">天津超易达胜科技发展有限公司</view>
  13. <view class="text">合同总额:3600.00</view>
  14. <view class="text">申请日期:2023-09 至 2024-08</view>
  15. <view class="state warn">逾期</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {};
  23. },
  24. methods: {}
  25. };
  26. </script>
  27. <style lang="scss" scoped>
  28. .page-wrap {
  29. padding: 13.74rpx 0;
  30. }
  31. .item-row {
  32. background: #fff;
  33. margin-top: 13.74rpx;
  34. height: 178.57rpx;
  35. padding: 13.74rpx 123.63rpx 0 27.47rpx;
  36. box-sizing: border-box;
  37. position: relative;
  38. &:first-child {
  39. margin: 0;
  40. }
  41. .name {
  42. font-size: 32.97rpx;
  43. white-space: nowrap;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. margin-bottom: 6.87rpx;
  47. }
  48. .text {
  49. font-size: 27.47rpx;
  50. color: #999;
  51. }
  52. .state {
  53. font-size: 27.47rpx;
  54. color: #666;
  55. position: absolute;
  56. right: 27.47rpx;
  57. top: 50%;
  58. transform: translateY(-50%);
  59. }
  60. .warn{
  61. color: #F97631;
  62. }
  63. }
  64. </style>