wen 3 年之前
父節點
當前提交
ccd6cf7567
共有 8 個文件被更改,包括 30 次插入585 次删除
  1. 9 5
      .env.development
  2. 9 5
      .env.production
  3. 0 227
      README.es.md
  4. 0 223
      README.ja.md
  5. 0 124
      README.md
  6. 6 0
      README.zh-CN.md
  7. 3 1
      src/api/user.js
  8. 3 0
      src/views/recharge/index.vue

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

File diff suppressed because it is too large
+ 0 - 227
README.es.md


File diff suppressed because it is too large
+ 0 - 223
README.ja.md


File diff suppressed because it is too large
+ 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渠道余额与充值判断。

+ 3 - 1
src/api/user.js

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

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