|
@@ -115,16 +115,24 @@
|
|
|
<span>{{ scope.row.orderUnitPrice }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column :label="$t('btOrder.orderCreateTime')" :show-overflow-tooltip="true" align="center"
|
|
|
+ prop="orderCreateTime"
|
|
|
+ width="">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.createTime }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :label="$t('btOrder.orderStatus')" :show-overflow-tooltip="true" align="center"
|
|
|
:filter-multiple="false" column-key="goodsCateStatus"
|
|
|
:filters="statusFilter"
|
|
|
prop="goodsCateStatus" width="80px">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.orderStatus === 'INIT' ? $t("btOrder.status.dzf") : '' }}
|
|
|
- {{ scope.row.orderStatus === 'SUCCESS' ? $t("btOrder.status.dsc") : '' }}
|
|
|
- {{ scope.row.orderStatus === '3' ? $t("btOrder.status.dq") : '' }}
|
|
|
- {{ scope.row.orderStatus === '4' ? $t("btOrder.status.ywc") : '' }}
|
|
|
- {{ scope.row.orderStatus === '5' ? $t("btOrder.status.yqx") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '0' ? $t("btOrder.status.wzf") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '1' ? $t("btOrder.status.yzf") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '2' ? $t("btOrder.status.yqx") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '3' ? $t("btOrder.status.scwc") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '4' ? $t("btOrder.status.yc") : '' }}
|
|
|
+ {{ scope.row.orderStatus === '5' ? $t("btOrder.status.zrtk") : '' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|