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.
58 lines
1.3 KiB
58 lines
1.3 KiB
12 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<view class="uni-flex uni-column">
|
||
|
<view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">创建者Id : </text>
|
||
|
<text class="text_wrap">{{dataContent.creatorId}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">创建者用户名 : </text>
|
||
|
<text class="text_wrap">{{dataContent.creatorName}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">创建时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.creationTime}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">最后更新者Id : </text>
|
||
|
<text class="text_wrap">{{dataContent.lastModifierId}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">最后更新者用户名 : </text>
|
||
|
<text class="text_wrap">{{dataContent.lastModiferName}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">最后更新时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.lastModificationTime}} </text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|