|
@@ -209,10 +209,10 @@
|
|
|
}"
|
|
|
>
|
|
|
{{
|
|
|
- refundSubmitAction == scope.row.orderId?'退款中...':
|
|
|
- refundSubmitSuccess.includes(scope.row.orderId)?'退款成功':
|
|
|
- refundSubmitError.includes(scope.row.orderId)?'退款失败':
|
|
|
- '等待退款...' }}
|
|
|
+ refundSubmitAction == scope.row.orderId?'退款提交中...':
|
|
|
+ refundSubmitSuccess.includes(scope.row.orderId)?'退款提交成功':
|
|
|
+ refundSubmitError.includes(scope.row.orderId)?'退款提交失败':
|
|
|
+ '等待退款提交...' }}
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -633,7 +633,7 @@ export default {
|
|
|
this.refundSubmitSuccess.push(this.tkSelectList[index].orderId)
|
|
|
}else {
|
|
|
this.refundSubmitError.push(this.tkSelectList[index].orderId)
|
|
|
- this.$message.error(`订单号:${this.tkSelectList[index].orderId},退款失败`);
|
|
|
+ this.$message.error(`订单号:${this.tkSelectList[index].orderId},退款提交失败`);
|
|
|
}
|
|
|
if((index+1) < this.tkSelectList.length) {
|
|
|
this.refundSubmitAction = this.tkSelectList[index+1].orderId
|
|
@@ -644,7 +644,7 @@ export default {
|
|
|
this.tkDialogVisibleLoading = false
|
|
|
if(this.refundSubmitError.length == 0) {
|
|
|
this.$message({
|
|
|
- message: '全部退款成功!!!',
|
|
|
+ message: '全部退款提交成功!!!',
|
|
|
type: 'success'
|
|
|
});
|
|
|
// this.handleCloseTk()
|
|
@@ -654,7 +654,7 @@ export default {
|
|
|
console.error(index+"===error====",error)
|
|
|
this.refundSubmitAction = null
|
|
|
this.refundSubmitError.push(this.tkSelectList[index].orderId)
|
|
|
- this.$message.error(`订单号:${this.tkSelectList[index].orderId},退款失败`);
|
|
|
+ this.$message.error(`订单号:${this.tkSelectList[index].orderId},退款提交失败`);
|
|
|
if((index+1) < this.tkSelectList.length) {
|
|
|
this.refundSubmitAction = this.tkSelectList[index+1].orderId
|
|
|
setTimeout(() => {
|
|
@@ -679,7 +679,7 @@ export default {
|
|
|
this.refundSubmitSuccess.push(this.refundSubmitErrorList[index].orderId)
|
|
|
}else {
|
|
|
this.refundSubmitError.push(this.refundSubmitErrorList[index].orderId)
|
|
|
- this.$message.error(`订单号:${this.refundSubmitErrorList[index].orderId},退款失败`);
|
|
|
+ this.$message.error(`订单号:${this.refundSubmitErrorList[index].orderId},退款提交失败`);
|
|
|
}
|
|
|
if((index+1) < this.refundSubmitErrorList.length) {
|
|
|
this.refundSubmitAction = this.refundSubmitErrorList[index+1].orderId
|
|
@@ -700,7 +700,7 @@ export default {
|
|
|
console.error(index+"===error====",error)
|
|
|
this.refundSubmitAction = null
|
|
|
this.refundSubmitError.push(this.refundSubmitErrorList[index].orderId)
|
|
|
- this.$message.error(`订单号:${this.refundSubmitErrorList[index].orderId},退款失败`);
|
|
|
+ this.$message.error(`订单号:${this.refundSubmitErrorList[index].orderId},退款提交失败`);
|
|
|
if((index+1) < this.refundSubmitErrorList.length) {
|
|
|
this.refundSubmitAction = this.refundSubmitErrorList[index+1].orderId
|
|
|
setTimeout(() => {
|