|
@@ -183,16 +183,16 @@
|
|
|
<el-form-item label="资产编号" prop="assetNumber">
|
|
|
<el-input v-model="form.assetNumber" placeholder="请输入资产编号" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="【调拨】旧管理人" prop="allocationOldResponsiblePerson">
|
|
|
+ <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】旧管理人" prop="allocationOldResponsiblePerson">
|
|
|
<el-input v-model="form.allocationOldResponsiblePerson" placeholder="请输入【调拨】旧管理人" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="【调拨】旧功能位置编号" prop="allocationOldLocationNumber">
|
|
|
+ <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】旧功能位置编号" prop="allocationOldLocationNumber">
|
|
|
<el-input v-model="form.allocationOldLocationNumber" placeholder="请输入【调拨】旧功能位置编号" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="【调拨】新管理人" prop="allocationNewResponsiblePerson">
|
|
|
+ <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】新管理人" prop="allocationNewResponsiblePerson">
|
|
|
<el-input v-model="form.allocationNewResponsiblePerson" placeholder="请输入【调拨】新管理人" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="【调拨】新功能位置编号" prop="allocationNewLocationNumber">
|
|
|
+ <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】新功能位置编号" prop="allocationNewLocationNumber">
|
|
|
<el-input v-model="form.allocationNewLocationNumber" placeholder="请输入【调拨】新功能位置编号" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="【借出】预计归还时间" prop="lendReturnDate">
|
|
@@ -231,6 +231,33 @@ import { listDetail, getDetail, delDetail, addDetail, updateDetail } from "@/api
|
|
|
|
|
|
export default {
|
|
|
name: "Detail",
|
|
|
+ props: {
|
|
|
+ orderInfo: {
|
|
|
+ type: Object,
|
|
|
+ default: {
|
|
|
+ id: null,
|
|
|
+ orderNumber: null,
|
|
|
+ orderType: null,
|
|
|
+ applicationDate: null,
|
|
|
+ applicationDepartment: null,
|
|
|
+ adjustmentAssetNumber: null,
|
|
|
+ allocationCallOutDepartment: null,
|
|
|
+ allocationCallOutBy: null,
|
|
|
+ allocationCallOutDate: null,
|
|
|
+ allocationCallInDepartment: null,
|
|
|
+ allocationCallInBy: null,
|
|
|
+ allocationCallInDate: null,
|
|
|
+ lendDepartment: null,
|
|
|
+ lendBySponsor: null,
|
|
|
+ lendPassingUnit: null,
|
|
|
+ reason: null,
|
|
|
+ preparedBy: null,
|
|
|
+ preparedDepartment: null,
|
|
|
+ corporation: null,
|
|
|
+ recordStatus: null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|