|
|
@@ -82,7 +82,7 @@
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="base-info-right shrink-0" style="width:210px">
|
|
|
+ <div class="base-info-right shrink-0" style="width: 210px">
|
|
|
<div class="common-text flex">
|
|
|
<el-text>定 价:</el-text>
|
|
|
<el-text>¥ {{ row.bookPrice }}</el-text>
|
|
|
@@ -98,7 +98,13 @@
|
|
|
</div>
|
|
|
<div class="common-text flex">
|
|
|
<el-text>预估金额:</el-text>
|
|
|
- <el-text>¥ {{ row.expectMoney }}</el-text>
|
|
|
+ <el-text>¥ {{ row.recyclePrice * row.num }}</el-text>
|
|
|
+ <el-text
|
|
|
+ v-if="row.upsellExpectMoney"
|
|
|
+ style="color: #f56c6c; font-weight: 500;margin-left: 2px;"
|
|
|
+ >
|
|
|
+ +{{ row.upsellExpectMoney }}</el-text
|
|
|
+ >
|
|
|
</div>
|
|
|
<div class="common-text flex">
|
|
|
<el-text>销售价格:</el-text>
|
|
|
@@ -109,7 +115,10 @@
|
|
|
</template>
|
|
|
<template #action="{ row }">
|
|
|
<div class="action-btns">
|
|
|
- <el-button class="mb-10" color="#4f4f4f" @click="handleAuditPic(row)"
|
|
|
+ <el-button
|
|
|
+ class="mb-10"
|
|
|
+ color="#4f4f4f"
|
|
|
+ @click="handleAuditPic(row)"
|
|
|
>审核图片</el-button
|
|
|
>
|
|
|
<el-button
|
|
|
@@ -183,7 +192,7 @@
|
|
|
<orderRecycleLog ref="recycleLogRef" />
|
|
|
<orderSalesLog ref="salesLogRef" />
|
|
|
<booksEdit ref="booksEditRef" />
|
|
|
- <auditScreenshotIsbn ref="auditScreenshotIsbnRef" />
|
|
|
+ <auditScreenshotIsbn ref="auditScreenshotIsbnRef" />
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
@@ -194,7 +203,7 @@
|
|
|
import orderSalesLog from '@/views/recycleOrder/detail/order-sales-log.vue';
|
|
|
import setParams from '@/views/recycle/components/set-params.vue';
|
|
|
import BooksEdit from '@/views/data/books/components/books-edit.vue';
|
|
|
- import auditScreenshotIsbn from '@/views/recycleOrder/components/audit-screenshot-isbn.vue';
|
|
|
+ import auditScreenshotIsbn from '@/views/recycleOrder/components/audit-screenshot-isbn.vue';
|
|
|
import request from '@/utils/request';
|
|
|
|
|
|
const props = defineProps({
|
|
|
@@ -548,12 +557,12 @@
|
|
|
const handleSalesLog = (row) => {
|
|
|
salesLogRef.value?.handleOpen(row);
|
|
|
};
|
|
|
- //审核图片
|
|
|
- const auditScreenshotIsbnRef = ref();
|
|
|
- const handleAuditPic = (row)=>{
|
|
|
- row.orderId = props.detail.orderId;
|
|
|
- auditScreenshotIsbnRef.value?.handleOpen(row);
|
|
|
- }
|
|
|
+ //审核图片
|
|
|
+ const auditScreenshotIsbnRef = ref();
|
|
|
+ const handleAuditPic = (row) => {
|
|
|
+ row.orderId = props.detail.orderId;
|
|
|
+ auditScreenshotIsbnRef.value?.handleOpen(row);
|
|
|
+ };
|
|
|
|
|
|
const handleRefresh = (type) => {
|
|
|
if (!currentRow.value) return;
|