Commit a571c1d6 authored by Mac's avatar Mac

修改客户字段列表

parent db8216a3
......@@ -38,6 +38,7 @@
"vue-i18n": "^8.0.0",
"vue-inline-svg": "^2.0.0",
"vue-waterfall-easy": "^2.4.4",
"vuedraggable": "^2.24.3",
"weixin-js-sdk": "^1.6.0",
"xlsx": "^0.16.8",
"xlsx-style": "^0.8.13"
......
......@@ -410,6 +410,65 @@ export function SetSynvEduEmployee(data) {
})
}
/**
* 获取客户字段列表
*
*/
export function getCustomerFiledList(data) {
return request({
url: '/QYCustomer/GetCustomerFiledList',
method: 'post',
data
})
}
/**
* 设置字段状态
*
*/
export function setCustomerFiledState(data) {
return request({
url: '/QYCustomer/SetCustomerFiledState',
method: 'post',
data
})
}
/**
* 获取客户子段输入类型枚举
*
*/
export function getCustomerFieldInputTypeEnumList(data) {
return request({
url: '/QYCustomer/GetCustomerFieldInputTypeEnumList',
method: 'post',
data
})
}
/**
* 获取客户子段类型枚举
*
*/
export function getCustomerFieldTypeEnumList(data) {
return request({
url: '/QYCustomer/GetCustomerFieldTypeEnumList',
method: 'post',
data
})
}
/**
* 新增修改客户字段
*
*/
export function setCustomerFiledInfo(data) {
return request({
url: '/QYCustomer/SetCustomerFiledInfo',
method: 'post',
data
})
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment