1234567891011121314151617181920212223242526272829303132333435 |
- <!--
- * @Author: ysh
- * @Date: 2025-03-19 10:28:16
- * @LastEditors: Please set LastEditors
- * @LastEditTime: 2025-03-19 14:09:29
- -->
- <template>
- <view class="box" v-if="name">
- <view class="title">签名:</view>
- <view class="auditor">{{ name }}</view>
- <view class="title">审核时间:</view>
- <view class="time">{{ time }}</view>
- </view>
- </template>
-
- <script>
- export default {
- props: {
- name: String,
- time: String
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .box {
- display: flex;
- align-items: center;
- justify-content: right;
- padding-top:5px;
- .auditor{
- padding-right: 15px;
- }
- }
- </style>
|