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.
64 lines
1.4 KiB
64 lines
1.4 KiB
<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">{{dateFormat(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">{{dateFormat(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">{{dateFormat(dataContent.completeTime)}} </text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import {dateFormat} from "@/common/basic.js"
|
|
export default {
|
|
components: {},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
mounted() {},
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
dateFormat(value){
|
|
return dateFormat(value)
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|
|
|