|
@@ -84,27 +84,21 @@
|
|
|
</el-row>
|
|
|
</div></template
|
|
|
>
|
|
|
- <!-- <template #key_is_display="{ scope }">
|
|
|
+ <template #refund_type="{ scope }">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
|
- :type="
|
|
|
- (
|
|
|
- is_display_list.find(
|
|
|
- (item) => item.id == scope.row.key_is_display + ''
|
|
|
- ) || {}
|
|
|
- ).type || 'info'
|
|
|
- "
|
|
|
+ :type="''"
|
|
|
v-text="
|
|
|
(
|
|
|
- is_display_list.find(
|
|
|
- (item) => item.id == scope.row.key_is_display + ''
|
|
|
+ refund_type_list.find(
|
|
|
+ (item) => item.value == scope.row.refund_type + ''
|
|
|
) || {}
|
|
|
).label || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
|
|
|
- <template #msg_type="{ scope }">
|
|
|
+ <!-- <template #msg_type="{ scope }">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
|
:type="
|
|
@@ -127,7 +121,7 @@ import asyncRequest from "@/apis/service/youzan/othOrderCancelLog";
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
-import { columns } from "./columns";
|
|
|
+import { columns, refund_type_list } from "./columns";
|
|
|
export default {
|
|
|
name: "othOrderCancelLog",
|
|
|
mixins: [mixinPage, resToken],
|
|
@@ -190,6 +184,7 @@ export default {
|
|
|
},
|
|
|
// 表格 - 列参数
|
|
|
columns,
|
|
|
+ refund_type_list,
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|