panhui 3 years ago
parent
commit
b1280beaae
2 changed files with 8 additions and 0 deletions
  1. 4 0
      src/components/PayBalance.vue
  2. 4 0
      src/views/star/Create.vue

+ 4 - 0
src/components/PayBalance.vue

@@ -57,4 +57,8 @@ export default {
 .balance-keyboard {
     z-index: 3000;
 }
+
+/deep/.van-password-input__security li {
+    border: 1px solid @text3;
+}
 </style>

+ 4 - 0
src/views/star/Create.vue

@@ -226,6 +226,7 @@ export default {
             }
         });
 
+        //获取藏品
         const getAsset = () => {
             pay.value.hide();
             gobal.$toast.loading('加载中');
@@ -253,6 +254,7 @@ export default {
                 });
         };
 
+        //支付
         const payEvent = () => {
             pay.value.init(price.value, orderId.value);
         };
@@ -276,6 +278,7 @@ export default {
             });
         });
 
+        //支付成功
         const payNext = () => {
             step.value = 2;
             setTimeout(() => {
@@ -288,6 +291,7 @@ export default {
             }, 3000);
         };
 
+        //页面获取焦点刷新
         const pageVisibility = usePageVisibility();
         watch(pageVisibility, value => {
             getAsset();