|
|
@@ -26,45 +26,45 @@
|
|
|
<template slot="jczSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<span>净残值:</span>
|
|
|
- <avue-input-number v-model="params.jczMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.jczMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
<span style="width: 20px; text-align: center;">至</span>
|
|
|
- <avue-input-number v-model="params.jczMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.jczMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<template slot="zcyzSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<span>资产原值:</span>
|
|
|
- <avue-input-number v-model="params.zcyzMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.zcyzMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
<span style="width: 20px; text-align: center;">至</span>
|
|
|
- <avue-input-number v-model="params.zcyzMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.zcyzMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<template slot="yzjeSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<span>月折旧额:</span>
|
|
|
- <avue-input-number v-model="params.yzjeMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.yzjeMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
<span style="width: 20px; text-align: center;">至</span>
|
|
|
- <avue-input-number v-model="params.yzjeMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.yzjeMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<template slot="attendanceHoursSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<span>月使用工时:</span>
|
|
|
- <avue-input-number v-model="params.attendanceHoursMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.attendanceHoursMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
<span style="width: 20px; text-align: center;">至</span>
|
|
|
- <avue-input-number v-model="params.attendanceHoursMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.attendanceHoursMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<template slot="workHoursSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<span>已研发工时:</span>
|
|
|
- <avue-input-number v-model="params.workHoursMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.workHoursMin" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
<span style="width: 20px; text-align: center;">至</span>
|
|
|
- <avue-input-number v-model="params.workHoursMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <avue-input-number v-model="extraParams.workHoursMax" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -143,7 +143,7 @@ export default window.$crudCommon({
|
|
|
item.zclb = item.asset ? item.asset.zclb : '';
|
|
|
item.yt = item.asset ? item.asset.yt : '';
|
|
|
item.zcyz = item.asset ? item.asset.zcyz : '';
|
|
|
- item.jcz = item.asset ? item.asset.jcz : '';
|
|
|
+ item.jcz = new Decimal(item.asset.jcz || 0).mul(new Decimal(100));
|
|
|
item.yzje = item.asset ? item.asset.yzje : '';
|
|
|
item.attendanceHours = item.asset ? item.asset.zgs : '';
|
|
|
item.yanfaFenTanLv = new Decimal(item.yanfaFenTanLv).mul(new Decimal(100));
|