tangning 3 år sedan
förälder
incheckning
114645691c
3 ändrade filer med 3 tillägg och 4 borttagningar
  1. 1 1
      config/prod.env.js
  2. 0 1
      src/page/login/index.vue
  3. 2 2
      src/page/userList/userList.vue

+ 1 - 1
config/prod.env.js

@@ -1,5 +1,5 @@
 'use strict'
 module.exports = {
   NODE_ENV: '"production"',
-  GJEDITION: '"domestic"' //domestic 国内  international 国际版
+  GJEDITION: '"international"' //domestic 国内  international 国际版
 }

+ 0 - 1
src/page/login/index.vue

@@ -89,7 +89,6 @@ export default {
   },
   methods: {
     submitForm (formName) {
-      console.log('process.env.VUE_APP_GJEDITION',process.env.GJEDITION)
       this.$refs[formName].validate((valid) => {
         if (valid) {
           this.login()

+ 2 - 2
src/page/userList/userList.vue

@@ -90,7 +90,7 @@
           </el-select>
         </el-form-item>
         <el-form-item  prop="incrementNum" v-if="addType==1" label="会员数量:" :label-width="formLabelWidth" >
-          <el-input-number v-model="vipForm.incrementNum" :precision="0" :step="1" :max="50" />
+          <el-input-number v-model="vipForm.incrementNum" :precision="0" :step="1" :max="50" :min="1" />
         </el-form-item>
         <el-form-item v-if="vipForm.memberLevels == 'SE' && addType==1"  prop="monthQy" label="会员期限:" :label-width="formLabelWidth" >
           <el-select v-model="vipForm.monthQy" @change="monthQyChange" placeholder="请选择">
@@ -139,7 +139,7 @@ export default {
           value: 'SE',
           label: '高级会员'
         }],
-      ambient:process.env.GJEDITION == 'international'?true:false,
+      ambient:true,
       orders: [],
       currentPage: 1,
       fullscreenLoading: false,