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.
22 lines
480 B
22 lines
480 B
let statusDefines = [
|
|
{str:"无",color: "#FF0000",},
|
|
{str:"待跟进",color: "#D49B4B",},
|
|
{str:"跟进中",color:"#41CF41"},
|
|
{str:"已成交",color:"#333333"},
|
|
{str:"无效",color:"#FF0000"},
|
|
{str:"其他",color:"#999999"},
|
|
]
|
|
|
|
let tabs = [
|
|
{name:"所有客户"},{name:"已成交"},{name:"跟进中"},{name:"待跟进"}
|
|
]
|
|
|
|
let infoTitles = [
|
|
"客户名称","客户需求","客户行业","所在城市","跟进状态"
|
|
];
|
|
|
|
export default{
|
|
tabs,
|
|
infoTitles,
|
|
statusDefines
|
|
}
|