|
|
@ -8,7 +8,7 @@ |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="item_title">承接时间 : </text> |
|
|
|
<text class="text_wrap">{{dataContent.acceptTime}} </text> |
|
|
|
<text class="text_wrap">{{dateFormat(dataContent.acceptTime)}} </text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="item_title">创建人 : </text> |
|
|
@ -16,7 +16,7 @@ |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="item_title">创建时间 : </text> |
|
|
|
<text class="text_wrap">{{dataContent.createTime}} </text> |
|
|
|
<text class="text_wrap">{{dateFormat(dataContent.createTime)}} </text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="item_title">完成人 : </text> |
|
|
@ -24,7 +24,7 @@ |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="item_title">完成时间 : </text> |
|
|
|
<text class="text_wrap">{{dataContent.completeTime}} </text> |
|
|
|
<text class="text_wrap">{{dateFormat(dataContent.completeTime)}} </text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -32,6 +32,8 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
|
|
import {dateFormat} from "@/common/basic.js" |
|
|
|
export default { |
|
|
|
components: {}, |
|
|
|
data() { |
|
|
@ -48,7 +50,12 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
methods: {} |
|
|
|
methods: { |
|
|
|
dateFormat(value){ |
|
|
|
return dateFormat(value) |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|