From e06e563a554ee12b752e20e3a1aa5f26839fda63 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期四, 17 十月 2024 14:45:57 +0800
Subject: [PATCH] add:销售合计统计运费+打包费;售后扣平台款字段,增加增加统计售后“打包运费(散户)”字段
---
pages/order/evaluation/index.vue | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/pages/order/evaluation/index.vue b/pages/order/evaluation/index.vue
index a9098eb..3db7da0 100644
--- a/pages/order/evaluation/index.vue
+++ b/pages/order/evaluation/index.vue
@@ -39,7 +39,7 @@
{
type: 'row',
items: [
- { label: '订单编号', id: 'orderId', type: 'input' },
+ { label: '订单编号', id: 'orderNo', type: 'input' },
{ label: '商品名称', id: 'flowerName', type: 'input' },
{
label: '评价星级',
@@ -54,9 +54,9 @@
{
label: '申请日期',
component: 'el-bus-date-range',
- id: 'createDateBeginStr',
+ id: 'commentStartDate',
commonFormat: true,
- commonFormatProps: ['createDateBeginStr', 'createDateEndStr'],
+ commonFormatProps: ['commentStartDate', 'commentEndDate'],
customClass: 'in-bus-form',
},
],
@@ -127,8 +127,12 @@
{
label: '评价星级:',
id: 'commentGrade',
- type: 'input',
+ component: 'simple-text',
readonly: true,
+ el: {
+ type: 'primary',
+ },
+ forceDisabled: true,
},
{
label: '评论显示状态:',
@@ -241,6 +245,9 @@
)
if (code === 0) {
const row = data[0]
+ row.supplierName = row.supplierName+'[ID:'+ row.supplierId +'], 电话:'+row.supplierContactTel
+ row.customerName = row.customerName+'[UID:'+ row.customerId +']'
+ row.commentGrade = row.commentGrade+'星'
this.$refs.crud.$refs.extraDialog[0].show(row)
}
},
--
Gitblit v1.9.3