|
@@ -170,9 +170,14 @@
|
|
|
<template slot-scope="scope">¥{{ scope.row.totalAmount }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="支付方式" width="120" align="center">
|
|
|
- <template slot-scope="scope">{{
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.sourceType != 2 && scope.row.sourceType != 3 && scope.row.sourceType != 4 ">
|
|
|
+ {{
|
|
|
scope.row.payType | formatPayType
|
|
|
- }}</template>
|
|
|
+ }}
|
|
|
+ </span>
|
|
|
+ <span v-else>-</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="订单来源" width="120" align="center">
|
|
|
<template slot-scope="scope">{{
|