lex пре 10 месеци
родитељ
комит
4d25d79693

+ 3 - 2
src/views/activation-code/instrument-registration/new-index.module.less

@@ -236,19 +236,20 @@
     padding: 97px 0 12px;
 
     span {
-      font-weight: 600;
+      font-weight: 600 !important;
       color: #1189FF;
     }
   }
 
   .pBtnGroup {
+    text-align: center;
 
     .btnSubmit {
       margin: 0 auto;
       background: url('./images/btn-submit.png') no-repeat center;
       background-size: contain;
       width: 139px;
-      height: 37px;
+      // height: 37px;
     }
   }
 }

+ 12 - 3
src/views/activation-code/instrument-registration/new-index.tsx

@@ -29,6 +29,7 @@ import { useRoute, useRouter } from 'vue-router';
 import request from '@/helpers/request';
 import loginSuccess from './images/login-success.png';
 import bannerBg from './images/banner1.png';
+import btnSubmit from './images/btn-submit.png';
 
 import SelectStudent from '@/views/student-register/modal/select-student';
 import { checkPhone } from '@/helpers/utils';
@@ -86,7 +87,7 @@ export default defineComponent({
   setup() {
     const countDownRef = ref();
     const forms = reactive({
-      statusShow: false,
+      statusShow: true,
       countDownStatus: true,
       countDownTime: 1000 * 120, // 倒计时时间
       // modelValue: false, // 是否选中协议
@@ -733,12 +734,20 @@ export default defineComponent({
               为准。
             </div>
             <div class={styles.pBtnGroup}>
-              <div
+              {/* <div
                 class={styles.btnSubmit}
                 onClick={() => {
                   forms.registerFlag = true;
                   forms.statusShow = false;
-                }}></div>
+                }}></div> */}
+              <img
+                class={styles.btnSubmit}
+                src={btnSubmit}
+                onClick={() => {
+                  forms.registerFlag = true;
+                  forms.statusShow = false;
+                }}
+              />
             </div>
           </div>
         </Popup>