|
@@ -114,7 +114,7 @@
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" :formatter="dateFormatter" width="180px"/>
|
|
|
<el-table-column label="操作" align="center">
|
|
|
<template #default="scope">
|
|
|
- <el-button link type="primary" @click="handlePay(scope.row)" v-if="!scope.row.payStatus">
|
|
|
+ <el-button link type="primary" @click="handlePay(scope.row)" v-if="!scope.row.payStatus && scope.row.cancelType !== '10'">
|
|
|
前往支付
|
|
|
</el-button>
|
|
|
<el-button
|
|
@@ -150,7 +150,6 @@ import TradeOrderForm from './TradeOrderForm.vue'
|
|
|
/** 交易订单 列表 */
|
|
|
defineOptions({ name: 'TradeOrder' })
|
|
|
|
|
|
-
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
const router = useRouter()
|
|
|
const loading = ref(true) // 列表的加载中
|