瀏覽代碼

Merge branch 'paino_change' into dev

lex 2 年之前
父節點
當前提交
f93667b875
共有 2 個文件被更改,包括 16 次插入2 次删除
  1. 9 1
      src/views/order-detail/payment/index.module.less
  2. 7 1
      src/views/order-detail/payment/index.tsx

+ 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>