123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- import request from '@/utils/request'
- /**
- * 查询标签
- * @param {*} data
- * @returns
- */
- export function queryLabelInfoList(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/list`,
- method: 'post',
- data
- })
- }
- /**
- * 查询标签分页
- * @param {*} data
- * @returns
- */
- export function queryLabelInfoQuery(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/query`,
- method: 'post',
- data
- })
- }
- /**
- * 标签新增
- * @param {*} data
- * @returns
- */
- export function tagAdd(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/save`,
- method: 'post',
- data
- })
- }
- /**
- * 标签修改
- * @param {*} data
- * @returns
- */
- export function tagUpdate(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/update`,
- method: 'post',
- data
- })
- }
- /**
- * 标签详情
- * @param {*} data
- * @returns
- */
- export function tagInfo(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/info`,
- method: 'post',
- data
- })
- }
- /**
- * 标签删除
- * @param {*} data
- * @returns
- */
- export function tagDel(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/labelInfo/del`,
- method: 'post',
- data
- })
- }
- /**
- * 标签分类
- * @param {*} data
- * @returns
- */
- export function categoryLabeTree(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/categoryLabel/tree`,
- method: 'post',
- data
- })
- }
- /**
- * 分页查询疾病
- * @param {*} parameter
- * @returns
- */
- export function queryDiseaseByPage(parameter) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/disease/query`,
- method: 'post',
- data: parameter
- })
- }
- /**
- * 获取根据患者编号获取标签
- * @param {*} data
- * @returns
- */
- export function queryPatientLabel(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/patientLabel`,
- method: 'post',
- data
- })
- }
- /**
- * 查询数据标签
- * @param {*} data
- * @returns
- */
- export function queryLabelDataList(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/dataList`,
- method: 'post',
- data
- })
- }
- /**
- * 通过用户标签获取用户
- * @param {*} data
- * @returns
- */
- export function queryUserByLabelId(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/labelPatient`,
- method: 'post',
- data
- })
- }
- export function start2stopByTagID(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/labelRule/data/run/start2stop`,
- method: 'post',
- data
- })
- }
- export function getTagsLogById(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/rule/label/log/getById`,
- method: 'post',
- data
- })
- }
- /**
- * 添加备注
- * @param {*} data
- * @returns
- */
- export function addCrmRemark(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/crm/remark/add`,
- method: 'post',
- data
- })
- }
- /**
- * 早筛活动
- * @param {*} data
- * @returns
- */
- export function queryActivity(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/dataList/activity`,
- method: 'post',
- data
- })
- }
- /**
- * 早筛活动标签列表
- * @param {*} data
- * @returns
- */
- export function labelHistoryPatient(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/labelHistoryPatient`,
- method: 'post',
- data
- })
- }
- /**
- * 查询
- * @param {*} data
- * @returns
- */
- export function searchLabelHistoryPatient(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/patient/label/dataList/search`,
- method: 'post',
- data
- })
- }
|