|
@@ -59,6 +59,10 @@
|
|
|
<el-input v-model="registerForm.zfb.seller_id" autocomplete="off" placeholder="请输入" @blur="handleTrim('registerForm','zfb','seller_id')" maxlength="200">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="支付通知地址" prop="notify_url">
|
|
|
+ <el-input v-model="registerForm.zfb.notify_url" autocomplete="off" placeholder="请输入" @blur="handleTrim('registerForm','wx','notify_url')" maxlength="200">
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" @click="onSubmit('registerForm')" size="small" :loading="loading">保存</el-button>
|
|
|
<el-button @click="onCancel('registerForm')" size="small">取消</el-button>
|
|
@@ -114,14 +118,14 @@ export default {
|
|
|
notify_url: '',
|
|
|
cert_file_id: '',
|
|
|
cert_file_List: [],
|
|
|
- notify_url: ''
|
|
|
},
|
|
|
zfb:{
|
|
|
url: '',
|
|
|
app_id: '',
|
|
|
rsa_private_key: '',
|
|
|
alipay_public_key: '',
|
|
|
- seller_id: ''
|
|
|
+ seller_id: '',
|
|
|
+ notify_url: ''
|
|
|
}
|
|
|
},
|
|
|
loading: false
|