You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
427 B
18 lines
427 B
function images(status,value) {
|
|
if(value<6){
|
|
return status != '0' ? '/pages/assets/img/jichu.png':'/pages/assets/img/jichu1.png'
|
|
}else if(value>5 && value<9){
|
|
return status != '0' ? '/pages/assets/img/tese.png':'/pages/assets/img/tece1.png'
|
|
}else{
|
|
return status != '0' ? '/pages/assets/img/mofan.png':'/pages/assets/img/mofan1.png'
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
}
|