|
@@ -89,6 +89,12 @@
|
|
|
style="width: 100%">
|
|
style="width: 100%">
|
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+ <el-form-item label="退款全局流水号退款请求流水号" prop="orgHfSeqId">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="syncForm.orgHfSeqId"
|
|
|
|
|
+ style="width: 100%">
|
|
|
|
|
+ </el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -114,6 +120,7 @@ import { refund,listStorePayment,getStatus, getStorePayment, delStorePayment, ad
|
|
|
syncLoading: false,
|
|
syncLoading: false,
|
|
|
syncForm: {
|
|
syncForm: {
|
|
|
refundDate: '',
|
|
refundDate: '',
|
|
|
|
|
+ orgHfSeqId: '',
|
|
|
},
|
|
},
|
|
|
syncRules: {
|
|
syncRules: {
|
|
|
refundDate: [
|
|
refundDate: [
|
|
@@ -168,7 +175,7 @@ import { refund,listStorePayment,getStatus, getStorePayment, delStorePayment, ad
|
|
|
this.$refs.syncForm.validate(valid => {
|
|
this.$refs.syncForm.validate(valid => {
|
|
|
if (valid) {
|
|
if (valid) {
|
|
|
this.syncLoading = true;
|
|
this.syncLoading = true;
|
|
|
- getStatus(this.item.paymentId, this.syncForm.refundDate)
|
|
|
|
|
|
|
+ getStatus(this.item.paymentId, this.syncForm.refundDate,this.syncForm.orgHfSeqId)
|
|
|
.then(() => {
|
|
.then(() => {
|
|
|
this.$message.success('同步成功');
|
|
this.$message.success('同步成功');
|
|
|
this.syncDialogVisible = false;
|
|
this.syncDialogVisible = false;
|