signCommit.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="sign_commit">
  3. <nav-bar title="签署承诺书"></nav-bar>
  4. <!-- 考试疫情承诺书 -->
  5. <view class="appointmentItem">
  6. <view class="title"><text class="star_red">*</text> 考试疫情承诺书</view>
  7. <view class="commitment">
  8. 本人参加“住房和城乡建设领域施工现场专业人员岗位”考试,愿意遵守疫情防控各项管理的相关要求,秉承对自己、对他人负责的原则,承担疫情防控社会责任,郑重作出以下承诺:<br/>
  9. 一、充分理解并遵守考试期间考点各项防疫安全的要求。<br/>
  10. 二、在考试前14天内,没有到过国内疫情中风险、高风险地区,未出境,不存在自境外回国情形。<br/>
  11. 三、在考试前14天内,每日自觉监测体温,体温均未出现高于37.3度的情形,无发热和呼吸道门诊就诊史。<br/>
  12. 四、在考试前14天内,未和新冠肺炎病例或疑似病例密切接触或间接接触,没有发烧、干咳、乏力、咳痰、气短、肌肉痛或关节痛、咽喉痛、头痛、寒颤、恶心或呕吐、鼻塞、腹泻、咳血、结膜充血等疑似新冠肺炎症状。<br/>
  13. 五、如出现与前述第二、三、四项任何一项不符的情形之一的,本人将及时在考前向相关管理机构报告,自觉配合采取隔离或其他防疫措施,并根据情况,自愿放弃参加考试。<br/>
  14. 六、考试当日自行做好防护工作,佩戴防护口罩。提前抵达考点,配合查验健康码、测量体温等。<br/>
  15. 七、考试期间,将严格遵守应考人员考场守则及疫情防控相关管理要求,完成考试后立即离场,不扎堆,不聚集。<br/>
  16. 八、本人承诺遵守《应考人员安全承诺书》中所有承诺内容,若因有瞒报、谎报造成新冠肺炎疫情传播的,一经查实,由本人承担相应的法律和经济责任。
  17. </view>
  18. </view>
  19. <view class="appointmentItem">
  20. <view class="title"><text class="star_red">*</text>签名板</view>
  21. <view class="dis_stys">
  22. <text style="color: #999999">请在下方签名区进行签名</text>
  23. <text @click="retDraw" mode="">清空</text>
  24. </view>
  25. <view class="handCenter">
  26. <!-- v-if="!form[item.fieldKey]" -->
  27. <canvas
  28. class="handWriting"
  29. disable-scroll="true"
  30. :catchtouchmove="true"
  31. @touchstart="uploadScaleStart"
  32. @touchmove="uploadScaleMove"
  33. @touchend="uploadScaleEnd"
  34. canvas-id="handWriting"
  35. ></canvas>
  36. <!-- <view
  37. v-else
  38. style="width: 100%; height: 100%; position: relative"
  39. >
  40. <view class="ctoples">图片</view>
  41. <image
  42. style="width: 100%; height: 100%"
  43. :src="$method.splitImgHost(form[item.fieldKey])"
  44. mode=""
  45. ></image>
  46. </view> -->
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. name: 'sign_commit',
  54. data() {
  55. return {
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .sign_commit {
  62. .appointmentItem {
  63. margin: 24rpx 0 40rpx;
  64. .title {
  65. font-size: 30rpx;
  66. font-family: PingFang SC;
  67. font-weight: 500;
  68. color: #333333;
  69. line-height: 1;
  70. margin-bottom: 16rpx;
  71. padding-left: 24rpx;
  72. .star_red {
  73. color: red;
  74. }
  75. }
  76. .place {
  77. height: 80rpx;
  78. background: #ffffff;
  79. border-radius: 16rpx;
  80. display: flex;
  81. justify-content: space-between;
  82. align-items: center;
  83. padding: 0 24rpx;
  84. }
  85. .commitment {
  86. padding: 12rpx;
  87. height: 300rpx;
  88. background: #ffffff;
  89. overflow-y: auto;
  90. }
  91. .handCenter, .dis_stys, .commitment {
  92. margin: 0rpx 24rpx;
  93. }
  94. .dis_stys {
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. margin-bottom: 16rpx;
  99. }
  100. .handCenter {
  101. .handWriting {
  102. width: 100%;
  103. height: 400rpx;
  104. background: #fff;
  105. }
  106. }
  107. }
  108. }
  109. </style>