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.2 KiB
58 lines
1.2 KiB
12 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<view class="uni-flex uni-column">
|
||
|
<view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">承接人 : </text>
|
||
|
<text class="text_wrap">{{dataContent.acceptUserName}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">承接时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.acceptTime}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">创建人 : </text>
|
||
|
<text class="text_wrap">{{dataContent.creator}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">创建时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.createTime}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">完成人 : </text>
|
||
|
<text class="text_wrap">{{dataContent.completeUserName}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">完成时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.completeTime}} </text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|