|
@@ -65,7 +65,7 @@
|
|
|
@currentChange="searchFun"
|
|
|
>
|
|
|
<template #mj="{ row }">
|
|
|
- {{ Number(row.crmj).toFixed(2) }}
|
|
|
+ {{ row.crmj ? Number(row.crmj).toFixed(2) : 0 }}
|
|
|
</template>
|
|
|
<template #action="{ row }">
|
|
|
<span class="usable" @click="detail(row)">详情</span>
|