|
@@ -1,4 +1,4 @@
|
|
-import { computed, ref, defineComponent, onMounted, reactive } from 'vue'
|
|
|
|
|
|
+import { computed, ref, defineComponent, onMounted, reactive,watch } from 'vue'
|
|
import { Card, Cell, CellGroup, Popup, SubmitBar, Toast } from 'vant'
|
|
import { Card, Cell, CellGroup, Popup, SubmitBar, Toast } from 'vant'
|
|
import { addressType, cartConfirm, formateAttr } from '../cart'
|
|
import { addressType, cartConfirm, formateAttr } from '../cart'
|
|
import styles from '../index.module.less'
|
|
import styles from '../index.module.less'
|
|
@@ -39,6 +39,15 @@ export default defineComponent({
|
|
orderNo: cartConfirm.orderInfo?.orderSn || '',
|
|
orderNo: cartConfirm.orderInfo?.orderSn || '',
|
|
actualPrice: cartConfirm.orderInfo?.payAmount || 0
|
|
actualPrice: cartConfirm.orderInfo?.payAmount || 0
|
|
})
|
|
})
|
|
|
|
+ //修复实名认证头部问题
|
|
|
|
+ watch(authPopup, (value, oldValue) => {
|
|
|
|
+ if (authPopup.value) {
|
|
|
|
+ // 设置是否显示导航栏 0 显示 1 不显示
|
|
|
|
+ postMessage({ api: 'setBarStatus', content: { status: 0 } })
|
|
|
|
+ } else {
|
|
|
|
+ postMessage({ api: 'setBarStatus', content: { status: 1 } })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
// 提交
|
|
// 提交
|
|
const onSubmit = () => {
|
|
const onSubmit = () => {
|
|
if (!agreeStatus.value) {
|
|
if (!agreeStatus.value) {
|