Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
98307962
提交
98307962
authored
1月 28, 2022
作者:
haodaking
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug fixes
上级
48467982
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
31 行增加
和
32 行删除
+31
-32
nuxt.config.js
nuxt.config.js
+9
-9
teacher.vue
pages/about/teacher.vue
+21
-22
school3.vue
pages/school/school3.vue
+1
-1
没有找到文件。
nuxt.config.js
浏览文件 @
98307962
...
@@ -6,15 +6,15 @@ export default {
...
@@ -6,15 +6,15 @@ export default {
ssr
:
false
,
ssr
:
false
,
env
:
process
.
env
,
env
:
process
.
env
,
server
:
{
port
:
2048
,
host
:
'0.0.0.0'
},
server
:
{
port
:
2048
,
host
:
'0.0.0.0'
},
...(
process
.
env
.
NODE_ENV
===
'development'
&&
{
//
...(process.env.NODE_ENV === 'development' && {
server
:
{
//
server: {
host
:
'dev.ezijing.com'
,
//
host: 'dev.ezijing.com',
https
:
{
//
https: {
key
:
fs
.
readFileSync
(
path
.
resolve
(
__dirname
,
'dev.ezijing.com.key'
)),
//
key: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.key')),
cert
:
fs
.
readFileSync
(
path
.
resolve
(
__dirname
,
'dev.ezijing.com.pem'
))
//
cert: fs.readFileSync(path.resolve(__dirname, 'dev.ezijing.com.pem'))
}
//
}
}
//
}
}),
//
}),
// Global page headers: https://go.nuxtjs.dev/config-head
// Global page headers: https://go.nuxtjs.dev/config-head
head
:
{
head
:
{
title
:
'紫荆教育国际硕士1+1'
,
title
:
'紫荆教育国际硕士1+1'
,
...
...
pages/about/teacher.vue
浏览文件 @
98307962
<
template
>
<
template
>
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<!--
<app-frame
:data=
"frameParams"
>
-->
<app-frame
:data=
"frameParams"
>
<div
class=
"teacher-content-box"
>
<div
class=
"teacher-content-box"
>
<div
class=
"content-box"
>
<div
class=
"content-box"
>
<div
class=
"teacher-box"
>
<div
class=
"teacher-box"
>
<div
class=
"mar-t-box"
v-for=
"(item, index) in teacherList"
:key=
"index"
>
<div
class=
"mar-t-box"
v-for=
"(item, index) in teacherList"
:key=
"index"
>
<div
class=
"title"
>
{{
item
.
title
}}
</div>
<div
class=
"title"
>
{{
item
.
title
}}
</div>
<ul>
<ul>
<template
v-for=
"(cItem, cIndex) in item.list"
>
<template
v-for=
"(cItem, cIndex) in item.list"
>
<li
:key=
"cIndex + '='"
>
<li
:key=
"cIndex + '='"
>
<img
:src=
"cItem.image"
/>
<img
:src=
"cItem.image"
/>
<div
class=
"name"
>
{{
cItem
.
name
}}
</div>
<div
class=
"name"
>
{{
cItem
.
name
}}
</div>
<div
class=
"p"
v-html=
"cItem.intr"
></div>
<div
class=
"p"
v-html=
"cItem.intr"
></div>
</li>
</li>
</
template
>
</
template
>
</ul>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</app-frame>
<!-- </app-frame> -->
</div>
</div>
</template>
</template>
<
script
>
<
script
>
//
import appFrame from '@/components/appFrame'
import
appFrame
from
'@/components/appFrame'
export
default
{
export
default
{
layout
:
'normal'
,
layout
:
'normal'
,
//
components: {
components
:
{
//
appFrame
appFrame
//
},
},
data
()
{
data
()
{
return
{
return
{
teacherList
:
[
teacherList
:
[
...
@@ -118,7 +118,6 @@ export default {
...
@@ -118,7 +118,6 @@ export default {
margin
:
0
auto
;
margin
:
0
auto
;
padding
:
56px
0
;
padding
:
56px
0
;
.content-box
{
.content-box
{
background-color
:
#fff
;
padding
:
60px
75px
61px
;
padding
:
60px
75px
61px
;
.teacher-box
{
.teacher-box
{
.title
{
.title
{
...
...
pages/school/school3.vue
浏览文件 @
98307962
...
@@ -81,7 +81,7 @@
...
@@ -81,7 +81,7 @@
</div>
</div>
<div
v-else
class=
"is-h5"
>
<div
v-else
class=
"is-h5"
>
<div
class=
"banner"
>
<div
class=
"banner"
>
<img
class=
"img_banner"
src=
"https://webapp-pub.ezijing.com/project/marywood/
marywood_banner.png
"
/>
<img
class=
"img_banner"
src=
"https://webapp-pub.ezijing.com/project/marywood/
banner.jpg"
width=
"100%
"
/>
</div>
</div>
<div
class=
"h5-content"
>
<div
class=
"h5-content"
>
<div
class=
"h5-title"
>
玛丽伍德大学介绍
</div>
<div
class=
"h5-title"
>
玛丽伍德大学介绍
</div>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论