Quellcode durchsuchen

更换域名地址

luyanan vor 6 Jahren
Ursprung
Commit
10d0739bef

+ 2 - 0
src/common/stylus/common.styl

@ -14,6 +14,8 @@ a
14 14
  margin:auto
15 15
  clear:both
16 16
  font-size:15px
17
.minw-block
18
  min-width: 1110px
17 19
18 20
.block-wrapper
19 21
  margin-bottom:20px

+ 1 - 1
src/components/main-views/TheFooter.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <div class="footer">
2
  <div class="footer minw-block">
3 3
		<div class="contain-wrapper">
4 4
			<div class="footer-wrapper">
5 5
				<div class="wrapper-left">

+ 3 - 4
src/components/main-views/TheHeader.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
  <div class="header">
3
    <div class="top-wrapper">
3
    <div class="top-wrapper minw-block">
4 4
      <div class="contain-wrapper">
5 5
        <div class="wrapper-left">
6 6
          <a :href="plat.website" class="a-link" target="_blank">{{plat.name}}</a>
@ -13,9 +13,9 @@
13 13
        </div>
14 14
      </div>
15 15
    </div>
16
    <div class="banner-wrapper" :style="{backgroundImage: 'url(' + plat.bannerurl + ')'}">
16
    <div class="banner-wrapper minw-block" :style="{backgroundImage: 'url(' + plat.bannerurl + ')'}">
17 17
    </div>
18
    <div class="nav-wrapper">
18
    <div class="nav-wrapper minw-block">
19 19
      <div class="contain-wrapper">
20 20
        <ul>
21 21
          <router-link to="home" active-class="active" tag="li">首页</router-link>
@ -64,7 +64,6 @@
64 64
    .banner-wrapper
65 65
      width:100%
66 66
      height:200px
67
      min-width:1100px
68 67
      background-size:cover
69 68
      background-position:center
70 69
    .nav-wrapper

+ 3 - 3
src/libs/http.js

@ -4,13 +4,13 @@ let http = { };
4 4
const kexiuUrl = 'http://192.168.3.233:81';
5 5
const platUrl = 'http://localhost:7070';
6 6
7
// const kexiuUrl = 'http://www.ekexiu.com';
8
// const platUrl = 'http://120.27.36.244';
7
// const kexiuUrl = 'https://www.ekexiu.com';
8
// const platUrl = 'http://xttjpt.cn';
9 9
10 10
// const kexiuUrl = 'http://192.168.3.233'; // 跳转科袖链接地址、图片访问路径
11 11
// const platUrl = 'http://192.168.3.233:2080'; // 邮箱配置的地址
12 12
13
const utilUrl = platUrl + '/ajax'; // 平台访问的接口地址
13
const utilUrl = '/ajax'; // 平台访问的接口地址
14 14
15 15
http.platUrl = platUrl;
16 16
http.utilUrl = utilUrl;