综合办公系统
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

auditor.vue 666B

1234567891011121314151617181920212223242526272829303132333435
  1. <!--
  2. * @Author: ysh
  3. * @Date: 2025-03-19 10:28:16
  4. * @LastEditors: Please set LastEditors
  5. * @LastEditTime: 2025-03-19 14:09:29
  6. -->
  7. <template>
  8. <view class="box" v-if="name">
  9. <view class="title">签名:</view>
  10. <view class="auditor">{{ name }}</view>
  11. <view class="title">审核时间:</view>
  12. <view class="time">{{ time }}</view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. name: String,
  19. time: String
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .box {
  25. display: flex;
  26. align-items: center;
  27. justify-content: right;
  28. padding-top:5px;
  29. .auditor{
  30. padding-right: 15px;
  31. }
  32. }
  33. </style>