index2.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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;">创衡国际PERILL团队发展动态评估旨在深入了解支撑高价值团队的关键因素。这些关键因素涵盖六个维度:宗旨和动机、外部流程/系统和结构、人际关系、外部流程/系统和结构、学习、领导力。</div>
  8. <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>
  9. <div class="notice-box-content-p1">您所填写的所有信息将被保密的。</div>
  10. <div class="notice-box-content-p2">All information will be kept confidential.</div>
  11. <div class="notice-box-content-p1">以下36个陈述是对团队理想状态的描述,请您对受测团队当下在每项描述上所呈现的实际表现从两个角度进行打分:</div>
  12. <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>
  13. <div class="notice-box-content-p1">1、同意度:1-5分共5个等级,假如您完全同意该团队当下达到了所描述的状态为5分,假如您完全不同意该团队当下达到了所描述的状态为1分</div>
  14. <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>
  15. <div class="notice-box-content-p1">2、重要性:1-5分共5个等级,假如您认为所描述的状态对该团队当下非常重要为5分,假如您认为所描述的状态对该团队当下非常不重要为1分</div>
  16. <div class="notice-box-content-p2">Importance: There are 5 levels ranging from 1 to 5. Score of 5 if you believe that the statement is extremely significant for the team at this moment. Score of 1 if you believe it is very insignificant.</div>
  17. <div class="notice-box-content-p1">完成这个问卷调查大约需要8-10分钟。如有任何疑问,欢迎添加大衡同学企业微信联系。</div>
  18. <div class="notice-box-content-p2">Completing these questions should take approximately 10-15 minutes. If you have any questions, please feel free to contact Transcend by Wecom.</div>
  19. <div class="notice-box-content-info adffcac">
  20. <image class="img1" :src="imgBase+'dtsm_img1.png'"></image>
  21. <image class="img2" :src="imgBase+'dtsm_img2.png'"></image>
  22. <div class="notice-box-content-info-text">扫描二维码,添加我的企业微信</div>
  23. </div>
  24. </view>
  25. <view class="notice-box-bottom">
  26. <view class="notice-box-bottom-btn" @click="handleKnow">我已知晓</view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. props:{
  34. show:{
  35. typeof:Boolean,
  36. default:false
  37. }
  38. },
  39. data(){
  40. return {
  41. }
  42. },
  43. methods:{
  44. close(){
  45. this.$emit('close')
  46. },
  47. handleKnow(){
  48. this.$emit('handleKnow')
  49. }
  50. }
  51. }
  52. </script>
  53. <style scoped lang="scss">
  54. .notice{
  55. position: fixed;
  56. left: 0;
  57. right: 0;
  58. top: 0;
  59. bottom: 0;
  60. background: rgba(0, 0, 0, .6);
  61. z-index: 1000;
  62. justify-content: flex-end;
  63. &-box{
  64. height: calc(100% - 317rpx);
  65. background: #FFFFFF;
  66. border-radius: 24rpx 24rpx 0rpx 0rpx;
  67. position: relative;
  68. &-title{
  69. font-family: PingFang-SC, PingFang-SC;
  70. font-weight: bold;
  71. font-size: 36rpx;
  72. color: #002846;
  73. line-height: 36rpx;
  74. text-align: center;
  75. margin-top: 48rpx;
  76. }
  77. &-close{
  78. width: 48rpx;
  79. height: 48rpx;
  80. position: absolute;
  81. top: 48rpx;
  82. right: 30rpx;
  83. }
  84. &-content{
  85. overflow-y: auto;
  86. padding: 53rpx 40rpx 182rpx;
  87. margin-top: 20rpx;
  88. &-p1{
  89. font-family: PingFangSC, PingFang SC;
  90. font-weight: 400;
  91. font-size: 28rpx;
  92. color: #002846;
  93. line-height: 48rpx;
  94. margin-top: 30rpx;
  95. }
  96. &-p2{
  97. font-family: PingFangSC, PingFang SC;
  98. font-weight: 400;
  99. font-size: 24rpx;
  100. color: #4D697E;
  101. line-height: 36rpx;
  102. margin-top: 10px;
  103. }
  104. &-info{
  105. width: 100%;
  106. padding-bottom: 38rpx;
  107. border: 1rpx solid #E6EAED;
  108. margin-top: 17rpx;
  109. .img1{
  110. width: 100%;
  111. height: 410rpx;
  112. }
  113. .img2{
  114. width: 370rpx;
  115. height: 370rpx;
  116. margin-top: 40rpx;
  117. }
  118. &-text{
  119. width: 420rpx;
  120. height: 54rpx;
  121. background: url('https://gitee.com/hw_0302/chuang-heng-wechat-images/raw/master/dtsm_img3.png') no-repeat;
  122. background-size: 100% 100%;
  123. font-family: PingFang-SC, PingFang-SC;
  124. font-weight: bold;
  125. font-size: 24rpx;
  126. color: #7E3602;
  127. line-height: 54rpx;
  128. text-align: center;
  129. letter-spacing: 2rpx;
  130. margin-top: 30rpx;
  131. }
  132. }
  133. }
  134. &-bottom{
  135. background: #FFFFFF;
  136. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.07);
  137. padding: 20rpx 50rpx 54rpx;
  138. position: absolute;
  139. left: 0;
  140. right: 0;
  141. bottom: 0;
  142. &-btn{
  143. width: 100%;
  144. height: 88rpx;
  145. background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
  146. border-radius: 44rpx;
  147. font-family: PingFang-SC, PingFang-SC;
  148. font-weight: bold;
  149. font-size: 32rpx;
  150. color: #FFFFFF;
  151. line-height: 88rpx;
  152. text-align: center;
  153. letter-spacing: 2rpx;
  154. }
  155. }
  156. }
  157. }
  158. </style>