调整 合同、运力、基础配置、客商
This commit is contained in:
@@ -4378,7 +4378,9 @@ export default {
|
||||
waybillAmountWithCurrency(row = {}, prop) {
|
||||
const value = this.formatDetailValue(row, prop);
|
||||
if (value === '-') return { value: '-' };
|
||||
return { value: `${this.waybillCurrencyRemark(row)}${value}` };
|
||||
const number = Number(value);
|
||||
const display = Number.isFinite(number) ? number.toFixed(2) : value;
|
||||
return { value: `${this.waybillCurrencyRemark(row)}${display}` };
|
||||
},
|
||||
openDetail(row) {
|
||||
if (!this.isStandaloneWaybillDetailPage) {
|
||||
|
||||
Reference in New Issue
Block a user