与牧同行-小程序用户端
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
217 B

6 days ago
6 days ago
  1. // 通知
  2. function type(name) {
  3. if(name=='紧急'){
  4. return 'urgent'
  5. }else if(name=='重要'){
  6. return 'important'
  7. }else{
  8. return 'normal'
  9. }
  10. }
  11. module.exports = {
  12. type:type
  13. }