12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import request from '@/utils/request'
- // 提案信息-新增 proposalInfo:info:add
- export function getCaseAddFn(data) {
- return request({
- 'url': '/proposalInfo/info',
- 'method': 'post',
- 'data':data
- })
- }
- // 提案信息-列表 proposalInfo:info:add
- export function getCaseListFn(data) {
- return request({
- 'url': '/proposalInfo/info/list',
- 'method': 'get',
- 'data':data
- })
- }
- // 提案信息-详情 proposalInfo:info:query
- export function getCaseDetailFn(data) {
- return request({
- 'url': '/proposalInfo/info/'+data,
- 'method': 'get',
- })
- }
- // 提案信息-修改 proposalInfo:info:edit
- export function getCaseEditFn(data) {
- return request({
- 'url': '/proposalInfo/info/put',
- 'method': 'post',
- 'data':data
- })
- }
- // 提案信息-删除 proposalInfo:info:query
- export function getCasDelFn(data) {
- return request({
- 'url': '/proposalInfo/info/delete/'+data,
- 'method': 'get',
- })
- }
- // 提案信息-类别
- export function getCasetalbFn(data) {
- return request({
- 'url': '/category/proposal/categoryTree',
- 'method': 'get',
- 'data':data
- })
- }
- // 提案人员 委员信息-列表不分页member:info:listNoPage
- export function getInfoListFn(data) {
- return request({
- 'url': '/member/info/listNoPage',
- 'method': 'get',
- 'data':data
- })
- }
|