|
@ -18,12 +18,12 @@ |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">从库位类型范围 : </text> |
|
|
<text class="item_title">从库位类型范围 : </text> |
|
|
<text class="text_wrap">{{dataContent.fromLocationTypes}} </text> |
|
|
<text class="text_wrap">{{getLocationTypeNameList(getDirectoryItemArray(dataContent.fromLocationTypes))}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">到库位类型范围 : </text> |
|
|
<text class="item_title">到库位类型范围 : </text> |
|
|
<text class="text_wrap">{{dataContent.toLocationTypes}} </text> |
|
|
<text class="text_wrap">{{getLocationTypeNameList(getDirectoryItemArray(dataContent.toLocationTypes))}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
@ -41,10 +41,9 @@ |
|
|
<text class="text_wrap">{{dataContent.number}} </text> |
|
|
<text class="text_wrap">{{dataContent.number}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">业务类型 : </text> |
|
|
<text class="item_title">业务类型 : </text> |
|
|
<text class="text_wrap">{{dataContent.businessType}} </text> |
|
|
<text class="text_wrap">{{getBusinessTypeDesc(dataContent.businessType)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
@ -74,12 +73,12 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">申请时间 : </text> |
|
|
<text class="item_title">申请时间 : </text> |
|
|
<text class="text_wrap">{{dataContent.requestTime}} </text> |
|
|
<text class="text_wrap">{{dateFormat(dataContent.requestTime)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">截止时间 : </text> |
|
|
<text class="item_title">截止时间 : </text> |
|
|
<text class="text_wrap">{{dataContent.dueTime}} </text> |
|
|
<text class="text_wrap">{{dateFormat(dataContent.dueTime)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
@ -92,16 +91,16 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">自动提交 : </text> |
|
|
<text class="item_title">自动提交 : </text> |
|
|
<text class="text_wrap">{{dataContent.autoCommit}} </text> |
|
|
<text class="text_wrap">{{boolean(dataContent.autoCommit)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">自动通过 : </text> |
|
|
<text class="item_title">自动通过 : </text> |
|
|
<text class="text_wrap">{{dataContent.autoAgree}} </text> |
|
|
<text class="text_wrap">{{boolean(dataContent.autoAgree)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">自动执行 : </text> |
|
|
<text class="item_title">自动执行 : </text> |
|
|
<text class="text_wrap">{{dataContent.autoExecute}} </text> |
|
|
<text class="text_wrap">{{boolean(dataContent.autoExecute)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">直接生成记录 : </text> |
|
|
<text class="item_title">直接生成记录 : </text> |
|
@ -110,7 +109,7 @@ |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">最后更新时间 : </text> |
|
|
<text class="item_title">最后更新时间 : </text> |
|
|
<text class="text_wrap">{{dataContent.lastModificationTime}} </text> |
|
|
<text class="text_wrap">{{dateFormat(dataContent.lastModificationTime)}} </text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="item"> |
|
|
<view class="item"> |
|
|
<text class="item_title">最后更新者Id : </text> |
|
|
<text class="item_title">最后更新者Id : </text> |
|
@ -143,6 +142,12 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import { |
|
|
|
|
|
getDirectoryItemArray, |
|
|
|
|
|
getInventoryStatusDesc, |
|
|
|
|
|
getLocationTypeNameList, |
|
|
|
|
|
getBusinessTypeDesc |
|
|
|
|
|
} from '@/common/directory.js'; |
|
|
export default { |
|
|
export default { |
|
|
components: {}, |
|
|
components: {}, |
|
|
data() { |
|
|
data() { |
|
@ -159,7 +164,32 @@ |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
methods: {} |
|
|
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> |
|
|
</script> |
|
|
|
|
|
|
|
|