applyType.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view>
  3. <view class="margin-lr-xl">
  4. <view class=" margin-top">
  5. <view class="text-bold" style="font-size: 44upx;color: #333333;">请选择报名类型</view>
  6. <view class="text-sm margin-top-sm" style="color: #999999;">请选择您想要报名的类型</view>
  7. </view>
  8. <view style="margin-top: 80px;">
  9. <view class="box" @click="navgo('/package/list/studyUp')">
  10. <view class="text-lg text-bold">学历提升</view>
  11. <view>
  12. <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
  13. </view>
  14. </view>
  15. <view class="box margin-top-sm" @click="navgo('/package/list/train')">
  16. <view class="text-lg text-bold">证书培训</view>
  17. <view>
  18. <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
  19. </view>
  20. </view>
  21. <view class="box margin-top-sm" @click="navgo('/package/list/zhiCheng')">
  22. <view class="text-lg text-bold">职称评审</view>
  23. <view>
  24. <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
  25. </view>
  26. </view>
  27. <view class="box margin-top-sm" @click="navgo('/package/list/baoming')">
  28. <view class="text-lg text-bold">培训报名</view>
  29. <view>
  30. <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. }
  42. },
  43. onLoad() {
  44. },
  45. methods:{
  46. navgo(e){
  47. uni.navigateTo({
  48. url:e
  49. })
  50. }
  51. }
  52. }
  53. </script>
  54. <style lang="less">
  55. page {
  56. background: #FFFFFF;
  57. }
  58. .box {
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. background: #F2F2F2;
  63. padding: 40upx;
  64. border-radius: 16upx;
  65. }
  66. </style>