|
|
- import http from "@/api/http";
-
- export default {
-
- // 查看展品信息列表
- async queryShowpieceList(data) {
- return http({
- url: '/showpiece/queryShowpieceList',
- method: 'GET',
- data
- })
- },
-
- // 查看维修记录列表
- async queryRepairList(data) {
- return http({
- url: '/showpiece/queryRepairList',
- method: 'GET',
- data
- })
- },
-
- // 保养-新增保养记录
- async addMaintenance(data) {
- return http({
- url: '/showpiece/addMaintenance',
- method: 'POST',
- data,
- needToken: true
- })
- },
- }
|