diff --git a/pages/process/order-info/index.wxml b/pages/process/order-info/index.wxml index e1ac6ec..f31a09d 100644 --- a/pages/process/order-info/index.wxml +++ b/pages/process/order-info/index.wxml @@ -51,7 +51,7 @@ 废纸品类 - {{form.productName}} + {{form.productName || '- -'}} @@ -75,7 +75,7 @@ 扣重(公斤) - -{{form.deductWeight}} + -{{form.deductWeight }} @@ -87,16 +87,16 @@ 定价员 - {{form.inspectionPerson || ''}} + {{form.inspectionPerson || '- -'}} 定价时间 - {{form.inspectionTime || ''}} + {{form.inspectionTime || '- -'}} - + 过毛重照片 diff --git a/pages/process/order-list/index.wxml b/pages/process/order-list/index.wxml index a371a76..662e1ff 100644 --- a/pages/process/order-list/index.wxml +++ b/pages/process/order-list/index.wxml @@ -65,10 +65,13 @@ 已关闭 - - 品类:{{item.productName}} - 重量:{{item.settleWeight}}公斤 - 金额:{{item.settlePrice}}元 + + 过磅时间:{{item.createTime || ''}} + + + 品类:{{item.productName || ''}} + 重量:{{item.settleWeight || ''}}公斤 + 金额:{{item.settlePrice || ''}}元