提交 4540bfec authored 作者: 王鹏飞's avatar 王鹏飞

chore: update

上级 b72a79e6
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -78,21 +78,17 @@
"cross-env": "^7.0.2",
"driver.js": "^0.9.8",
"element-ui": "^2.13.0",
"install": "^0.13.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"npm": "^6.14.8",
"qrcode.vue": "^1.7.0",
"swiper": "^5.4.5",
"tween.js": "^16.6.0",
"viewerjs": "^1.9.0",
"vue": "^2.6.11",
"vue-awesome-swiper": "^4.1.1",
"vue-i18n": "^8.16.0",
"vue-loader": "^15.9.1",
"vue-meta-info": "^0.1.7",
"vue-router": "^3.1.6",
"vue-scrollmagic": "^1.2.0",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.1.3"
},
......
......@@ -50,7 +50,7 @@ export default {
return {
tabBtnActive: false,
tabBtnTarget: '',
projectName: '应用心理学硕士',
projectName: '家庭教育硕士',
sendCode: '',
isBtnDisabled: false,
formInfo: {
......@@ -107,21 +107,20 @@ export default {
phone: this.formInfo.phone
}
return new Promise((resolve, reject) => {
cAction.News.postNes(params)
.then(res => {
if (res && res.status === 200 && res.error === 0) {
resolve({
type: 'enroll',
state: 'success'
})
} else {
reject({
type: 'enroll',
state: 'fail',
msg: res.message || '报名提交失败'
})
}
})
cAction.News.postNes(params).then(res => {
if (res && res.status === 200 && res.error === 0) {
resolve({
type: 'enroll',
state: 'success'
})
} else {
reject({
type: 'enroll',
state: 'fail',
msg: res.message || '报名提交失败'
})
}
})
})
},
getSendCode() {
......@@ -188,7 +187,7 @@ export default {
top: 50%;
right: 10px;
z-index: 9999;
transform:translateY(-50%);
transform: translateY(-50%);
.tab_btns {
width: 72px;
height: 136px;
......@@ -288,10 +287,10 @@ export default {
.right_bar .sendcode .el-input {
width: 170px;
}
.right_bar .el-button{
.right_bar .el-button {
background: #ff8e1a;
border:#ff8e1a 1px solid;
color:rgba(255,255,255,.9);
border: #ff8e1a 1px solid;
color: rgba(255, 255, 255, 0.9);
}
.sendcode .el-button {
width: 94px;
......
......@@ -9,14 +9,14 @@
<!-- <meta http-equiv="Pragma" content="no-cache" /> -->
<!-- <meta http-equiv="Expires" content="0" /> -->
<title>紫荆教育-威斯康星协和大学家庭教育硕士</title>
<meta
<!-- <meta
name="description"
content="美国加州整合大学始创于1968年,是一所专注于心理学相关专业的非营利性研究型大学,全美临床心理咨询专业排名第4,2年学制,专业心理咨询师摇篮,学位证书与出国留学所获得的证书相同!"
/>
<meta
name="keywords"
content="心理学硕士,应用心理学硕士,在职心理学硕士,在线心理学硕士,在职应用心理学硕士,美国心理学硕士,心理学,心理咨询,心理咨询师,心理学博士,心理教练,加州整合大学,美国加州整合大学"
/>
content="心理学硕士,家庭教育硕士,在职心理学硕士,在线心理学硕士,在职家庭教育硕士,美国心理学硕士,心理学,心理咨询,心理咨询师,心理学博士,心理教练,加州整合大学,美国加州整合大学"
/> -->
<!-- <meta
name="viewport"
id="viewport"
......@@ -41,7 +41,7 @@
<![endif]-->
<script>
var _hmt = _hmt || []
;(function () {
;(function() {
var hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?e1cb5f1b0c9c26edeeaef974df0704f4'
var s = document.getElementsByTagName('script')[0]
......@@ -49,10 +49,10 @@
})()
</script>
<script>
;(function (b, a, e, h, f, c, g, s) {
;(function(b, a, e, h, f, c, g, s) {
b[h] =
b[h] ||
function () {
function() {
;(b[h].c = b[h].c || []).push(arguments)
}
b[h].s = !!c
......
import Vue from 'vue' // 引入vue框架
import router from './router'
import VueI18n from 'vue-i18n' // 使用 国际化
import createI18n from './assets/languages' // 国际化定义
import VueForm from '@ezijing/vue-form'
import '@ezijing/vue-form/dist/vue-form.css'
import App from './app.vue' // 初始化 vue页面
import './style.scss' // 公共样式
import MetaInfo from 'vue-meta-info'
import Element from 'element-ui'
import modules from './modules'
import createBefore from './components/beforeEnter'
import store from './store'
import VueScrollmagic from 'vue-scrollmagic'
import './assets/css/reset.css'
import './assets/css/animate.min.css'
import VueLazyComponent from '@xunlei/vue-lazy-component'
......@@ -21,12 +17,8 @@ Vue.use(VueForm)
Vue.use(VueLazyComponent)
Vue.use(VueI18n)
const i18n = createI18n()
Vue.use(MetaInfo)
Vue.use(Element, { i18n: (key, value) => i18n.t(key, value) })
Vue.use(modules, { i18n })
Vue.use(VueScrollmagic)
Vue.use(Element)
/* 设置全局变量 */
window.G = Vue.prototype.$GLOBAL = {
......@@ -49,6 +41,5 @@ router.beforeEach(async (to, from, next) => {
window.G.$instance_vue = new Vue({
router,
store,
i18n,
render: h => h(App)
}).$mount('#app')
......@@ -28,7 +28,7 @@
</div>
</div>
<div class="more-title">
<h5>应用心理学硕士</h5>
<h5>家庭教育硕士</h5>
<h3>加州整合大学</h3>
</div>
</div>
......@@ -255,7 +255,7 @@ export default {
}
},
watch: {
num1: function (newValue, oldValue) {
num1: function(newValue, oldValue) {
var vm = this
function animate(time) {
window.requestAnimationFrame(animate)
......@@ -264,13 +264,13 @@ export default {
new TWEEN.Tween({ tweeningNumber: oldValue })
.easing(TWEEN.Easing.Quadratic.Out)
.to({ tweeningNumber: newValue }, 2000)
.onUpdate(function () {
.onUpdate(function() {
vm.animatedNum1 = this.tweeningNumber.toFixed(0)
})
.start()
animate()
},
num2: function (newValue, oldValue) {
num2: function(newValue, oldValue) {
var vm = this
function animate(time) {
window.requestAnimationFrame(animate)
......@@ -279,13 +279,13 @@ export default {
new TWEEN.Tween({ tweeningNumber: oldValue })
.easing(TWEEN.Easing.Quadratic.Out)
.to({ tweeningNumber: newValue }, 2000)
.onUpdate(function () {
.onUpdate(function() {
vm.animatedNum2 = this.tweeningNumber.toFixed(0)
})
.start()
animate()
},
num3: function (newValue, oldValue) {
num3: function(newValue, oldValue) {
var vm = this
function animate(time) {
window.requestAnimationFrame(animate)
......@@ -294,13 +294,13 @@ export default {
new TWEEN.Tween({ tweeningNumber: oldValue })
.easing(TWEEN.Easing.Quadratic.Out)
.to({ tweeningNumber: newValue }, 2000)
.onUpdate(function () {
.onUpdate(function() {
vm.animatedNum3 = this.tweeningNumber.toFixed(0)
})
.start()
animate()
},
num4: function (newValue, oldValue) {
num4: function(newValue, oldValue) {
var vm = this
function animate(time) {
window.requestAnimationFrame(animate)
......@@ -309,7 +309,7 @@ export default {
new TWEEN.Tween({ tweeningNumber: oldValue })
.easing(TWEEN.Easing.Quadratic.Out)
.to({ tweeningNumber: newValue }, 2000)
.onUpdate(function () {
.onUpdate(function() {
vm.animatedNum4 = Math.round((this.tweeningNumber.toFixed(0) / 10000) * 100) / 100
})
.start()
......
......@@ -9,7 +9,7 @@
</div>
</div>
</header>
<nav class="nav"><h1 class="title">加州整合大学应用心理学硕士项目推荐信</h1></nav>
<nav class="nav"><h1 class="title">威斯康星协和大学家庭教育硕士项目推荐信</h1></nav>
<section class="content">
<el-form
:model="ruleForm"
......
......@@ -22,7 +22,7 @@
<div class="major-banner-title">
<span>加州整合大学</span>
<span class="font-size-40">
应用心理学硕士
家庭教育硕士
</span>
</div>
</div>
......
......@@ -45,7 +45,7 @@ export default function(_this) {
model: 'isAgree',
rules: [{ required: true, message: '请阅读协议', trigger: 'change' }],
prepend:
'<p>本人自愿申请紫荆-加州整合大学应用心理学硕士项目,所有申请表格内填写的内容属实,本科学士学位证书属实,没有弄虚作假的行为。如有虚假,愿承担一切法 律责任。</p>'
'<p>本人自愿申请紫荆-威斯康星协和大学家庭教育硕士项目,所有申请表格内填写的内容属实,本科学士学位证书属实,没有弄虚作假的行为。如有虚假,愿承担一切法 律责任。</p>'
}
]
}
......
......@@ -6,10 +6,10 @@
<div class="pay-hd">
<h1>欢迎您</h1>
<p class="t1">
申请紫荆-加州整合大学应用心理学硕士项目,本项目的注册费、申请费共计<span>800</span>元,请扫描二维码缴费以完成报名。
申请紫荆-威斯康星协和大学家庭教育硕士项目,本项目的注册费、申请费共计<span>800</span>元,请扫描二维码缴费以完成报名。
</p>
<p class="t1" v-if="isPass">
因面试未通过需重新申请紫荆-加州整合大学应用心理学硕士项目,本项目的注册费、申请费共计<span>800</span>元,请扫描二维码缴费以完成报名。
因面试未通过需重新申请紫荆-威斯康星协和大学家庭教育硕士项目,本项目的注册费、申请费共计<span>800</span>元,请扫描二维码缴费以完成报名。
</p>
</div>
<div class="qrcode-error" v-if="qrcodeError">
......
......@@ -6,7 +6,7 @@
</div>
<h1>欢迎您</h1>
<p class="t1">
申请紫荆-加州整合大学应用心理学硕士项目,请在填写以下内容并<br />
申请紫荆-威斯康星协和大学家庭教育硕士项目,请在填写以下内容并<br />
提交报名申请后,扫码支付本项目的注册费、申请费共计<span>800</span>元。(该申请费不退,请慎重缴费!)
</p>
</div>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论