123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <view>
- <view class="margin-lr-xl">
- <view class=" margin-top">
- <view class="text-bold" style="font-size: 44upx;color: #333333;">请选择报名类型</view>
- <view class="text-sm margin-top-sm" style="color: #999999;">请选择您想要报名的类型</view>
- </view>
- <view style="margin-top: 80px;">
- <view class="box" @click="navgo('/package/list/studyUp')">
- <view class="text-lg text-bold">学历提升</view>
- <view>
- <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
- </view>
- </view>
- <view class="box margin-top-sm" @click="navgo('/package/list/train')">
- <view class="text-lg text-bold">证书培训</view>
- <view>
- <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
- </view>
- </view>
- <view class="box margin-top-sm" @click="navgo('/package/list/zhiCheng')">
- <view class="text-lg text-bold">职称评审</view>
- <view>
- <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
- </view>
- </view>
- <view class="box margin-top-sm" @click="navgo('/package/list/baoming')">
- <view class="text-lg text-bold">培训报名</view>
- <view>
- <image src="../../static/images/my/right_icon.png" style="width: 11upx;height: 20upx;"></image>
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods:{
- navgo(e){
- uni.navigateTo({
- url:e
- })
- }
- }
- }
- </script>
- <style lang="less">
- page {
- background: #FFFFFF;
- }
- .box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #F2F2F2;
- padding: 40upx;
- border-radius: 16upx;
- }
- </style>
|