index2.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="notice adffc" v-if="show">
  3. <view class="notice-box adffc">
  4. <view class="notice-box-title">问卷答题说明</view>
  5. <image class="notice-box-close" :src="imgBase+'remind_close.png'" @click="close"></image>
  6. <view class="notice-box-content">
  7. <div class="notice-box-content-p1" style="margin-top: 36rpx;">本次问卷分为两个阶段:先完成5道团队背景调研,再完成36道PERILL团队发展动态评估题。</div>
  8. <div class="notice-box-content-p2">This questionnaire has two stages: 5 team background questions followed by the 36-item PERILL assessment.</div>
  9. <div class="notice-box-content-p1">创衡国际PERILL团队发展动态评估旨在深入了解支撑高价值团队的关键因素。这些关键因素涵盖六个维度:宗旨和动机、外部流程/系统和结构、人际关系、内部流程/系统和结构、学习、领导力。</div>
  10. <div class="notice-box-content-p2">Transcend International PERILL Assessment is designed to provide insight into the key factors that underpin high value-creating team. It consists of six elements, focusing on Purpose & Motivation, External Systems and Processes, Relationships, Internal Systems and Processes, Learning Processes, Leadership Qualities and Behaviours.</div>
  11. <div class="notice-box-content-p1">您所填写的所有信息将被保密的。</div>
  12. <div class="notice-box-content-p2">All information will be kept confidential.</div>
  13. <div class="notice-box-content-p1">以下36个陈述是对团队理想状态的描述,请您对受测团队当下在每项描述上所呈现的实际表现从两个角度进行打分:</div>
  14. <div class="notice-box-content-p2">The following 36 statements describe the ideal state of a team. Please score the actual performance of the team being tested on each statement from two perspectives:</div>
  15. <div class="notice-box-content-p1">1、同意度:1-5分共5个等级,假如您完全同意该团队当下达到了所描述的状态为5分,假如您完全不同意该团队当下达到了所描述的状态为1分</div>
  16. <div class="notice-box-content-p2">Agreement: There are 5 levels ranging from 1 to 5. Score of 5 if you completely agree that the team has reached the statement. Score of 1 if you completely disagree.</div>
  17. <div class="notice-box-content-p1">2、一年后期待:1-5分共5个等级,请评估团队在此项陈述方面一年后可达成的表现;一年后期待分不得低于现状评分。</div>
  18. <div class="notice-box-content-p2">Future expectation: Rate the performance the team can achieve in one year from 1 to 5. The future expectation score must not be lower than the current score.</div>
  19. <div class="notice-box-content-p1">完成这个问卷调查大约需要15-20分钟。如有任何疑问,欢迎添加大衡同学企业微信联系。</div>
  20. <div class="notice-box-content-p2">Completing these questions should take approximately 15-20 minutes. If you have any questions, please feel free to scan below QR code to contact with Transcend.</div>
  21. <div class="notice-box-content-info adffcac">
  22. <image class="img2" :src="imgBase+'dtsm_img2.png'"></image>
  23. <div class="notice-box-content-info-text">扫码添加大衡同学</div>
  24. </div>
  25. </view>
  26. <view class="notice-box-bottom">
  27. <view class="notice-box-bottom-btn" @click="handleKnow">我已知晓</view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. props:{
  35. show:{
  36. typeof:Boolean,
  37. default:false
  38. }
  39. },
  40. data(){
  41. return {
  42. }
  43. },
  44. methods:{
  45. close(){
  46. this.$emit('close')
  47. },
  48. handleKnow(){
  49. this.$emit('handleKnow')
  50. }
  51. }
  52. }
  53. </script>
  54. <style scoped lang="scss">
  55. .notice{
  56. position: fixed;
  57. left: 0;
  58. right: 0;
  59. top: 0;
  60. bottom: 0;
  61. background: rgba(0, 0, 0, .6);
  62. z-index: 1000;
  63. justify-content: flex-end;
  64. &-box{
  65. height: calc(100% - 317rpx);
  66. background: #FFFFFF;
  67. border-radius: 24rpx 24rpx 0rpx 0rpx;
  68. position: relative;
  69. &-title{
  70. font-family: PingFang-SC, PingFang-SC;
  71. font-weight: bold;
  72. font-size: 36rpx;
  73. color: #002846;
  74. line-height: 36rpx;
  75. text-align: center;
  76. margin-top: 48rpx;
  77. }
  78. &-close{
  79. width: 48rpx;
  80. height: 48rpx;
  81. position: absolute;
  82. top: 48rpx;
  83. right: 30rpx;
  84. }
  85. &-content{
  86. overflow-y: auto;
  87. padding: 53rpx 40rpx 182rpx;
  88. margin-top: 20rpx;
  89. &-p1{
  90. font-family: PingFangSC, PingFang SC;
  91. font-weight: 400;
  92. font-size: 28rpx;
  93. color: #002846;
  94. line-height: 48rpx;
  95. margin-top: 30rpx;
  96. }
  97. &-p2{
  98. font-family: PingFangSC, PingFang SC;
  99. font-weight: 400;
  100. font-size: 24rpx;
  101. color: #4D697E;
  102. line-height: 36rpx;
  103. margin-top: 10px;
  104. }
  105. &-info{
  106. width: 100%;
  107. padding-bottom: 38rpx;
  108. border: 1rpx solid #E6EAED;
  109. margin-top: 64rpx;
  110. .img2{
  111. width: 370rpx;
  112. height: 370rpx;
  113. margin-top: 63rpx;
  114. }
  115. &-text{
  116. width: 320rpx;
  117. height: 54rpx;
  118. background: url('https://gitee.com/hw_0302/chuang-heng-wechat-images/raw/master/dtsm_img3.png') no-repeat;
  119. background-size: 100% 100%;
  120. font-family: PingFang-SC, PingFang-SC;
  121. font-weight: bold;
  122. font-size: 24rpx;
  123. color: #7E3602;
  124. line-height: 54rpx;
  125. text-align: center;
  126. letter-spacing: 2rpx;
  127. margin-top: 35rpx;
  128. }
  129. }
  130. }
  131. &-bottom{
  132. background: #FFFFFF;
  133. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.07);
  134. padding: 20rpx 50rpx 54rpx;
  135. position: absolute;
  136. left: 0;
  137. right: 0;
  138. bottom: 0;
  139. &-btn{
  140. width: 100%;
  141. height: 88rpx;
  142. background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
  143. border-radius: 44rpx;
  144. font-family: PingFang-SC, PingFang-SC;
  145. font-weight: bold;
  146. font-size: 32rpx;
  147. color: #FFFFFF;
  148. line-height: 88rpx;
  149. text-align: center;
  150. letter-spacing: 2rpx;
  151. }
  152. }
  153. }
  154. }
  155. </style>