浏览代码

修改问题

lex-xin 2 月之前
父节点
当前提交
7382cc2035

+ 1 - 1
miniprogram/config.ts

@@ -1,4 +1,4 @@
-const environmentVariable = "online";
+const environmentVariable = "test";
 const apiUrlInfo = {
   dev: "https://dev.kt.colexiu.com",
   test: "https://test.kt.colexiu.com",

+ 3 - 0
miniprogram/pages/buyerInformation/index.less

@@ -63,6 +63,9 @@
       color: #CCCCCC;
       font-weight: 600;
     }
+    .van-field__body, .van-field__control--right {
+      justify-content: flex-end;
+    }
   }
 
   .gender-section {

+ 1 - 1
miniprogram/pages/buyerInformation/index.wxml

@@ -15,7 +15,7 @@
         </van-field>
         <van-field border="{{ false }}" input-align="right">
           <view class="required" slot="label"><text>*</text>学生性别</view>
-          <view class="gender-section" slot="button">
+          <view class="gender-section" slot="input">
             <view class="gender-item {{ gender === '1' ? 'active' : '' }}" bind:tap="onCheckGender" data-gender="1">男</view>
             <view class="gender-item {{ gender === '0' ? 'active' : '' }}" bind:tap="onCheckGender" data-gender="0">女</view>
           </view>

+ 2 - 1
miniprogram/pages/orders/order-detail.json

@@ -7,5 +7,6 @@
     "van-field": "@vant/weapp/field/index",
     "van-popup": "@vant/weapp/popup/index",
     "van-area": "@vant/weapp/area/index"
-  }
+  },
+  "disableScroll": true
 }

+ 2 - 1
miniprogram/pages/orders/order-result.json

@@ -3,5 +3,6 @@
     "navigation-bar": "/components/navigation-bar/navigation-bar",
     "service": "/components/service/service",
     "apply-refound": "/components/apply-refound/apply-refound"
-  }
+  },
+  "disableScroll": true
 }

+ 2 - 1
miniprogram/pages/orders/orders.json

@@ -3,5 +3,6 @@
     "navigation-bar": "/components/navigation-bar/navigation-bar",
     "service": "/components/service/service",
     "apply-refound": "/components/apply-refound/apply-refound"
-  }
+  },
+  "disableScroll": true
 }