|
|
@@ -41,12 +41,12 @@
|
|
|
<el-button type="info" @click="copy" size="mini" plain>复制</el-button>
|
|
|
</div>
|
|
|
</div> -->
|
|
|
- <el-form :model="form" ref="numberValidateForm" label-width="85px" class="demo-ruleForm">
|
|
|
+ <el-form :model="form" ref="rules" label-width="85px" class="demo-ruleForm">
|
|
|
<div class="title">请输入交易密码,验证信息</div>
|
|
|
<el-form-item prop="password">
|
|
|
<el-input
|
|
|
style="width: 300px; margin: 20px 0 0 100px"
|
|
|
- type="number"
|
|
|
+ type="password"
|
|
|
v-model="form.password"
|
|
|
placeholder="请输入纯数字交易密码"
|
|
|
autocomplete="off"
|
|
|
@@ -108,13 +108,16 @@ export default {
|
|
|
checked: true,
|
|
|
id: 103,
|
|
|
form: { password: '' },
|
|
|
- gas: 1,
|
|
|
+ gas: 0,
|
|
|
+ rules: {
|
|
|
+ password: { min: 6, max: 6, message: '密码长度在 6 到 6 个数字', trigger: 'blur' }
|
|
|
+ },
|
|
|
payList: [
|
|
|
- {
|
|
|
- icon: require('../assets/alipay.png'),
|
|
|
- name: '支付宝',
|
|
|
- type: 'ALIPAY'
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // icon: require('../assets/alipay.png'),
|
|
|
+ // name: '支付宝',
|
|
|
+ // type: 'ALIPAY'
|
|
|
+ // },
|
|
|
{
|
|
|
icon: require('../assets/weixin.png'),
|
|
|
name: '微信',
|
|
|
@@ -138,8 +141,14 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
payUrl() {
|
|
|
- return resolveUrl(this.$baseUrl, '9th/submit?id=' + this.info.id);
|
|
|
+ return resolveUrl(this.$baseUrl, '9th/payOrder/weixin_pc?id=' + this.info.id);
|
|
|
}
|
|
|
+ // payUrl() {
|
|
|
+ // return resolveUrl(
|
|
|
+ // this.$baseUrl,
|
|
|
+ // 'https://nfttest.9space.vip/wx/redirect?redirectUrl=https://nfttest.9space.vip/payOrder/weixin_pc?id=2006'
|
|
|
+ // );
|
|
|
+ // }
|
|
|
},
|
|
|
methods: {
|
|
|
submit() {
|