|
|
|
@ -11,8 +11,8 @@
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="资产分类:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.assetType" style="width: 100%" placeholder="请选择资产分类" >
|
|
|
|
|
<el-form-item class="query-form-item" label="资产品名:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.assetName" style="width: 100%" placeholder="请选择资产品名" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -24,8 +24,8 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="国资分类:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.sasacType" style="width: 100%" placeholder="请选择国资分类" >
|
|
|
|
|
<el-form-item class="query-form-item" label="资产备用类型:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.assetReserveType" style="width: 100%" placeholder="请选择资产备用类型" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -38,37 +38,63 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="资产助记码:">
|
|
|
|
|
<el-input v-model="formData.assetMnemonicCode" placeholder="请输入资产助记码" style="width: 90%"
|
|
|
|
|
<el-col :span="4">
|
|
|
|
|
<el-form-item class="query-form-item" label="是否强检:" >
|
|
|
|
|
<el-checkbox v-model="formData.isImperative" ></el-checkbox>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1"><el-form-item></el-form-item></el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item class="query-form-item" label="检定周期(月):">
|
|
|
|
|
<el-input v-model="formData.imperativeCycle" style="width: 80%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="数量:">
|
|
|
|
|
<el-input-number :min="1" v-model="formData.number" placeholder="请输入数量" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="开始检定日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.startImperativeDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入开始检定日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="4">
|
|
|
|
|
<el-form-item class="query-form-item" label="是否保养:" >
|
|
|
|
|
<el-checkbox v-model="formData.isMaintain" ></el-checkbox>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1"><el-form-item></el-form-item></el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item class="query-form-item" label="保养周期(月):">
|
|
|
|
|
<el-input v-model="formData.maintainCycle" style="width: 80%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="取得方式:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.acquisitionMethod" style="width: 100%" placeholder="请选择取得方式" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
<span style="float: left">{{ item.label }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-form-item class="query-form-item" label="开始保养日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.startMaintainDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入开始保养日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="用途:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.purpose" style="width: 100%" placeholder="请选择用途" >
|
|
|
|
|
<el-form-item class="query-form-item" label="维修组:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.serviceType" style="width: 100%" placeholder="请选择维修组" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -79,25 +105,9 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="折旧年:">
|
|
|
|
|
<el-input-number :min="0" v-model="formData.number" style="width: 100%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="折旧月:">
|
|
|
|
|
<el-input-number :min="0" v-model="formData.number" p style="width: 100%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="存储仓库:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.purpose" style="width: 100%" placeholder="请选择存储仓库" >
|
|
|
|
|
<el-form-item class="query-form-item" label="保养组:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.maintainType" style="width: 100%" placeholder="请选择保养组" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -109,18 +119,29 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="预计总工时:">
|
|
|
|
|
<el-input-number :min="0" v-model="formData.estimatedTotalHour" placeholder="请输入预计总工时" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="管理人:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.managerUser" style="width: 100%" placeholder="请选择管理人" >
|
|
|
|
|
<el-option v-for="item in userList"
|
|
|
|
|
:key="item.employeeName"
|
|
|
|
|
:label="item.employeeName"
|
|
|
|
|
:value="item.userId">
|
|
|
|
|
<span>{{ item.employeeName }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="单日工时:">
|
|
|
|
|
<el-input-number :min="0" v-model="formData.dayHour" placeholder="请输入单日工时" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="审核人:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.approveUser" style="width: 100%" placeholder="请选择审核人" >
|
|
|
|
|
<el-option v-for="item in userList"
|
|
|
|
|
:key="item.employeeName"
|
|
|
|
|
:label="item.employeeName"
|
|
|
|
|
:value="item.userId">
|
|
|
|
|
<span>{{ item.employeeName }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -128,59 +149,40 @@
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="单个资产价值:">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.assetValue" placeholder="请输入单个资产价值" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="对应会计科目:">
|
|
|
|
|
<el-input v-model="formData.ledgerAccount" style="width: 90%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="自有资金:">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.ownFund" placeholder="请输入自有资金" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="减值准备:">
|
|
|
|
|
<el-input v-model="formData.impairmentProvision" style="width: 90%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="财政拨款:">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.financialAppropriation" placeholder="请输入财政拨款" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="科教基金:">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.educationFund" placeholder="请输入科教基金" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="预计工作量:">
|
|
|
|
|
<el-input v-model="formData.estimatedWorkload" style="width: 90%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="其他资金:">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.otherFund" placeholder="请输入其他资金" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" >
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<span slot="label">
|
|
|
|
|
<span style="font-size: 11px">非同级财政拨款:</span>
|
|
|
|
|
</span>
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.nonPeerFinancialAppropriation" placeholder="请输入非同级财政拨款" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="已完成工作量:">
|
|
|
|
|
<el-input v-model="formData.completedWorkload" style="width: 90%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="管理类别:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.managementCategory" style="width: 100%" placeholder="请选择管理类别" >
|
|
|
|
|
<el-form-item class="query-form-item" label="维保类型:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.maintenanceType" style="width: 100%" placeholder="请选择维保类型" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -192,89 +194,78 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="使用人:">
|
|
|
|
|
<el-select v-model="formData.endUser"
|
|
|
|
|
placeholder="请输入使用人"
|
|
|
|
|
clearable="true"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in userList"
|
|
|
|
|
:key="item.employeeName"
|
|
|
|
|
:label="item.employeeName"
|
|
|
|
|
:value="item.userId">
|
|
|
|
|
<span>{{ item.employeeName }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item" label="维保周期(月):">
|
|
|
|
|
<el-input-number :min="1" v-model="formData.maintenanceCycle" style="width: 90%" controls-position="right"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="预计残值:" style="font-size: 11px">
|
|
|
|
|
<el-input-number :min="0" :precision='2' :step='1' v-model="formData.estimatedResidualValue" placeholder="请输入预计残值" style="width: 90%"
|
|
|
|
|
clearable></el-input-number>
|
|
|
|
|
<el-form-item class="query-form-item" label="维保开始日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.startMaintenancDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入维保开始日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="币种:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.currencyType" style="width: 100%" placeholder="请选择币种" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
<span style="float: left">{{ item.label }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-form-item class="query-form-item" label="维保结束日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.endMaintenancDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入维保结束日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="采购类型:" style="width: 91%">
|
|
|
|
|
<el-select v-model="formData.purType" style="width: 100%" placeholder="请选择采购类型" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.device_source_type"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
<span style="float: left">{{ item.label }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-form-item class="query-form-item" label="内外网:" style="width: 91%">
|
|
|
|
|
<input type="radio" name="networkType" value="1" v-model="formData.networkType"/>内网
|
|
|
|
|
<input type="radio" name="networkType" value="2" v-model="formData.networkType"/>外网
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="购置日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.purchaseDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入购置日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
<el-form-item class="query-form-item" label="使用角色:" style="width: 91%">
|
|
|
|
|
<input type="radio" name="userRole" value="1" v-model="formData.userRole"/>医生站
|
|
|
|
|
<input type="radio" name="userRole" value="2" v-model="formData.userRole"/>护士站
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="5">
|
|
|
|
|
<el-form-item class="query-form-item" label="是否加域:" >
|
|
|
|
|
<el-checkbox v-model="formData.isAddDomain" style="width: 90%"></el-checkbox>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="5">
|
|
|
|
|
<el-form-item class="query-form-item" label="u盘是否禁用:" >
|
|
|
|
|
<el-checkbox v-model="formData.isUDisc" style="width: 90%"></el-checkbox>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="2">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item class="query-form-item" label="添加日期:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="formData.addDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入添加日期"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
<el-form-item class="query-form-item" label="设备归类:" style="width: 91%">
|
|
|
|
|
<input type="radio" name="ascriptionType" value="1" v-model="formData.ascriptionType"/>专用设备
|
|
|
|
|
<input type="radio" name="ascriptionType" value="2" v-model="formData.ascriptionType"/>通用办公设备
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
@ -374,31 +365,32 @@ export default {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
this.$message.error("请完善必填信息");
|
|
|
|
|
} else {
|
|
|
|
|
this.rowData.assetType = this.formData.assetType;
|
|
|
|
|
this.rowData.sasacType = this.formData.sasacType;
|
|
|
|
|
this.rowData.assetMnemonicCode = this.formData.assetMnemonicCode;
|
|
|
|
|
this.rowData.number = this.formData.number;
|
|
|
|
|
this.rowData.acquisitionMethod = this.formData.acquisitionMethod;
|
|
|
|
|
this.rowData.purpose = this.formData.purpose;
|
|
|
|
|
this.rowData.depreciationYear = this.formData.depreciationYear;
|
|
|
|
|
this.rowData.depreciationMonth = this.formData.depreciationMonth;
|
|
|
|
|
this.rowData.invCode = this.formData.invCode;
|
|
|
|
|
this.rowData.estimatedTotalHour = this.formData.estimatedTotalHour;
|
|
|
|
|
this.rowData.dayHour = this.formData.dayHour;
|
|
|
|
|
this.rowData.assetValue = this.formData.assetValue;
|
|
|
|
|
this.rowData.ownFund = this.formData.ownFund;
|
|
|
|
|
this.rowData.financialAppropriation = this.formData.financialAppropriation;
|
|
|
|
|
this.rowData.educationFund = this.formData.educationFund;
|
|
|
|
|
this.rowData.otherFund = this.formData.otherFund;
|
|
|
|
|
this.rowData.nonPeerFinancialAppropriation = this.formData.nonPeerFinancialAppropriation;
|
|
|
|
|
this.rowData.assetName = this.formData.assetName;
|
|
|
|
|
this.rowData.isImperative = this.formData.isImperative;
|
|
|
|
|
this.rowData.isMaintain = this.formData.isMaintain;
|
|
|
|
|
this.rowData.imperativeCycle = this.formData.imperativeCycle;
|
|
|
|
|
this.rowData.maintainCycle = this.formData.maintainCycle;
|
|
|
|
|
this.rowData.startImperativeDate = this.formData.startImperativeDate;
|
|
|
|
|
this.rowData.startMaintainDate = this.formData.startMaintainDate;
|
|
|
|
|
this.rowData.serviceType = this.formData.serviceType;
|
|
|
|
|
this.rowData.maintainType = this.formData.maintainType;
|
|
|
|
|
this.rowData.managerUser = this.formData.managerUser;
|
|
|
|
|
this.rowData.approveUser = this.formData.approveUser;
|
|
|
|
|
this.rowData.ledgerAccount = this.formData.ledgerAccount;
|
|
|
|
|
this.rowData.impairmentProvision = this.formData.impairmentProvision;
|
|
|
|
|
this.rowData.estimatedWorkload = this.formData.estimatedWorkload;
|
|
|
|
|
this.rowData.completedWorkload = this.formData.completedWorkload;
|
|
|
|
|
this.rowData.maintenanceType = this.formData.maintenanceType;
|
|
|
|
|
this.rowData.maintenanceCycle = this.formData.maintenanceCycle;
|
|
|
|
|
|
|
|
|
|
this.rowData.managementCategory = this.formData.managementCategory;
|
|
|
|
|
this.rowData.endUser = this.formData.endUser;
|
|
|
|
|
this.rowData.estimatedResidualValue = this.formData.estimatedResidualValue;
|
|
|
|
|
this.rowData.currencyType = this.formData.currencyType;
|
|
|
|
|
this.rowData.purType = this.formData.purType;
|
|
|
|
|
this.rowData.purchaseDate = this.formData.purchaseDate;
|
|
|
|
|
this.rowData.addDate = this.formData.addDate;
|
|
|
|
|
this.rowData.startMaintenancDate = this.formData.startMaintenancDate;
|
|
|
|
|
this.rowData.endMaintenancDate = this.formData.endMaintenancDate;
|
|
|
|
|
this.rowData.networkType = this.formData.networkType;
|
|
|
|
|
this.rowData.userRole = this.formData.userRole;
|
|
|
|
|
this.rowData.isAddDomain = this.formData.isAddDomain;
|
|
|
|
|
this.rowData.isUDisc = this.formData.isUDisc;
|
|
|
|
|
this.rowData.ascriptionType = this.formData.ascriptionType;
|
|
|
|
|
this.rowData.assetReserveType = this.formData.assetReserveType;
|
|
|
|
|
|
|
|
|
|
this.editSaveDev();
|
|
|
|
|
|
|
|
|
|