阿里巴巴2013求职攻略:笔试面试全面解析

需积分: 0 3 下载量 154 浏览量 更新于2024-07-27 收藏 1.01MB PDF 举报
"《阿里巴巴2013求职大礼包》是一份专门为应届毕业生准备的求职资料集,由应届生求职网 YingJieSheng.COM 编制。这份礼包包含了阿里巴巴公司的详细介绍、笔试与面试经验分享,以及各类岗位的考题和参考答案,对于有意加入阿里巴巴的学生具有很高的实用价值。 首先,礼包的章节详细介绍了阿里巴巴集团,包括其概况、高级管理层构成、发展历程(大事年表)、企业文化以及所获得的奖励和荣誉,帮助求职者全面了解公司背景和价值观。 在笔试部分,礼包提供了丰富的资源,涵盖了销售类培训生、非技术类职位的笔试题,如中科大、南京大学的技术笔试题目,以及JAVA、Oracle DBA等技术岗位的面试题目和参考答案。这些题目涉及到算法、编程、数据库管理等多个技能领域,对备考者具有针对性指导。 面试经验分享是该礼包的重要组成部分,收录了2010-2012年甚至更早的面试经历,包括技术、销售、财务、研发等不同部门的面试流程、技巧和常见问题。通过阅读这些内容,求职者可以学习到实战中的应对策略,提高面试成功率。 无论是笔试还是面试,礼包都展示了阿里巴巴对员工能力的全面考察,包括团队合作、技术能力、解决问题的能力以及对公司理念的理解。对于求职者来说,这份大礼包不仅是备考工具,也是了解阿里巴巴工作环境和企业文化的窗口,有助于他们做出明智的职业选择。 《阿里巴巴2013求职大礼包》是一份极具实用价值的资源,对于正在或计划申请阿里巴巴工作的应届毕业生,是必不可少的学习材料。"

代码片段:<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 上传