const wxml = (jobDetail) => {
console.log(jobDetail.storeJob.hourlyPay);
// debugger;
var str = ''
for (var i = 0; i < jobDetail.storeJob.jobSpecialLabelNames.length; i++) {
str += `
` + jobDetail.storeJob.jobSpecialLabelNames[i] + `
`
}
//
//
return `
` + jobDetail.storeJob.jobName + `
` + jobDetail.storeJob.hourlyPay + `
` + jobDetail.storeJob.monthlyPay + `
` + str + `
查看详情
`
}
{/* */}
// return `
//
//
//
//
//
//
// yeah!12
//
//
//
// `
const style = {
container: {
width: 300,
height: 240,
lingHeight: 1,
backgroundColor: "#f8f8f8",
},
df: {
width: 300,
height: 30,
padding: 12,
marginTop: 10,
flexDirection: 'row',
},
df1: {
width: 300,
height: 30,
padding: 12,
marginTop: 10,
flexDirection: 'row',
},
df2: {
width: 300,
height: 30,
padding: 12,
marginTop: 10,
flexDirection: 'row',
},
df4: {
width: 300,
height: 30,
padding: 12,
marginTop: 10,
flexDirection: 'row',
},
logo: {
width: 30,
height: 30,
},
next: {
width: 12,
height: 12,
marginLeft: 54,
marginTop: 3,
},
dib2: {
width: 32,
height: 32,
borderWidth: 1,
borderColor: '#fff',
borderStyle: 'dashed'
},
itembox: {
width: 184,
height: 24,
},
itemboxTag: {
width: 300,
height: 24,
flexDirection: 'row',
},
text: {
width: 180,
height: 30,
color: '#1a1a1a',
marginTop: 4,
marginLeft:8,
fontSize: 20,
},
text1: {
width: 180,
height: 30,
marginLeft: 10,
marginTop: 30,
fontSize: 16,
},
tag: {
width: 64,
height: 20,
marginRight: 10,
backgroundColor: 'rgba(212,212,212,0.50)',
borderRadius: 16,
fontSize: 12,
lineHeight: 20,
color: '#353535',
textAlign: 'center',
},
money: {
width: 180,
height: 36,
fontSize: 24,
fontWeight: 'blod',
fontWeight: 700,
color: '#ff6a00',
},
moneyD: {
width: 180,
height: 24,
fontSize: 16,
},
detail: {
color: '#353535',
width: 180,
height: 24,
fontSize: 12,
}
};
function getText(str) {
return str
};
module.exports = {
wxml,
style
}