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.
82 lines
2.8 KiB
82 lines
2.8 KiB
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.cancelappointment = exports.appointmentmini = exports.appointmenttime = exports.partyservicecenterdetail = exports.appointmentrecordmini = exports.getallmatters = exports.partyservicecenterlist = void 0;
|
|
var request = require("../../../utils/request").request;
|
|
var baseURL = require("../../../utils/config").getProductionBaseUrl();
|
|
function partyservicecenterlist(_a) {
|
|
var orgId = _a.orgId, orgType = _a.orgType;
|
|
return request("gov/org/icpartyservicecenter/partyservicecenterlist", {
|
|
method: "POST",
|
|
data: {
|
|
orgId: orgId,
|
|
orgType: orgType
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.partyservicecenterlist = partyservicecenterlist;
|
|
function getallmatters(_a) {
|
|
var gridId = _a.gridId;
|
|
return request("gov/org/icpartyservicecenter/getallmatters", {
|
|
method: "POST",
|
|
data: {
|
|
gridId: gridId
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.getallmatters = getallmatters;
|
|
function appointmentrecordmini(_a) {
|
|
var gridId = _a.gridId;
|
|
return request("gov/org/icpartyservicecenter/appointmentrecordmini", {
|
|
method: "POST",
|
|
data: {
|
|
gridId: gridId
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.appointmentrecordmini = appointmentrecordmini;
|
|
function partyservicecenterdetail(_a) {
|
|
var partyServiceCenterId = _a.partyServiceCenterId;
|
|
return request("gov/org/icpartyservicecenter/partyservicecenterdetail", {
|
|
method: "POST",
|
|
data: {
|
|
partyServiceCenterId: partyServiceCenterId
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.partyservicecenterdetail = partyservicecenterdetail;
|
|
function appointmenttime(_a) {
|
|
var matterId = _a.matterId, date = _a.date;
|
|
return request("gov/org/icpartyservicecenter/appointmenttime", {
|
|
method: "POST",
|
|
data: {
|
|
matterId: matterId,
|
|
date: date
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.appointmenttime = appointmenttime;
|
|
function appointmentmini(_a) {
|
|
var matterId = _a.matterId, appointmentDate = _a.appointmentDate, timeId = _a.timeId, remark = _a.remark, orgId = _a.orgId, orgType = _a.orgType;
|
|
return request("gov/org/icpartyservicecenter/appointmentmini", {
|
|
method: "POST",
|
|
data: {
|
|
matterId: matterId,
|
|
appointmentDate: appointmentDate,
|
|
timeId: timeId,
|
|
remark: remark,
|
|
orgId: orgId,
|
|
orgType: orgType
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.appointmentmini = appointmentmini;
|
|
function cancelappointment(_a) {
|
|
var recordId = _a.recordId;
|
|
return request("gov/org/icpartyservicecenter/cancelappointment", {
|
|
method: "POST",
|
|
data: {
|
|
recordId: recordId
|
|
}
|
|
}, baseURL);
|
|
}
|
|
exports.cancelappointment = cancelappointment;
|
|
|