2011南方航空求职礼包:警惕虚假信息与误导

需积分: 9 3 下载量 139 浏览量 更新于2024-08-01 收藏 480KB PDF 举报
"南方航空2011求职大礼包.pdf"是一份针对应届毕业生的求职资源集合,由应届生求职网YingJieSheng.COM编撰。该文档旨在帮助毕业生了解和准备2011年的校园招聘活动,提供了南方航空以及其他知名企业的招聘动态和信息。内容包括: 1. 应届生论坛南方航空版:提供了一个专门的论坛(http://bbs.yingjiesheng.com/forum-775-2.html),学生们可以在这里讨论南方航空的招聘信息、求职策略以及面试经验等。 2. 名企2011校园招聘进度表:包含了南方航空在内的多家企业的校园招聘时间线,帮助学生跟踪心仪公司的招聘进度。 3. 求职大礼包2011版:这部分着重于南方航空篇,为求职者提供了定制化的求职资源,如行业企业介绍、求职指南、简历模板等,旨在提升求职者的准备效率和竞争力。 4. 注意事项与警告:应届生求职网强调,由于网络上存在假冒的求职大礼包,这些内容可能存在过期信息和未经许可的求职培训广告,可能会误导求职者。他们提醒读者,应以官方平台(YingJieSheng.COM)发布的资料为准,并指出假冒指南存在以下问题: - 行业企业介绍章节:假冒版本只有空目录和广告链接,而正版提供的是详细的企业信息下载地址。 - 搜索引擎使用技巧:正版指南提供了应届生职位全文搜索引擎的使用方法,而假冒版本缺失这一重要环节。 - 简历和求职信模板:正版提供格式清晰的模板,便于学习和应用,而假冒版本的模板混乱,难以阅读。 这份南方航空2011求职大礼包是应届生求职者获取行业资讯、规划求职路径和提升求职技能的重要参考资料,但需警惕网络上的虚假信息,确保从可靠渠道获取最新、准确的指导。

代码片段:<view class="price_box_item"> <block v-for="(item,index) in priceData" :key="index" > <view class="item_con bg-image" :style="{'background-image':url(${OSSImgUrl}/images/20230403_newApp/box/offline_price_item_bg.png)}" @tap.stop="onSelectPrice(item, index)" > <view class="price_1">¥</view> <view class="price_2">{{item.price / 100}}</view> <image class="price_active" :src="${OSSImgUrl}/images/20230403_newApp/box/price_active.png" v-if="selectedPriceCode == item.priceCode" ></image> </view> </block> </view> <confirm-order ref="offlinePay" :payData="payData" payType="offline" @onPay="onPay" ></confirm-order>// 支付组件 import ConfirmOrder from '@/components/confirm-order/confirm-order.vue';// 选择价位 onSelectPrice(item, index){ var that = this; uni.$u.throttle( ()=> { if(item.priceCode == this.selectedPriceCode) return this.selectedPriceCode = item.priceCode; this.payData.price = item.price / 100; console.log('this.payData.price', index) this.priceIndex = index; this.payData.name = item.price / 100 + '元双盲盒大礼包' },1000) }, 怎么通过选择不同的价位,选择对应的优惠券,优惠券在支付组件中,以下是组件中的优惠券代码片段:async mounted() { this.getAddressList(); this.getCouponList1(); }, computed:{ discountPrice(){ //优惠金额 let selectedCoupon = this.selectedCoupon; let price = this.payData.price; if(selectedCoupon.type === 1){ //折扣 return (price * ((100 - selectedCoupon.discount) / 100)).toFixed(2) }else if(selectedCoupon.type === 2){ //满减 return (selectedCoupon.subPrice / 100).toFixed(2) }else{ return 0.00 } } },

2023-06-01 上传