123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import request from '@/common/request.js'
- // 添加客户
- export function Save(data) {
- return request({
- url: '/organization/khjbxx',
- method: 'post',
- data: data
- })
- }
- // 客户列表
- export function List(data) {
- return request({
- url: '/organization/khjbxx/list',
- method: 'get',
- data: data
- })
- }
- // 查询养老机构_客户_基本信息列表
- export function listKhjbxx(data) {
- return request({
- url: '/organization/khjbxx/list',
- method: 'get',
- data: data
- })
- }
- // 新增养老机构_客户_基本信息
- export function addKhjbxx(data) {
- return request({
- url: '/organization/khjbxx',
- method: 'post',
- data: data
- })
- }
- // 修改养老机构_客户_基本信息
- export function updateKhjbxx(data) {
- return request({
- url: '/organization/khjbxx',
- method: 'put',
- data: data
- })
- }
- // 删除养老机构_客户_基本信息
- export function delKhjbxx(id) {
- return request({
- url: '/organization/khjbxx/' + id,
- method: 'delete'
- })
- }
- // 查询养老机构_客户_基本信息详细
- export function getKhjbxx(id) {
- return request({
- url: '/organization/khjbxx/' + id,
- method: 'get'
- })
- }
- /**
- * ---------------------------------------------------------------------------------------------------------------
- */
- // 查询养老机构_客户_家庭信息列表
- export function listJtxx(query) {
- return request({
- url: '/organization/jtxx/list',
- method: 'get',
- params: query
- })
- }
- // 新增养老机构_客户_家庭信息
- export function addJtxx(data) {
- return request({
- url: '/organization/jtxx',
- method: 'post',
- data: data
- })
- }
- // 修改养老机构_客户_家庭信息
- export function updateJtxx(data) {
- return request({
- url: '/organization/jtxx',
- method: 'put',
- data: data
- })
- }
- // 删除养老机构_客户_家庭信息
- export function delJtxx(id) {
- return request({
- url: '/organization/jtxx/' + id,
- method: 'delete'
- })
- }
- // 查询养老机构_客户_家庭信息详细
- export function getJtxx(id) {
- return request({
- url: '/organization/jtxx/' + id,
- method: 'get'
- })
- }
- /**
- * ---------------------------------------------------------------------------------------------------------------
- */
|