|
|
|
@ -9,14 +9,6 @@ |
|
|
|
|
> |
|
|
|
|
<div class="record"> |
|
|
|
|
<div class="frame record-frame"> |
|
|
|
|
<!-- <el-input |
|
|
|
|
class="mr20" |
|
|
|
|
placeholder="创建人" |
|
|
|
|
v-model="parameter.params.productName" |
|
|
|
|
:fetch-suggestions="querySearchAsync" |
|
|
|
|
@select="handleSelect" |
|
|
|
|
|
|
|
|
|
></el-input> --> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="datetime" |
|
|
|
|
type="datetimerange" |
|
|
|
@ -46,32 +38,44 @@ |
|
|
|
|
> |
|
|
|
|
<el-table-column label="成本价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
<p v-if="row.floorPrice"> |
|
|
|
|
{{ row.floorPrice }}/{{ row.measurement }} |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="上次成本价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
<p v-if="row.lastFloorPrice"> |
|
|
|
|
{{ row.lastFloorPrice }}/{{ row.measurement }} |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="企业销售价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
<p v-if="row.salePrice2company"> |
|
|
|
|
{{ row.salePrice2company }}/{{ row.measurement }} |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="上次企业销售价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
{{ row.lastSalePrice2company }}/{{ row.measurement }}</template |
|
|
|
|
<p v-if="row.lastSalePrice2company"> |
|
|
|
|
{{ row.lastSalePrice2company }}/{{ row.measurement }} |
|
|
|
|
</p></template |
|
|
|
|
> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="个人销售价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
<p v-if="row.salePrice2personal"> |
|
|
|
|
{{ row.salePrice2personal }}/{{ row.measurement }} |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="上次个人销售价"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
{{ row.lastSalePrice2personal }}/{{ row.measurement }}</template |
|
|
|
|
<p v-if="row.lastSalePrice2personal"> |
|
|
|
|
{{ row.lastSalePrice2personal }}/{{ row.measurement }} |
|
|
|
|
</p></template |
|
|
|
|
> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="时间" width="235"> |
|
|
|
@ -85,19 +89,6 @@ |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
<!-- <el-pagination |
|
|
|
|
class="record-el-pagination" |
|
|
|
|
background |
|
|
|
|
@size-change="handleSizeChange" |
|
|
|
|
@current-change="handleCurrentChange" |
|
|
|
|
:current-page="parameter.currentPage" |
|
|
|
|
:page-size="parameter.pageSize" |
|
|
|
|
:popper-append-to-body="false" |
|
|
|
|
:page-sizes="[10, 20, 30, 50]" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> --> |
|
|
|
|
<!-- 分页 --> |
|
|
|
|
<pagination |
|
|
|
|
class="record-el-pagination" |
|
|
|
@ -108,7 +99,6 @@ |
|
|
|
|
</div> |
|
|
|
|
<div class="footer-buttons"> |
|
|
|
|
<el-button @click="controlWindows.record = false">关闭 </el-button> |
|
|
|
|
<!-- <el-button @click="submit">确定</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
</el-drawer> |
|
|
|
|
</template> |
|
|
|
|