This commit is contained in:
parent
beb2f8cc1a
commit
2ef48ebff2
|
|
@ -238,12 +238,23 @@
|
|||
<el-table-column align="center" label="生产厂家" prop="manufacturer" />
|
||||
<el-table-column align="center" label="出厂日期" prop="productionDate" />
|
||||
<el-table-column align="center" label="资产原值(万元)" prop="originalValue" />
|
||||
<el-table-column align="center" label="租赁价" width="180">
|
||||
<el-table-column align="center" width="180">
|
||||
<template slot="header">
|
||||
<span>租赁价</span>
|
||||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
content="如果默认为0,则表示电话面议"
|
||||
placement="top"
|
||||
>
|
||||
<i class="el-icon-info" style="color: #409eff"></i>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
:ref="`leasePriceInput${scope.$index}`"
|
||||
clearable
|
||||
style="width: 100%"
|
||||
style="width: 120px"
|
||||
placeholder="请输入租赁价"
|
||||
v-model.trim="scope.row.oldLeasePrice"
|
||||
:class="{ 'lease-price-error': scope.row.priceError }"
|
||||
|
|
|
|||
|
|
@ -110,19 +110,6 @@
|
|||
<el-table-column align="center" label="规格型号" prop="typeName" />
|
||||
<el-table-column align="center" label="工具编码" prop="toolCode" />
|
||||
<el-table-column align="center" label="数量" prop="totalNum" />
|
||||
<el-table-column align="center" label="租赁价" width="180">
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
:ref="`leasePriceInputNum${scope.$index}`"
|
||||
clearable
|
||||
style="width: 100%"
|
||||
placeholder="请输入租赁价"
|
||||
v-model.trim="scope.row.oldLeasePrice"
|
||||
:class="{ 'lease-price-error': scope.row.priceError }"
|
||||
@blur="handleLeasePriceBlur(scope.row, scope.$index)"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column align="center" label="操作" :width="220">
|
||||
<template slot-scope="scope">
|
||||
|
|
@ -244,7 +231,30 @@
|
|||
<el-table-column align="center" label="工具名称" prop="parentTypeName" />
|
||||
<el-table-column align="center" label="规格型号" prop="typeName" />
|
||||
<el-table-column align="center" label="数量" prop="totalNum" />
|
||||
<el-table-column align="center" label="租赁价" prop="leasePrice" />
|
||||
<el-table-column align="center" prop="leasePrice" width="180">
|
||||
<template slot="header">
|
||||
<span>租赁价</span>
|
||||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
content="如果默认为0,则表示电话面议"
|
||||
placement="top"
|
||||
>
|
||||
<i class="el-icon-info" style="color: #409eff"></i>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
:ref="`leasePriceInputNum${scope.$index}`"
|
||||
clearable
|
||||
style="width: 120px"
|
||||
placeholder="请输入租赁价"
|
||||
v-model.trim="scope.row.oldLeasePrice"
|
||||
:class="{ 'lease-price-error': scope.row.priceError }"
|
||||
@blur="handleLeasePriceBlur(scope.row, scope.$index)"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
|
||||
|
|
@ -354,12 +364,23 @@
|
|||
<el-table-column align="center" label="生产厂家" prop="supplierName" />
|
||||
<el-table-column align="center" label="生产日期" prop="productionDate" />
|
||||
<el-table-column align="center" label="资产原值(万元)" prop="originCost" />
|
||||
<el-table-column align="center" label="租赁价" width="180">
|
||||
<el-table-column align="center" width="180">
|
||||
<template slot="header">
|
||||
<span>租赁价</span>
|
||||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
content="如果默认为0,则表示电话面议"
|
||||
placement="top"
|
||||
>
|
||||
<i class="el-icon-info" style="color: #409eff"></i>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
:ref="`leasePriceInput${scope.$index}`"
|
||||
clearable
|
||||
style="width: 100%"
|
||||
style="width: 120px"
|
||||
placeholder="请输入租赁价"
|
||||
v-model.trim="scope.row.oldLeasePrice"
|
||||
:class="{ 'lease-price-error': scope.row.priceError }"
|
||||
|
|
|
|||
Loading…
Reference in New Issue