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.
47 lines
945 B
47 lines
945 B
<template>
|
|
<!-- style="margin-top: 10rpx;margin-bottom: 10rpx;" class="uni-flex uni-row space-between u-col-center" -->
|
|
<view class="task_item" style="margin-left: 15rpx; margin-right: 15rpx;">
|
|
<view class="uni-flex space-between u-col-center">
|
|
<view class="uni-flex uni-row u-col-center">
|
|
<text style="font-size: 32rpx;" >承接人:{{dataContent.acceptUserName}}</text>
|
|
</view>
|
|
<view class="uni-flex uni-row u-col-center">
|
|
<text style="font-size: 32rpx;" class="center">承接时间:{{formatDate(dataContent.acceptTime)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
dateFormat
|
|
} from '@/common/basic.js';
|
|
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
watch: {},
|
|
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
formatDate: function(val) {
|
|
return dateFormat(val)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|
|
|