3 コミット 6d57d19578 ... fb0e8aabfd

作者 SHA1 メッセージ 日付
  wen fb0e8aabfd update 3 年 前
  wen 8e6379bd1a update 3 年 前
  wen ccd6cf7567 v1.9.2 3 年 前
9 ファイル変更34 行追加588 行削除
  1. 5 3
      .env
  2. 9 5
      .env.development
  3. 9 5
      .env.production
  4. 0 227
      README.es.md
  5. 0 223
      README.ja.md
  6. 0 124
      README.md
  7. 6 0
      README.zh-CN.md
  8. 2 1
      src/api/user.js
  9. 3 0
      src/views/recharge/index.vue

+ 5 - 3
.env

@@ -1,11 +1,13 @@
 # just a flag
-ENV = 'development'
+ENV = ''
 
 # base api
 VUE_APP_BASE_API = ''
+
 # 线上 游戏久 平台测试地址
 VUE_APP_BASE_URL = 'http://devapi.youxi9.com'
-# 线上正式
-# VUE_APP_BASE_URL = 'https://api.youxi9.com'
+# 登陆域名
+VUE_APP_LOGIN_URL = 'https://user.youxi9.cn'
+
 # 图片地址
 VUE_APP_IMG_URL = 'https://cdn.youxi9.com/'

+ 9 - 5
.env.development

@@ -3,9 +3,13 @@ ENV = 'development'
 
 # base api
 VUE_APP_BASE_API = ''
-# 线上 游戏久 平台测试地址
-# VUE_APP_BASE_URL = 'http://devapi.youxi9.com'
-# 线上正式
-VUE_APP_BASE_URL = 'https://api.youxi9.com'
+
+# 线上测试
+VUE_APP_BASE_URL = 'http://devapi.youxi9.cn'
+# 正式域名
+# VUE_APP_BASE_URL = 'https://api.youxi9.cn'
+# 登陆域名
+VUE_APP_LOGIN_URL = 'https://devuser.youxi9.cn'
+
 # 图片地址
-VUE_APP_IMG_URL = 'https://cdn.youxi9.com/'
+# VUE_APP_IMG_URL = 'https://cdn.youxi9.com/'

+ 9 - 5
.env.production

@@ -3,9 +3,13 @@ ENV = 'production'
 
 # base api
 VUE_APP_BASE_API = ''
-# 线上 游戏久 平台测试地址
-# VUE_APP_BASE_URL = 'http://devapi.youxi9.com'
-# 线上 MM 充值地址
-VUE_APP_BASE_URL = 'https://api.youxi9.com'
+
+
+# 线上正式
+VUE_APP_BASE_URL = 'https://api.youxi9.cn'
+# 登陆域名
+VUE_APP_LOGIN_URL = 'https://user.youxi9.cn'
+
+
 # 图片地址
-VUE_APP_IMG_URL = 'https://cdn.youxi9.com/'
+# VUE_APP_IMG_URL = 'https://cdn.youxi9.com/'

ファイルの差分が大きいため隠しています
+ 0 - 227
README.es.md


ファイルの差分が大きいため隠しています
+ 0 - 223
README.ja.md


ファイルの差分が大きいため隠しています
+ 0 - 124
README.md


+ 6 - 0
README.zh-CN.md

@@ -54,6 +54,12 @@ server
 
 
 ## 修改记录
+## v1.9.2
+> 2022.06.27
+- 充值页面的已充值栏不能编辑(可读状态)
+- 修改域名
+- 添加充值域名
+
 ## v1.9
 > 2021.12.06
 1. [x] 添加展示MM渠道余额与充值判断。

+ 2 - 1
src/api/user.js

@@ -11,7 +11,8 @@ export function login(data) {
   return request({
     url: '/v1/user/login',
     method: 'post',
-    params: data
+    params: data,
+    baseURL: process.env.VUE_APP_LOGIN_URL
   })
 }
 

+ 3 - 0
src/views/recharge/index.vue

@@ -132,6 +132,7 @@
                 v-model="thenAccount"
                 type="textarea"
                 :autosize="{ minRows: 15, maxRows: 60 }"
+                disabled
               />
             </el-col>
             <el-col :span="8">
@@ -140,6 +141,7 @@
                 v-model="catchAccount"
                 type="textarea"
                 :autosize="{ minRows: 15, maxRows: 60 }"
+                disabled
               />
             </el-col>
             <el-col :span="8">
@@ -148,6 +150,7 @@
                 v-model="noExistence"
                 type="textarea"
                 :autosize="{ minRows: 15, maxRows: 60 }"
+                disabled
               />
             </el-col>
           </el-row>