y595705120 3 yıl önce
ebeveyn
işleme
76421ad78d

+ 4 - 0
src/assets/css/base.css

@@ -21,6 +21,10 @@
   text-align: center;
 }
 
+.tl {
+  text-align: left;
+}
+
 .tr {
   text-align: right;
 }

+ 25 - 16
src/components/upload/index.vue

@@ -27,6 +27,14 @@
         type: String,
         default: "点击上传基准照片",
       },
+      mins:{
+        type: Number,
+        default: 20,
+      },
+      maxs:{
+        type: Number,
+        default: 200,
+      },
     },
     data() {
       return {
@@ -36,8 +44,14 @@
     },
     methods: {
       beforeUpload(file) {
-        if (file.size / 1024 / 300 >1) {
-          this.$message.error('上传文件大小不能超过 300KB!');
+        let fileSize = file.size / 1024
+        let {maxs,mins} = this;
+        if (fileSize > maxs ) {
+          this.$message.error(`上传文件大小不能超过 ${maxs}KB!`);
+          return false
+        }
+        if (fileSize < mins ) {
+          this.$message.error(`上传文件大小不能小于 ${mins}KB!`);
           return false
         }
         file.is_pass = true;
@@ -70,22 +84,17 @@
       	}
       },
       handleUpload( rand, file ) {
-        console.log( "handleUpload")
         if( !file.is_pass ) return;
         let that = this
-        // 100k
-        compressImg( file, 300 ).then( nfile=>{
-           console.log( "nfile", nfile)
-           const formData = new FormData()
-           formData.append('avatar', nfile )
-           this.$message.successMsg('文件开始上传!', 1);
-           uploadImg( that.fileMd5, formData ).then( res=>{
-             that.onupload = false
-             if( res.code== 200){
-               that.$emit('onFinish', res.data.url)
-             }
-           })
-        } )
+        const formData = new FormData()
+        formData.append('avatar', file )
+        this.$message.successMsg('文件开始上传!', 1);
+        uploadImg( that.fileMd5, formData ).then( res=>{
+         that.onupload = false
+         if( res.code== 200){
+           that.$emit('onFinish', res.data.url)
+         }
+        })
       }
     }
   }

+ 1 - 1
src/containers/center/exam/index.vue

@@ -45,7 +45,7 @@
 
                   <div class="mark" >
                     <el-checkbox v-model="currentQuestion.marked" @change="changeMark" :checked="currentQuestion.marked">
-                      <span class="red">*</span> 题目标注{{currentQuestion.marked }}
+                      <span class="red">*</span> 题目标注
                     </el-checkbox>
                   </div>
                 </div>

+ 94 - 3
src/containers/center/market/index.vue

@@ -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>