| 1234567891011121314151617181920212223242526 |
- Component({
- properties: {
- deleteItem: {
- type: Function
- },
- list: {
- type: Array
- },
- },
- options: {
- addGlobalClass: true,
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- data: {
- tagColor: {
- '待跟进': '#FA8C16',
- '跟进中': '#52C41A',
- '已成交': '#ffffff',
- '丢单': '#FF3B30',
- }
- },
- })
|