index2.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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="img2" :src="imgBase+'dtsm_img2.png'"></image>
  21. <div class="notice-box-content-info-text">扫码添加大衡同学</div>
  22. </div>
  23. </view>
  24. <view class="notice-box-bottom">
  25. <view class="notice-box-bottom-btn" @click="handleKnow">我已知晓</view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. props:{
  33. show:{
  34. typeof:Boolean,
  35. default:false
  36. }
  37. },
  38. data(){
  39. return {
  40. }
  41. },
  42. methods:{
  43. close(){
  44. this.$emit('close')
  45. },
  46. handleKnow(){
  47. this.$emit('handleKnow')
  48. }
  49. }
  50. }
  51. </script>
  52. <style scoped lang="scss">
  53. .notice{
  54. position: fixed;
  55. left: 0;
  56. right: 0;
  57. top: 0;
  58. bottom: 0;
  59. background: rgba(0, 0, 0, .6);
  60. z-index: 1000;
  61. justify-content: flex-end;
  62. &-box{
  63. height: calc(100% - 317rpx);
  64. background: #FFFFFF;
  65. border-radius: 24rpx 24rpx 0rpx 0rpx;
  66. position: relative;
  67. &-title{
  68. font-family: PingFang-SC, PingFang-SC;
  69. font-weight: bold;
  70. font-size: 36rpx;
  71. color: #002846;
  72. line-height: 36rpx;
  73. text-align: center;
  74. margin-top: 48rpx;
  75. }
  76. &-close{
  77. width: 48rpx;
  78. height: 48rpx;
  79. position: absolute;
  80. top: 48rpx;
  81. right: 30rpx;
  82. }
  83. &-content{
  84. overflow-y: auto;
  85. padding: 53rpx 40rpx 182rpx;
  86. margin-top: 20rpx;
  87. &-p1{
  88. font-family: PingFangSC, PingFang SC;
  89. font-weight: 400;
  90. font-size: 28rpx;
  91. color: #002846;
  92. line-height: 48rpx;
  93. margin-top: 30rpx;
  94. }
  95. &-p2{
  96. font-family: PingFangSC, PingFang SC;
  97. font-weight: 400;
  98. font-size: 24rpx;
  99. color: #4D697E;
  100. line-height: 36rpx;
  101. margin-top: 10px;
  102. }
  103. &-info{
  104. width: 100%;
  105. padding-bottom: 38rpx;
  106. border: 1rpx solid #E6EAED;
  107. margin-top: 64rpx;
  108. .img2{
  109. width: 370rpx;
  110. height: 370rpx;
  111. margin-top: 63rpx;
  112. }
  113. &-text{
  114. width: 320rpx;
  115. height: 54rpx;
  116. background: url('https://gitee.com/hw_0302/chuang-heng-wechat-images/raw/master/dtsm_img3.png') no-repeat;
  117. background-size: 100% 100%;
  118. font-family: PingFang-SC, PingFang-SC;
  119. font-weight: bold;
  120. font-size: 24rpx;
  121. color: #7E3602;
  122. line-height: 54rpx;
  123. text-align: center;
  124. letter-spacing: 2rpx;
  125. margin-top: 35rpx;
  126. }
  127. }
  128. }
  129. &-bottom{
  130. background: #FFFFFF;
  131. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.07);
  132. padding: 20rpx 50rpx 54rpx;
  133. position: absolute;
  134. left: 0;
  135. right: 0;
  136. bottom: 0;
  137. &-btn{
  138. width: 100%;
  139. height: 88rpx;
  140. background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
  141. border-radius: 44rpx;
  142. font-family: PingFang-SC, PingFang-SC;
  143. font-weight: bold;
  144. font-size: 32rpx;
  145. color: #FFFFFF;
  146. line-height: 88rpx;
  147. text-align: center;
  148. letter-spacing: 2rpx;
  149. }
  150. }
  151. }
  152. }
  153. </style>