Browse Source

Merge branch 'paino_change' into dev

lex 2 năm trước cách đây
mục cha
commit
f93667b875

+ 9 - 1
src/views/order-detail/payment/index.module.less

@@ -66,6 +66,14 @@
 
   .blank {
     height: 65px;
-    background-color: #f6f8f9;
+    // background-color: #f6f8f9;
+  }
+
+  .payBtn {
+    width: 230px !important;
+    margin: 0 auto;
+    font-size: 16px;
+    font-weight: 600;
+    margin-bottom: 20px;
   }
 }

+ 7 - 1
src/views/order-detail/payment/index.tsx

@@ -230,7 +230,13 @@ export default defineComponent({
         </RadioGroup>
 
         <div class={styles.blank}></div>
-        <Button type="primary" block onClick={this.onSubmit}>
+        <Button
+          type="primary"
+          class={styles.payBtn}
+          block
+          round
+          onClick={this.onSubmit}
+        >
           确认支付
         </Button>
       </div>