Browse Source

配置接口api.跨域解决

maxiaoxiao 3 weeks ago
parent
commit
33f3b703f8
7 changed files with 78 additions and 12 deletions
  1. 2 1
      api/apis.js
  2. 3 1
      api/dkjbxx.js
  3. 6 5
      api/login.js
  4. 2 2
      config.js
  5. 7 1
      pages.json
  6. 0 1
      static/Config/config.js
  7. 58 1
      uni.scss

+ 2 - 1
api/apis.js

@@ -1,4 +1,5 @@
-import request from "@/utils/http.js"
+// import request from "@/utils/http.js"
+import request from '@/utils/request'
 
 // 查询监管批次数据列表
 export function listPcsj(query) {

+ 3 - 1
api/dkjbxx.js

@@ -1,4 +1,6 @@
-import request from "@/utils/http.js"
+// import request from "@/utils/http.js"
+
+import request from '@/utils/request'
 
 // 查询地块基本信息(DKJBXX)列表
 export function listDkjbxx(data) {

+ 6 - 5
api/login.js

@@ -9,7 +9,7 @@ export function login(username, password, code, uuid) {
     uuid
   }
   return request({
-    'url': '/login',
+    'url': '/auth/login',
     headers: {
       isToken: false
     },
@@ -21,7 +21,7 @@ export function login(username, password, code, uuid) {
 // 注册方法
 export function register(data) {
   return request({
-    url: '/register',
+    url: '/auth/register',
     headers: {
       isToken: false
     },
@@ -33,7 +33,7 @@ export function register(data) {
 // 获取用户详细信息
 export function getInfo() {
   return request({
-    'url': '/getInfo',
+    'url': '/system/user/getInfo',
     'method': 'get'
   })
 }
@@ -41,7 +41,7 @@ export function getInfo() {
 // 退出方法
 export function logout() {
   return request({
-    'url': '/logout',
+    'url': '/auth/logout',
     'method': 'post'
   })
 }
@@ -49,7 +49,8 @@ export function logout() {
 // 获取验证码
 export function getCodeImg() {
   return request({
-    'url': '/captchaImage',
+    // 'url': '/captchaImage',
+    url: '/code',
     headers: {
       isToken: false
     },

+ 2 - 2
config.js

@@ -1,7 +1,7 @@
 // 应用全局配置
 module.exports = {
-  baseUrl: 'https://vue.ruoyi.vip/prod-api',
-  // baseUrl: 'http://localhost:8080',
+  // baseUrl: 'https://vue.ruoyi.vip/prod-api',
+  baseUrl: 'http://192.168.60.221/dev-api',
   // 应用信息
   appInfo: {
     // 应用名称

+ 7 - 1
pages.json

@@ -89,7 +89,13 @@
     "selectedColor": "#000000",
     "borderStyle": "white",
     "backgroundColor": "#ffffff",
-    "list": [{
+    "list": [
+      {
+        "pagePath": "pages/index",
+        "iconPath": "static/images/tabbar/home.png",
+        "selectedIconPath": "static/images/tabbar/home_.png",
+        "text": "首页"
+      },{
         "pagePath": "pages/index/index",
         "iconPath": "static/images/tabbar/home.png",
         "selectedIconPath": "static/images/tabbar/home_.png",

+ 0 - 1
static/Config/config.js

@@ -1 +0,0 @@
-export const BASE_URL = 'http://192.168.60.52:8080'

+ 58 - 1
uni.scss

@@ -61,4 +61,61 @@ $uni-font-size-title:20px;
 $uni-color-subtitle: #555555; // 二级标题颜色
 $uni-font-size-subtitle:26px;
 $uni-color-paragraph: #3F536E; // 文章段落颜色
-$uni-font-size-paragraph:15px;
+$uni-font-size-paragraph:15px;
+
+/* 颜色变量 */
+// @import '@/uni_modules/uview-ui/theme.scss';
+/**
+ * 自定义颜色
+ */
+ $brand-theme-color:#EC544F;      //品牌主体红色
+ $brand-theme-color-aux:#576b95;  //品牌辅助色
+ $page-bg-color:#F7F7F7;          //页面背景色
+ $border-color:#e0e0e0;           //边框颜色
+ $border-color-light:#efefef;     //边框亮色
+ 
+ 
+ $text-font-color-1:#000;         //文字主色
+ $text-font-color-2:#676767;      //副标题颜色
+ $text-font-color-3:#a7a7a7;      //浅色
+ 
+ @mixin flex-box {
+     display: flex;
+     justify-content: space-between;
+     align-items: center;
+ }
+ 
+ @mixin flex-box-set($jc:center,$ai:center) {
+     @include flex-box();
+     @if($jc == center){
+         justify-content: center;
+     }
+     @if($jc == start){
+         justify-content: flex-start;
+     }
+     @if($jc == end){
+         justify-content: flex-end;
+     }
+     @if($jc == between){
+         justify-content: space-between;
+     }
+     @if($ai == center){
+         align-items: center;
+     }
+     @if($ai == start){
+         align-items: flex-start;
+     }
+     @if($ai == end){
+         align-items: flex-end;
+     }
+ }
+ 
+ @mixin ellipsis($row:1){
+     text-overflow: -o-ellipsis-lastline;
+     overflow: hidden;				//溢出内容隐藏
+     text-overflow: ellipsis;		//文本溢出部分用省略号表示
+     display: -webkit-box;			//特别显示模式
+     -webkit-line-clamp: $row;			//行数
+     line-clamp: $row;					
+     -webkit-box-orient: vertical;	//盒子中内容竖直排列	
+ }