index.js 524 B

1234567891011121314151617181920212223242526
  1. Component({
  2. properties: {
  3. deleteItem: {
  4. type: Function
  5. },
  6. list: {
  7. type: Array
  8. },
  9. },
  10. options: {
  11. addGlobalClass: true,
  12. },
  13. lifetimes: {
  14. attached: function () {
  15. getApp().globalData.Language.getLanguagePackage(this)
  16. }
  17. },
  18. data: {
  19. tagColor: {
  20. '待跟进': '#FA8C16',
  21. '跟进中': '#52C41A',
  22. '已成交': '#ffffff',
  23. '丢单': '#FF3B30',
  24. }
  25. },
  26. })