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.
 
 
 
 

198 lines
5.6 KiB

<template>
<view class="">
<view class="uni-flex uni-column">
<view>
<view class="" style="font-size: 35rpx; ">
主要信息 :
</view>
<view class="item">
<text class="item_title">从仓库代码 : </text>
<text class="text_wrap">{{dataContent.fromWarehouseCode}} </text>
</view>
<view class="item">
<text class="item_title">到仓库代码 : </text>
<text class="text_wrap">{{dataContent.toWarehouseCode}} </text>
</view>
<view class="item">
<text class="item_title">从库位类型范围 : </text>
<text class="text_wrap">{{getLocationTypeNameList(getDirectoryItemArray(dataContent.fromLocationTypes))}} </text>
</view>
<view class="item">
<text class="item_title">到库位类型范围 : </text>
<text class="text_wrap">{{getLocationTypeNameList(getDirectoryItemArray(dataContent.toLocationTypes))}} </text>
</view>
<view class="item">
<text class="item_title">从库区代码范围 : </text>
<text class="text_wrap">{{dataContent.fromAreaCodes}} </text>
</view>
<view class="item">
<text class="item_title">到库区代码范围 : </text>
<text class="text_wrap">{{dataContent.toAreaCodes}} </text>
</view>
<view class="item">
<text class="item_title">单据号 : </text>
<text class="text_wrap">{{dataContent.number}} </text>
</view>
<view class="item">
<text class="item_title">业务类型 : </text>
<text class="text_wrap">{{getBusinessTypeDesc(dataContent.businessType)}} </text>
</view>
<view class="item">
<text class="item_title">备注 : </text>
<text class="text_wrap">{{dataContent.remark}} </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.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.extraProperties}} </text>
</view>
<view class="item">
<text class="item_title">地点ID : </text>
<text class="text_wrap">{{dataContent.siteId}} </text>
</view>
<view class="item">
<text class="item_title">申请时间 : </text>
<text class="text_wrap">{{dateFormat(dataContent.requestTime)}} </text>
</view>
<view class="item">
<text class="item_title">截止时间 : </text>
<text class="text_wrap">{{dateFormat(dataContent.dueTime)}} </text>
</view>
<view class="item">
<text class="item_title">部门 : </text>
<text class="text_wrap">{{dataContent.departmentCode}} </text>
</view>
<view class="item">
<text class="item_title">状态 : </text>
<text class="text_wrap">{{dataContent.status}} </text>
</view>
<view class="item">
<text class="item_title">自动提交 : </text>
<text class="text_wrap">{{boolean(dataContent.autoCommit)}} </text>
</view>
<view class="item">
<text class="item_title">自动通过 : </text>
<text class="text_wrap">{{boolean(dataContent.autoAgree)}} </text>
</view>
<view class="item">
<text class="item_title">自动执行 : </text>
<text class="text_wrap">{{boolean(dataContent.autoExecute)}} </text>
</view>
<view class="item">
<text class="item_title">直接生成记录 : </text>
<text class="text_wrap">{{dataContent.directCreateRecord}} </text>
</view>
<view class="item">
<text class="item_title">最后更新时间 : </text>
<text class="text_wrap">{{dateFormat(dataContent.lastModificationTime)}} </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.concurrencyStamp}} </text>
</view>
<view class="item">
<text class="item_title">权限所属人员id : </text>
<text class="text_wrap">{{dataContent.rule_user_id}} </text>
</view>
<view class="item">
<text class="item_title">工作流流水号 : </text>
<text class="text_wrap">{{dataContent.serialNumber}} </text>
</view>
</view>
</view>
</view>
</template>
<script>
import {
getDirectoryItemArray,
getInventoryStatusDesc,
getLocationTypeNameList,
getBusinessTypeDesc
} from '@/common/directory.js';
export default {
components: {},
data() {
return {
}
},
mounted() {},
props: {
dataContent: {
type: Object,
default: {}
}
},
methods: {
avaliable(value) {
return value == "TRUE" ? "可用" : "不可用"
},
boolean(value) {
return value == "TRUE" ? "是" : "否"
},
dateFormat(value){
return dateFormat(value)
},
getInventoryStatusDesc(value){
return getInventoryStatusDesc(value)
},
getDirectoryItemArray(value){
return getDirectoryItemArray(value)
},
getLocationTypeNameList(value){
return getLocationTypeNameList(value)
},
getBusinessTypeDesc(value){
return getBusinessTypeDesc(value)
},
}
}
</script>
<style>
</style>