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
33 lines
918 B
<template>
|
|
<!-- style="margin-top: 10rpx;margin-bottom: 10rpx;" class="uni-flex uni-row space-between u-col-center" -->
|
|
<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">
|
|
<image class="card_icon_normal" src="/static/icons/icon_customer.svg" alt="" />
|
|
<text style='color:#757575'>{{dataContent.creator}}</text>
|
|
</view>
|
|
<view class="u-flex u-row u-col-center">
|
|
<image class="card_icon_normal" src="/static/icons/icon_date.svg" alt="" />
|
|
<text style='color:#757575'>{{formatDate(dataContent.createTime)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
dateFormat
|
|
} from '@/common/basic.js';
|
|
const props = defineProps({
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
})
|
|
const formatDate = (val) => {
|
|
return dateFormat(val)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|