123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import request from '@/utils/request'
- // 获取公告列表
- export function getannouncementList(data) {
- return request({
- url: '/notice/list',
- method: 'post',
- data
- })
- }
- // 获取公告详情
- export function getannouncemenDetail(data) {
- return request({
- url: '/notice/getById',
- method: 'post',
- data
- })
- }
- // 获取未填写周报月报列表
- export function getUnwriteReportList() {
- return request({
- url: '/weekAndMonthAlarm/getList',
- method: 'post'
- })
- }
- // 获取项目性质列表
- export function getXMXZlist(data) {
- return request({
- url: '/queryParam/xmxz',
- method: 'post',
- data
- })
- }
- // 获取首页统计数据
- export function getHomeStats(data) {
- return request({
- url: '/projects/statics',
- method: 'post',
- data
- })
- }
- // 获取轮播图
- export function getBanner(data) {
- return request({
- url: '/picture/list',
- method: 'post',
- data
- })
- }
|