newsInvitationBefore.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view>
  3. <u-navbar title="面试邀请通知" ></u-navbar>
  4. <view class="company-logo">
  5. <u-avatar :src="src" size="100" mode="square"></u-avatar>
  6. <h3>湖北荆鹏软件集团有限公司</h3>
  7. </view>
  8. <view class="servicesInfo">
  9. <view class="title">
  10. <h2>面试邀请通知</h2>
  11. </view>
  12. <view class="main">
  13. <p>邹杰 您好:</p>
  14. <p>我是荆鹏集团(以下简称“公司”)的人力资源主管凡佳佳,我们近期关注到您的简历,希望与您进行一次电话沟通,以了解更多关于您的履历信息。</p>
  15. <p>我们拟在2021年7月20日 15:30-16:30时段通过电话0716-8121234与您进行沟通。</p>
  16. <p>如您该时间段有空,请点击下方同意按钮,且注意保持通讯畅通;如该时段繁忙,请点击拒绝按钮。我们将择日再向您发送沟通邀请通知。</p>
  17. <p>湖北荆鹏软件集团有限公司</p>
  18. <p>地址:荆州市沙市区江津东路附155号荆鹏软件园</p>
  19. <p>电话:0716-8111111</p>
  20. <p>我已经阅读、理解并且接受以上条款。</p>
  21. <p>日期:2021年6月30日</p>
  22. <p>人力资源部</p>
  23. </view>
  24. </view>
  25. <view class="servicesInfo-foot">
  26. <u-button class="servicesInfo-btn" shape="circle">拒绝</u-button>
  27. <u-button class="servicesInfo-btn" type="success" shape="circle">同意</u-button>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import api from './index.js'
  33. export default api;
  34. </script>
  35. <style scoped lang="scss">
  36. .company-logo{
  37. display: flex;
  38. align-items: center;
  39. padding: 30rpx;
  40. h3{
  41. font-size: 36rpx;
  42. margin-left: 20rpx;
  43. font-weight: normal;
  44. }
  45. }
  46. .servicesInfo{
  47. padding: 30rpx;
  48. .title{
  49. text-align: center;
  50. }
  51. .main{
  52. line-height:48rpx;
  53. margin-top: 20rpx;
  54. }
  55. }
  56. .servicesInfo-foot{
  57. height: 120rpx;
  58. background-color: #fff;
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. position: fixed;
  63. padding: 0 10rpx;
  64. bottom: 0;
  65. left: 0;
  66. right: 0;
  67. .servicesInfo-btn{
  68. flex: 0.5;
  69. margin: 0 10rpx;
  70. }
  71. }
  72. .newsList-time{
  73. display: flex;
  74. justify-content: center;
  75. margin-top: 40rpx;
  76. span{
  77. background-color: #c8c8c8;
  78. padding: 6rpx 16rpx;
  79. color:#fff;
  80. border-radius:10rpx;
  81. }
  82. }
  83. .newsList-item{
  84. padding: 20rpx;
  85. margin: 20rpx;
  86. background-color: #fff;
  87. border-radius: 20rpx;
  88. .newsList-head{
  89. display: flex;
  90. justify-content: space-between;
  91. padding-bottom: 20rpx;
  92. span{
  93. color:#FF6D58;
  94. min-width: 80rpx;
  95. text-align: right;
  96. }
  97. }
  98. .newsList-main{
  99. padding-bottom: 20rpx ;
  100. color:#999;
  101. }
  102. .newsList-foot{
  103. padding-top: 20rpx;
  104. border-top: 1px solid #f7f7f7;
  105. display: flex;
  106. justify-content: space-between;
  107. }
  108. }
  109. </style>