wechat_template.js 444 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. /**
  3. * 微信通知模板
  4. *
  5. * @author Ellisran
  6. * @date 2020/8/10
  7. * @version
  8. */
  9. const template = {
  10. stage: '5vU3WmR90yDajbs4LWIWH4OQhunYlS1HXTiesIGxrsk',
  11. change: '',
  12. };
  13. const status = {
  14. check: '待审批',
  15. back: '退回',
  16. success: '通过',
  17. };
  18. const tips = {
  19. check: '需要您审批',
  20. back: '审批退回',
  21. success: '审批通过',
  22. };
  23. module.exports = {
  24. template,
  25. status,
  26. tips,
  27. };