You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
918 B

2 years ago
<template>
<!-- style="margin-top: 10rpx;margin-bottom: 10rpx;" class="uni-flex uni-row space-between u-col-center" -->
12 months ago
<view class="u-p-t-20 u-p-b-20">
<view class="u-flex space-between u-col-center">
<view class="u-flex uni-row u-col-center">
2 years ago
<image class="card_icon_normal" src="/static/icons/icon_customer.svg" alt="" />
12 months ago
<text style='color:#757575'>{{dataContent.creator}}</text>
2 years ago
</view>
12 months ago
<view class="u-flex u-row u-col-center">
2 years ago
<image class="card_icon_normal" src="/static/icons/icon_date.svg" alt="" />
12 months ago
<text style='color:#757575'>{{formatDate(dataContent.createTime)}}</text>
2 years ago
</view>
</view>
</view>
</template>
12 months ago
<script setup lang="ts">
2 years ago
import {
dateFormat
} from '@/common/basic.js';
12 months ago
const props = defineProps({
dataContent: {
type: Object,
default: {}
2 years ago
}
12 months ago
})
const formatDate = (val) => {
return dateFormat(val)
2 years ago
}
</script>
<style lang="scss">
12 months ago
</style>