fix(repurchase): 强制阅读协议弹窗不展示问题修复 bug-91
This commit is contained in:
parent
f5bb9fe310
commit
79ceaa468c
|
@ -446,7 +446,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 强制阅读协议 -->
|
<!-- 强制阅读协议 -->
|
||||||
<!-- <mustAgreeMent :waresCodeList="waresCodeList"></mustAgreeMent> -->
|
<mustAgreeMent :waresCodeList="waresCodeList"></mustAgreeMent>
|
||||||
<Pay
|
<Pay
|
||||||
:isPay="isPay"
|
:isPay="isPay"
|
||||||
:onlinePay="onlinePay"
|
:onlinePay="onlinePay"
|
||||||
|
@ -494,7 +494,6 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
personInfo,
|
personInfo,
|
||||||
AddAddress,
|
AddAddress,
|
||||||
agreement,
|
|
||||||
Pay,
|
Pay,
|
||||||
mustAgreeMent,
|
mustAgreeMent,
|
||||||
},
|
},
|
||||||
|
|
|
@ -374,7 +374,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 强制阅读协议 -->
|
<!-- 强制阅读协议 -->
|
||||||
<!-- <mustAgreeMent :waresCodeList="waresCodeList"></mustAgreeMent> -->
|
<mustAgreeMent :waresCodeList="waresCodeList"></mustAgreeMent>
|
||||||
<Pay :isPay="isPay" @closePay="closePay" :paramsPost="paramsPost"></Pay>
|
<Pay :isPay="isPay" @closePay="closePay" :paramsPost="paramsPost"></Pay>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -387,14 +387,14 @@ import { mapGetters } from "vuex";
|
||||||
import * as api from "@/api/register.js";
|
import * as api from "@/api/register.js";
|
||||||
import { setTokenMi } from "@/util/auth";
|
import { setTokenMi } from "@/util/auth";
|
||||||
import Pay from "@/components/Pay.vue";
|
import Pay from "@/components/Pay.vue";
|
||||||
// import mustAgreeMent from "@/components/mustAgreeMent.vue";
|
import mustAgreeMent from "@/components/mustAgreeMent.vue";
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
personInfo,
|
personInfo,
|
||||||
AddAddress,
|
AddAddress,
|
||||||
// agreement,
|
// agreement,
|
||||||
Pay,
|
Pay,
|
||||||
// mustAgreeMent,
|
mustAgreeMent,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
let validateRecPhone = (rule, value, callback) => {
|
let validateRecPhone = (rule, value, callback) => {
|
||||||
|
|
Loading…
Reference in New Issue