|
@@ -43,6 +43,19 @@
|
|
|
,填写并加盖单位公章后,在申请开通课程界面上传扫描件、并缴费
|
|
|
</p>
|
|
|
</div>
|
|
|
+ <div class="mt10" v-if="type=='燃气经营企业'">
|
|
|
+ <p style="color: red;font-size: 16px;">
|
|
|
+ 报名对象为:2020年度及以后由培训单位核发的和2021年度换发的“电子培训合格证”且每年度需参加继续教育人员
|
|
|
+ </p>
|
|
|
+ <p style="color: red;font-size: 16px;">
|
|
|
+ 注意:继续教育学员请先下载
|
|
|
+ <a style="color: blue;cursor: hand;" href="https://sm.hqedust.com/cdn/%E7%87%83%E6%B0%94%E4%BA%BA%E5%91%98%E4%BA%BA%E5%91%98%E5%B2%97%E4%BD%8D%E7%BB%A7%E7%BB%AD%E6%95%99%E8%82%B2%E5%A7%94%E6%89%98%E5%9F%B9%E8%AE%AD%E3%80%81%E6%89%BF%E8%AF%BA%E5%87%BD.doc">
|
|
|
+ 《燃气人员人员岗位继续教育委托培训、承诺函》
|
|
|
+ </a>
|
|
|
+ ,填写并加盖单位公章后,在申请开通课程界面上传扫描件、并缴费
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
|
|
|
<ul class="pt-line mt20" v-if="ndList.length>1">
|
|
|
<li style="float: left;font-size: 16px;margin: 4px;padding: 4px;" >
|
|
@@ -167,7 +180,7 @@
|
|
|
</el-row>
|
|
|
<el-row v-if="type=='施工现场专业人员'">
|
|
|
<div style="width: 700px;margin: 0 auto;text-align: left;color: red;">
|
|
|
- 提示:八大员继续教育承诺函企业名称应与个人报名系统企业名称一致,如已变更单位的,
|
|
|
+ 提示:继续教育承诺函企业名称应与个人报名系统企业名称一致,如已变更单位的,
|
|
|
请先在个人系统帐号设置进入额外信息栏进行修改工作单位与报名承诺函工作单位相符后方可上传承诺函确认
|
|
|
</div>
|
|
|
<img :src="buyForm.buyImg" :onerror="errorImg" style="width: 160px;text-align: center;">
|
|
@@ -198,7 +211,7 @@
|
|
|
<el-dialog title="承诺书" class="fc tc" :visible.sync="commitmentDialog">
|
|
|
|
|
|
<div>
|
|
|
- <div v-if="type=='施工现场专业人员'">
|
|
|
+ <div v-if="hasPromise(type)">
|
|
|
<div class="commitment-header"> 致:三明市城市建设项目服务中心 </div>
|
|
|
<div class="tl commitment">
|
|
|
{{promise.promise_edu}}
|
|
@@ -482,21 +495,26 @@
|
|
|
uploadBuyImg(url) {
|
|
|
this.buyForm.buyImg = url;
|
|
|
},
|
|
|
+ hasPromise( type ){
|
|
|
+ return type == '施工现场专业人员' || type == '燃气经营企业'
|
|
|
+ },
|
|
|
+ testBuyOK(item){
|
|
|
+ this.stage = 2;
|
|
|
+ this.isCompanyPay = 1;
|
|
|
+ this.isCommitment=''
|
|
|
+ this.buyForm.rzCode = item.rzCode;
|
|
|
+ this.buyForm.company = 'ssss';
|
|
|
+ this.buyForm.courseName = item.courseName;
|
|
|
+ this.buyCourseDialog = true;
|
|
|
+ },
|
|
|
goPay( item ) {
|
|
|
this.buyForm = Object.assign(this.buyForm, item)
|
|
|
this.buyForm.company = this.userInfo.company;
|
|
|
this.buyForm.temp = item;
|
|
|
this.buyForm.courseName = item.name;
|
|
|
- let isEdu = this.type == '施工现场专业人员';
|
|
|
-
|
|
|
- // 绕开检查
|
|
|
- // this.stage = 2;
|
|
|
- // this.isCompanyPay = 1;
|
|
|
- // this.isCommitment=''
|
|
|
- // this.buyForm.rzCode = item.rzCode;
|
|
|
- // this.buyForm.company = 'ssss';
|
|
|
- // this.buyForm.courseName = item.courseName;
|
|
|
- // this.buyCourseDialog = true;
|
|
|
+ let isEdu = this.hasPromise(item.type);
|
|
|
+ // this.testBuyOK(item)
|
|
|
+ // return;
|
|
|
// 检查
|
|
|
item.payErr = true;
|
|
|
httpServer("weixin.docheckpay", {
|