提交 b86cb96a authored 作者: lihuihui's avatar lihuihui

修改内容

上级 57b590a4
...@@ -33,6 +33,6 @@ module.exports = { ...@@ -33,6 +33,6 @@ module.exports = {
}, },
ProvidePlugin: {}, ProvidePlugin: {},
others: { others: {
projectId: '1000' projectId: '5003'
} }
} }
...@@ -14,6 +14,6 @@ module.exports = { ...@@ -14,6 +14,6 @@ module.exports = {
}, },
ProvidePlugin: {}, ProvidePlugin: {},
others: { others: {
projectId: '1000' projectId: '5003'
} }
} }
...@@ -15,6 +15,6 @@ module.exports = { ...@@ -15,6 +15,6 @@ module.exports = {
}, },
ProvidePlugin: {}, ProvidePlugin: {},
others: { others: {
projectId: '1000' projectId: '5003'
} }
} }
...@@ -5675,7 +5675,7 @@ ...@@ -5675,7 +5675,7 @@
}, },
"html-tags": { "html-tags": {
"version": "2.0.0", "version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/html-tags/download/html-tags-2.0.0.tgz", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz",
"integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=" "integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos="
}, },
"html-webpack-plugin": { "html-webpack-plugin": {
...@@ -6638,7 +6638,7 @@ ...@@ -6638,7 +6638,7 @@
}, },
"lodash.kebabcase": { "lodash.kebabcase": {
"version": "4.1.1", "version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz", "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz",
"integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=" "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY="
}, },
"loglevel": { "loglevel": {
...@@ -9936,7 +9936,7 @@ ...@@ -9936,7 +9936,7 @@
}, },
"svg-tags": { "svg-tags": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npm.taobao.org/svg-tags/download/svg-tags-1.0.0.tgz", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz",
"integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=" "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q="
}, },
"swiper": { "swiper": {
......
...@@ -14,7 +14,7 @@ export function queryInformation(param) { ...@@ -14,7 +14,7 @@ export function queryInformation(param) {
// url: host.main + path.queryInformation, // url: host.main + path.queryInformation,
url: '/api/zws/v1/enrollment/submissions', url: '/api/zws/v1/enrollment/submissions',
params: { params: {
project_id: 1000, project_id: 5003,
name: 'hhahah' name: 'hhahah'
} }
}) })
...@@ -30,7 +30,7 @@ export function introduction(params) { ...@@ -30,7 +30,7 @@ export function introduction(params) {
// 获取所有介绍内容 // 获取所有介绍内容
return ax({ return ax({
method: 'GET', method: 'GET',
url: '/api/zws/v1/cms/projects/1000/contents/' + params.tag url: '/api/zws/v1/cms/projects/5003/contents/' + params.tag
}) })
.then(function(response) { .then(function(response) {
params.cb(response.data[0].content) params.cb(response.data[0].content)
...@@ -47,7 +47,7 @@ export function getNews(params) { ...@@ -47,7 +47,7 @@ export function getNews(params) {
// url: host.main + path.news, // url: host.main + path.news,
url: '/api/zws/v1/cms/news', url: '/api/zws/v1/cms/news',
params: { params: {
project_id: 1000 project_id: 5003
} }
}) })
.then(function(response) { .then(function(response) {
......
...@@ -6,7 +6,7 @@ export default class ScoreAPI extends BaseAPI { ...@@ -6,7 +6,7 @@ export default class ScoreAPI extends BaseAPI {
*/ */
getContent = name => getContent = name =>
this.get( this.get(
`/v1/cms/projects/1000/contents/${encodeURIComponent(decodeURIComponent(name))}?sites=sofia.ezijing.com`, `/v1/cms/projects/5003/contents/${encodeURIComponent(decodeURIComponent(name))}?sites=sofia.ezijing.com`,
{ {
addhost: 'zws-api.ezijing.com', addhost: 'zws-api.ezijing.com',
Host: 'zws-api.ezijing.com' Host: 'zws-api.ezijing.com'
......
...@@ -7,7 +7,7 @@ export default class ScoreAPI extends BaseAPI { ...@@ -7,7 +7,7 @@ export default class ScoreAPI extends BaseAPI {
*/ */
getContent = name => getContent = name =>
this.get( this.get(
`zws/v1/cms/projects/1000/contents/${encodeURIComponent(decodeURIComponent(name))}?sites=sofia.ezijing.com`, `zws/v1/cms/projects/5003/contents/${encodeURIComponent(decodeURIComponent(name))}?sites=sofia.ezijing.com`,
{} {}
) )
/** /**
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// export function queryInformation(param) { // export function queryInformation(param) {
// return axios.get(host.main + path.queryInformation, { // return axios.get(host.main + path.queryInformation, {
// params: { // params: {
// project_id: 1000 // project_id: 5003
// } // }
// }) // })
// .then(function (response) { // .then(function (response) {
......
...@@ -19,12 +19,12 @@ ...@@ -19,12 +19,12 @@
<section class="app-header-main"> <section class="app-header-main">
<div class="hd"> <div class="hd">
<div class="hd-left"> <div class="hd-left">
<a href="/"><img src="../../assets/img/head/ezijing-logo.svg" class="logo" /></a> <a href="/"><img src="https://zws-imgs-pub.ezijing.com/static/public/92d1c018bf15a5d600b43378e8ac2932.png" class="logo" /></a>
<h1 class="title">{{ title }}</h1> <!-- <h1 class="title">{{ title }}</h1> -->
</div> </div>
<div class="hd-right"> <!-- <div class="hd-right">
<img src="https://zws-imgs-pub.ezijing.com/2f4e4eba3c1e93a220425382aa0f4977.png" /> <img src="https://zws-imgs-pub.ezijing.com/2f4e4eba3c1e93a220425382aa0f4977.png" />
</div> </div> -->
</div> </div>
<div class="bd"> <div class="bd">
<ul class="nav"> <ul class="nav">
...@@ -51,12 +51,12 @@ export default { ...@@ -51,12 +51,12 @@ export default {
navList: [ navList: [
{ title: '首页', path: '/index' }, { title: '首页', path: '/index' },
{ title: '项目介绍', path: '/project' }, { title: '项目介绍', path: '/project' },
{ title: '视频中心', path: '/videoCenter' }, // { title: '视频中心', path: '/videoCenter' },
{ title: '招生信息', path: '/recruit' }, { title: '招生信息', path: '/recruit' },
{ title: '教学模块', path: '/teaching' }, { title: '教学模块', path: '/teaching' },
{ title: '师生风采', path: '/presence' }, { title: '师生风采', path: '/presence' },
// { title: '职业发展', path: '/careerDev' }, // { title: '职业发展', path: '/careerDev' },
{ title: '校友工作', path: '/alumniWork' } { title: '项目动态', path: '/alumniWork' }
], ],
isLogin: false, isLogin: false,
user: null, user: null,
...@@ -124,7 +124,7 @@ export default { ...@@ -124,7 +124,7 @@ export default {
} }
.app-header-bar { .app-header-bar {
height: 40px; height: 40px;
background-color: #333; background-color: rgba(0, 57, 116, 1);
.login { .login {
float: right; float: right;
display: flex; display: flex;
...@@ -155,7 +155,7 @@ export default { ...@@ -155,7 +155,7 @@ export default {
align-items: center; align-items: center;
} }
.logo { .logo {
width: 156px; width: 310px;
// height: 50px; // height: 50px;
} }
.title { .title {
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
right: 0; right: 0;
bottom: -3px; bottom: -3px;
height: 2px; height: 2px;
background: #bf0927; background: rgba(0, 57, 116, 1);
} }
.search { .search {
display: flex; display: flex;
......
...@@ -58,7 +58,7 @@ export default { ...@@ -58,7 +58,7 @@ export default {
page: 1, page: 1,
per_page: 100, per_page: 100,
type: 59, type: 59,
project_id: 1000 project_id: 5003
}, },
M1listData: [], M1listData: [],
M2listData: [] M2listData: []
......
差异被折叠。
...@@ -30,7 +30,7 @@ export default { ...@@ -30,7 +30,7 @@ export default {
page: 1, page: 1,
per_page: 100, per_page: 100,
type: 58, type: 58,
project_id: 1000 project_id: 5003
}, },
listData: { listData: {
0: [], 0: [],
......
...@@ -46,7 +46,7 @@ export default { ...@@ -46,7 +46,7 @@ export default {
page: 1, page: 1,
per_page: 100, per_page: 100,
type: 55, type: 55,
project_id: 1000 project_id: 5003
}, },
allList: { allList: {
55: [], 55: [],
......
...@@ -51,7 +51,7 @@ export default { ...@@ -51,7 +51,7 @@ export default {
page: 1, page: 1,
per_page: 100, per_page: 100,
type: 52, type: 52,
project_id: 1000 project_id: 5003
} }
} }
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论