Browse Source

更换域名地址

luyanan 6 years ago
parent
commit
10d0739bef

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

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

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

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

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

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

+ 3 - 3
src/libs/http.js

4
const kexiuUrl = 'http://192.168.3.233:81';
4
const kexiuUrl = 'http://192.168.3.233:81';
5
const platUrl = 'http://localhost:7070';
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
// const kexiuUrl = 'http://192.168.3.233'; // 跳转科袖链接地址、图片访问路径
10
// const kexiuUrl = 'http://192.168.3.233'; // 跳转科袖链接地址、图片访问路径
11
// const platUrl = 'http://192.168.3.233:2080'; // 邮箱配置的地址
11
// const platUrl = 'http://192.168.3.233:2080'; // 邮箱配置的地址
12
12
13
const utilUrl = platUrl + '/ajax'; // 平台访问的接口地址
13
const utilUrl = '/ajax'; // 平台访问的接口地址
14
14
15
http.platUrl = platUrl;
15
http.platUrl = platUrl;
16
http.utilUrl = utilUrl;
16
http.utilUrl = utilUrl;