1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import { HcApi } from '../../request/index'
- export default {
- //分页
- async getPage(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/page',
- method: 'get',
- params: form,
- })
- },
- async getDetail(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/detail',
- method: 'get',
- params: form,
- })
- },
- async save(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/save',
- method: 'post',
- data: form,
- })
- },
- async update(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/update',
- method: 'post',
- data: form,
- })
- },
- async remove(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/remove',
- method: 'post',
- params: form,
- })
- },
-
- async getServiceHtml(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/getServiceHtml',
- method: 'get',
- params: form,
- })
- },
- async saveServiceData(form) {
- return HcApi({
- url: '/api/blade-manager/serviceplan/saveServiceData',
- method: 'post',
- data: form,
- })
- },
- async getHtmlBus(form) {
- return HcApi({
- url: '/api//blade-manager/serviceplan/get-html-buss-cols',
- method: 'post',
- data: form,
- })
- },
- }
|