You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
// subPage/todayBill/index.js
|
|
|
|
|
|
Page({
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 页面的初始数据
|
|
|
|
|
|
*/
|
|
|
|
|
|
data: {
|
|
|
|
|
|
text: `【泰州LG冰箱】
|
|
|
|
|
|
🚻 男 18-48;女 18-45,黑户、纹身不在明处都可以、案底卡的不严➕身份证有效期内临时、消磁均可
|
|
|
|
|
|
💰 底薪2490元+成果工资+夜班津贴15元/天+特殊岗位津贴0-200元+加班工资,加班费 平时1.5倍21.47元/时、周末2倍28.62元/时、法定假日3倍42.93元/时;综合工资5300~8000元。
|
|
|
|
|
|
发薪时间:28号发放上月20号到当月19号工资,工作不满七天无工资。
|
|
|
|
|
|
📣 1. 三餐免费、365天不上班也免费2. 免费提供住宿,住宿人员班车免费接送3. 主要生产:冰箱及冰箱用压缩机,工作简单易操作详情咨询:15936360682`
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生命周期函数--监听页面加载
|
|
|
|
|
|
*/
|
|
|
|
|
|
onLoad (options) {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
|
|
|
*/
|
|
|
|
|
|
onReady () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生命周期函数--监听页面显示
|
|
|
|
|
|
*/
|
|
|
|
|
|
onShow () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生命周期函数--监听页面隐藏
|
|
|
|
|
|
*/
|
|
|
|
|
|
onHide () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生命周期函数--监听页面卸载
|
|
|
|
|
|
*/
|
|
|
|
|
|
onUnload () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
|
|
|
|
*/
|
|
|
|
|
|
onPullDownRefresh () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 页面上拉触底事件的处理函数
|
|
|
|
|
|
*/
|
|
|
|
|
|
onReachBottom () {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
selectionChangeHandler (e) {
|
|
|
|
|
|
console.log(e);
|
|
|
|
|
|
let item = e.currentTarget.dataset.item;
|
|
|
|
|
|
const query = wx.createSelectorQuery()
|
|
|
|
|
|
query.select('#copy' + item).context().exec((res) => {
|
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 用户点击右上角分享
|
|
|
|
|
|
*/
|
|
|
|
|
|
onShareAppMessage () {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|