|
@@ -362,7 +362,7 @@ export default {
|
|
|
remark: '',
|
|
|
smallId: '',
|
|
|
smallName: '',
|
|
|
- status: '',
|
|
|
+ status: null,
|
|
|
sumbitAddress: '',
|
|
|
workerId: '',
|
|
|
workerMobile: '',
|
|
@@ -432,7 +432,9 @@ export default {
|
|
|
item => item.serviceCategoryItemId == row.productId
|
|
|
)
|
|
|
estimatePrice += price * row.num
|
|
|
- serviceAmount += servicePrice * row.num
|
|
|
+ if (this.orderInfo.serviceId) {
|
|
|
+ serviceAmount += servicePrice * row.num
|
|
|
+ }
|
|
|
}
|
|
|
if (row?.pgOrderProductRecycles?.length) {
|
|
|
this.serviceCategoryListMinusData
|