|
@@ -116,7 +116,7 @@
|
|
|
|
|
|
<el-form-item>
|
|
|
<img :src="buyForm.buyImg" :onerror="errorImg" class="setting-img" @click="showImg(buyForm.buyImg)">
|
|
|
- <do-upload @onFinish="uploadBuyImg" placeholder="上传支付凭证"> </do-upload>
|
|
|
+ <do-upload @onFinish="uploadBuyImg" :mins="50" :maxs="500" placeholder="上传支付凭证"> </do-upload>
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item class="tc">
|
|
@@ -128,6 +128,65 @@
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ <el-dialog title="承诺书" class="fc tc" :visible.sync="commitmentDialog">
|
|
|
+
|
|
|
+
|
|
|
+ <div v-if="type=='继续教育'">
|
|
|
+ <div class="commitment-header"> 致:三明市城市建设项目服务中心 </div>
|
|
|
+ <div class="tl commitment" >
|
|
|
+ 根据福建省住房和城乡建设厅《关于做好施工现场专业人员换发电子培训合格证相关工作的通知》(
|
|
|
+ 闽建人函〔2021〕6号)的文件精神,施工现场专业人员符合换证条件的按要求参加不少于32学时的继续教育。
|
|
|
+ 按照明建人才〔2021〕8号关于施工现场专业人员岗位证书继续教育的通知,
|
|
|
+ 本人现自愿委托参加贵中心所组织的继续教育培训学习,委托培训费用_3_元/学时。
|
|
|
+ </div>
|
|
|
+ <div class="commitment-footer">
|
|
|
+ 特此诺书!
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <div v-else-if="type=='建筑施工企业特种作业人员'">
|
|
|
+ <div class="tl commitment" >
|
|
|
+ 根据住建部《建筑施工特种作业人员管理规定》(建质﹝2008﹞75号),
|
|
|
+ 特种作业人员应当参加年度安全教育培训或继续教育,
|
|
|
+ 每年不得少于24学时。本人自愿选择参加三明市城市建设项目服务中心组织的特种操作人员继续教育,
|
|
|
+ 对报名相关条件、提交的材料及收费情况均已知晓!且所提交的材料真实有效,
|
|
|
+ 如有存在虚假,所导致的一切后果本人自愿承担。
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-else>
|
|
|
+ <div class="tl commitment" >
|
|
|
+ 按照《福建省住房和城乡建设厅办公室关于住房城乡建设行业从业人员职业教育培训工作有关事项的通知》
|
|
|
+ (闽建办人〔2020〕3号)的要求,安管人员证书在证书有效期内参加县级以上住房和城乡建设主管部门组织的安全生产教育培训时间满24学时。
|
|
|
+ 本人自愿选择参加三明市城市建设项目服务中心组织的安管人员(三类人员)继续教育,对报名相关条件、
|
|
|
+ 提交的材料及收费情况均已知晓!且所提交的材料真实有效,如有存在虚假,所导致的一切后果本人自愿承担。
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <div class="tl commitment-content mt20">
|
|
|
+ <el-radio-group v-model="isCommitment">
|
|
|
+ <el-row class="mt10">
|
|
|
+ <el-radio :label="true" >本人作出上述承诺</el-radio>
|
|
|
+ </el-row>
|
|
|
+ <el-row class="mt10">
|
|
|
+ <el-radio :label="false" >本人不作出上述承诺</el-radio>
|
|
|
+ </el-row>
|
|
|
+ </el-radio-group>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="commitmentDialog = false">取 消</el-button>
|
|
|
+ <el-button type="primary" :disabled="isCommitment?false:true" @click="confirmCommitment">确 定</el-button>
|
|
|
+ </span>
|
|
|
+
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
<el-dialog
|
|
|
append-to-body
|
|
|
close-on-click-modal
|
|
@@ -164,6 +223,7 @@
|
|
|
type: this.$route.query.type || '',
|
|
|
list: [],
|
|
|
showData: [],
|
|
|
+ isCommitment: "",
|
|
|
buyCourseDialog: false,
|
|
|
showExample: false,
|
|
|
showImgDialog: false,
|
|
@@ -179,6 +239,7 @@
|
|
|
loginDialog: false,
|
|
|
isLoginOk: false,
|
|
|
media: {},
|
|
|
+ commitmentDialog: false,
|
|
|
exampleImg: exampleImg,
|
|
|
errorImg: 'this.src="' + require('../../../assets/images/no-data_hash5abcd2ef62.png') + '"'
|
|
|
};
|
|
@@ -198,10 +259,13 @@
|
|
|
watch: {
|
|
|
type(val) {
|
|
|
this.getData()
|
|
|
+ },
|
|
|
+ isCommitment(val){
|
|
|
+ console.log(val)
|
|
|
}
|
|
|
},
|
|
|
beforeMount() {
|
|
|
- if (this.typeList.length > 0) {
|
|
|
+ if (!this.type && this.typeList.length > 0) {
|
|
|
this.type = this.typeList[0].name
|
|
|
this.getData()
|
|
|
}
|
|
@@ -258,6 +322,10 @@
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ confirmCommitment(){
|
|
|
+ this.commitmentDialog = false;
|
|
|
+ this.buyCourseDialog = true;
|
|
|
+ },
|
|
|
gotoDetail(courseId) {
|
|
|
this.$router.push(`/main/course/${courseId}`);
|
|
|
},
|
|
@@ -272,7 +340,7 @@
|
|
|
courseId: item.course_id
|
|
|
}).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
- this.buyCourseDialog = true;
|
|
|
+ this.commitmentDialog = true;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -317,4 +385,27 @@
|
|
|
padding: 2px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
+
|
|
|
+.commitment-header{
|
|
|
+ font-size: 16px;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+
|
|
|
+ .commitment{
|
|
|
+ text-indent:30px;
|
|
|
+ margin-top: 20px;
|
|
|
+ font-size: 16px;
|
|
|
+ line-height: 200%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .commitment-footer{
|
|
|
+ margin-top: 30px;
|
|
|
+ text-indent: 50px;
|
|
|
+ font-size: 16px;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .commitment-content{
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
</style>
|