123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import request from '@/utils/request'
- // 周报列表--获取条件
- export function getWeeklyCondition(data) {
- return request({
- url: '/weekReport/index',
- method: 'post',
- data
- })
- }
- // 周报列表--获取列表
- export function getWeeklyList(data) {
- return request({
- url: '/weekReport/getList',
- method: 'post',
- data
- })
- }
- // 周报录入--获取数据
- export function getWeeklyById(data) {
- return request({
- url: '/weekReport/getBySubId',
- method: 'post',
- data
- })
- }
- // 周报录入--保存数据
- export function saveWeekly(data) {
- return request({
- url: '/weekReport/save',
- method: 'post',
- data
- })
- }
- // 周报录入--删除数据
- export function delWeelkyItem(data) {
- return request({
- url: "/weekReport/del",
- method: 'post',
- data
- })
- }
- // 月报列表--获取列表
- export function getMonthlyList(data) {
- return request({
- url: '/monthReport/getList',
- method: 'post',
- data
- })
- }
- // 月报录入--获取数据
- export function getMonthlyById(data) {
- return request({
- url: '/monthReport/getById',
- method: 'post',
- data
- })
- }
- // 月报录入--保存数据
- export function saveMonthly(data) {
- return request({
- url: '/monthReport/save',
- method: 'post',
- data
- })
- }
- // 月报录入--删除数据
- export function delMonthlyItem(data) {
- return request({
- url: "/monthReport/del",
- method: 'post',
- data
- })
- }
- // 年度计划--获取条件
- export function getYearlyCondition(data) {
- return request({
- url: '/annualPlan/index',
- method: 'post',
- data
- })
- }
- // 年度计划--列表
- export function getYearlyList(data) {
- return request({
- url: '/annualPlan/getList',
- method: 'post',
- data
- })
- }
- //年度计划--获取详情
- export function getYearlyById(data) {
- return request({
- url: '/annualPlan/getById',
- method: 'post',
- data
- })
- }
- // 年度计划--保存数据
- export function saveYearly(data) {
- return request({
- url: '/annualPlan/save',
- method: 'post',
- data
- })
- }
- // 周报录入--项目查询
- export function getWeeklyByProject(data) {
- return request({
- url: '/weekReport/queryReportWeek',
- method: 'post',
- data
- })
- }
- // 月报录入--项目查询
- export function getMonthlyByProject(data) {
- return request({
- url: '/monthReport/queryReportMonth',
- method: 'post',
- data
- })
- }
- // 年度计划--项目查询
- export function getYearlyByProject(data) {
- return request({
- url: '/annualPlan/queryBySudId',
- method: 'post',
- data
- })
- }
|