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

修改内容

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