|
|
@@ -94,7 +94,8 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-recentExpend="{scope}">
|
|
|
- <span>{{ scope.row.recentExpend ? scope.row.recentExpend.substr(0,11) : 0 }}</span>
|
|
|
+ <span v-if="scope.row.recentExpend == '0000-00-00 00:00:00'">没有下过单</span>
|
|
|
+ <span v-else>{{ scope.row.recentExpend ? scope.row.recentExpend.substr(0,11) : 0 }}</span>
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-visitTime="{scope}">
|