feat: 接口跟新
This commit is contained in:
62
src/api/huiShangyp/onlineConsultationRoom.js
Normal file
62
src/api/huiShangyp/onlineConsultationRoom.js
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
import request from "@/utils/request";
|
||||||
|
const api = "/mosty-api/mosty-gsxt";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 会商反馈
|
||||||
|
* @param {Object} data - 反馈参数对象
|
||||||
|
* @param {string} data.hsid - 会商ID
|
||||||
|
* @param {string} data.fknr - 反馈内容
|
||||||
|
* @returns {Promise} 返回请求结果
|
||||||
|
*/
|
||||||
|
export const wshsHsfk = (data) => {
|
||||||
|
return request({
|
||||||
|
url: api + `/wshs/hsfk`,
|
||||||
|
method: "post",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送涉嫌种类
|
||||||
|
* @param {Object} data - 发送涉嫌种类参数对象
|
||||||
|
* @param {boolean} data.flag - 标志位
|
||||||
|
* @param {string} data.id - ID
|
||||||
|
* @param {Object} data.instructionsEntity - 指令实体对象
|
||||||
|
* @param {string} [data.instructionsEntity.attachmentPath] - 附件路径
|
||||||
|
* @param {string} [data.instructionsEntity.createdAt] - 创建时间
|
||||||
|
* @param {string} [data.instructionsEntity.instructionContent] - 指令内容
|
||||||
|
* @param {string} [data.instructionsEntity.instructionLevel] - 指令级别
|
||||||
|
* @param {string} [data.instructionsEntity.instructionLevelCode] - 指令级别代码
|
||||||
|
* @param {string} [data.instructionsEntity.instructionNumber] - 指令编号
|
||||||
|
* @param {string} [data.instructionsEntity.instructionTime] - 指令时间
|
||||||
|
* @param {string} [data.instructionsEntity.instructionType] - 指令类型
|
||||||
|
* @param {string} [data.instructionsEntity.instructionTypeCode] - 指令类型代码
|
||||||
|
* @param {string} [data.instructionsEntity.issuer] - 发布者
|
||||||
|
* @param {string} [data.instructionsEntity.issuerCode] - 发布者代码
|
||||||
|
* @param {string} [data.instructionsEntity.receivingUnit] - 接收单位
|
||||||
|
* @param {string} [data.instructionsEntity.receivingUnitCode] - 接收单位代码
|
||||||
|
* @param {string} [data.instructionsEntity.status] - 状态
|
||||||
|
* @param {string} [data.instructionsEntity.title] - 标题
|
||||||
|
* @param {string} [data.instructionsEntity.unitCode] - 单位代码
|
||||||
|
* @param {string} [data.instructionsEntity.unitName] - 单位名称
|
||||||
|
* @param {string} [data.instructionsEntity.updatedAt] - 更新时间
|
||||||
|
* @param {Array<Object>} [data.personnelEntity] - 人员实体数组
|
||||||
|
* @param {string} [data.personnelEntity[].comment] - 备注
|
||||||
|
* @param {string} [data.personnelEntity[].domicilePlace] - 户籍地
|
||||||
|
* @param {string} [data.personnelEntity[].idNumber] - 身份证号
|
||||||
|
* @param {string} [data.personnelEntity[].name] - 姓名
|
||||||
|
* @param {string} [data.personnelEntity[].orderId] - 订单ID
|
||||||
|
* @param {string} [data.personnelEntity[].personTypeId] - 人员类型ID
|
||||||
|
* @param {string} [data.personnelEntity[].personTypeName] - 人员类型名称
|
||||||
|
* @param {string} [data.personnelEntity[].phoneNumber] - 电话号码
|
||||||
|
* @param {string} [data.sfzh] - 身份证号
|
||||||
|
* @returns {Promise} 返回请求结果
|
||||||
|
*/
|
||||||
|
export const sendFqzl = (data) => {
|
||||||
|
return request({
|
||||||
|
url: api + `/send/fqzl`,
|
||||||
|
method: "post",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user