rt-sim-training-client/src/views/components/pay/index.vue

144 lines
4.9 KiB
Vue
Raw Normal View History

2019-07-26 13:32:43 +08:00
<template>
<el-card :style="{ height: height +'px' }">
<div style="text-align: center; padding-top: 30px">
<b>{{ $t('global.checkstand') }}</b>
2019-07-26 13:32:43 +08:00
</div>
<div :style=" { height: height - 60 +'px' }">
2019-08-14 10:36:55 +08:00
<el-scrollbar wrap-class="scrollbar-wrapper">
<el-steps
:active="active"
finish-status="success"
style="margin-top: 20px; margin-left: auto; margin-right: auto; width: 80%"
center
>
<el-step :title="$t('global.submitOrders')" />
<el-step :title="$t('global.completePayment')" />
2019-07-26 13:32:43 +08:00
</el-steps>
<div style="margin-top: 20px; margin-left: auto; margin-right: auto; width: 80%;">
2019-08-14 10:36:55 +08:00
<commit-draft
v-show="active===0"
ref="commit"
:order-data="orderData"
:system-name="systemName"
@commit="commit"
/>
<confirm-draft
v-show="active===1"
ref="confirm"
:order-data="orderData"
:system-name="systemName"
:order="order"
@confirm="confirm"
/>
<finish-draft v-show="active===2" ref="finish" :finish-status="finishStatus" @finish="finish" />
2019-07-26 13:32:43 +08:00
</div>
</el-scrollbar>
</div>
</el-card>
</template>
<script>
2019-08-14 10:36:55 +08:00
import { getCommodityDetailByParams } from '@/api/management/goods';
import { PermissionType } from '@/scripts/ConstDic';
import { UrlConfig } from '@/scripts/ConstDic';
2019-08-14 10:36:55 +08:00
import CommitDraft from './commit';
import ConfirmDraft from './confirm';
import FinishDraft from './finish';
2019-07-26 13:32:43 +08:00
2019-08-14 10:36:55 +08:00
export default {
2019-11-07 15:54:49 +08:00
name: 'LessonDetail',
components: {
CommitDraft,
ConfirmDraft,
FinishDraft
},
data() {
return {
active: -1,
order: {},
title: '',
finishStatus: '02',
orderData: {},
routeDict: {
0: 'commit',
1: 'confirm',
2: 'finish'
}
};
},
computed: {
systemName() {
switch (this.$route.query.permissionType) {
case PermissionType.LESSON: return this.$t('global.coursePrice');
case PermissionType.EXAM: return this.$t('global.testPrice');
case PermissionType.SIMULATION: return this.$t('global.simulationPrice');
case PermissionType.SCREEN: return this.$t('global.timeUnitPrice');
}
return '';
},
height() {
if (/\/dp\//.test(this.$route.path) ||
/\/plan\//.test(this.$route.path)) {
2019-11-07 15:54:49 +08:00
return this.$store.state.app.height;
}
2019-11-07 15:54:49 +08:00
return this.$store.state.app.height - 61;
}
},
watch: {
$route(newVal) {
this.initLoadPage();
}
},
mounted() {
this.initLoadPage();
},
methods: {
// 加载课程信息
initLoadPage() {
const data = {
permissionType: this.$route.query.permissionType
};
if (this.$route.query.permissionType != '04') {
data['mapId'] = this.$route.query.mapId;
2019-12-27 19:36:29 +08:00
data['prdType'] = this.$route.query.prdType;
2019-11-07 15:54:49 +08:00
data['lessonId'] = this.$route.query.lessonId;
}
getCommodityDetailByParams(data).then(response => {
this.active = 0;
this.orderData = response.data;
}).catch(() => {
this.$messageBox(this.$t('tip.failedCourse'));
});
},
// 提交订单后处理
commit(data) {
this.active = 1;
this.order = data;
},
// 确认支付后处理
confirm(data) {
this.active = 2;
this.finishStatus = data;
this.$refs.finish.createCountTimer();
},
// 完成跳转处理
finish(data) {
this.active = 0;
const type = this.$route.query.permissionType;
if (type === PermissionType.LESSON) {
2019-12-30 09:36:35 +08:00
this.$router.replace({ path: `${UrlConfig.trainingPlatform.teachDetail}/${this.$route.query.subSystem}`, query: {lessonId: this.$route.query.lessonId, mapId: this.$route.query.mapId, prdType: this.$route.query.prdType}});
2019-11-07 15:54:49 +08:00
} else if (type === PermissionType.EXAM) {
2019-11-11 18:53:11 +08:00
this.$router.replace({ path: `${UrlConfig.trainingPlatform.course}/${this.$route.query.subSystem}`, query: {lessonId: this.$route.query.lessonId}});
2019-11-07 15:54:49 +08:00
} else if (type === PermissionType.SCREEN) {
this.$router.replace({ path: `${UrlConfig.dp.detail}/${this.$route.params.lessonId}` });
} else if (type === PermissionType.SIMULATION) {
this.$router.replace({ path: `${UrlConfig.trainingPlatform.prodDetail}/${this.$route.query.subSystem}`, query: { mapId: this.$route.query.mapId} });
} else {
this.$router.replace({ path: `/` });
}
}
}
2019-08-14 10:36:55 +08:00
};
</script>