| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import {
- apiResquest,
- apiResquestForm,
- apiResquestJsonList,
- apiResquestFormVideo,
- apiResquestTimer
- } from '@/api/request/request.js'
- //气瓶选择分页
- export const airbottleNewQpAppletBottlePage = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/page',
- method: 'POST',
- data: data,
- })
- };
- //实验室选择分页
- export const airbottleNewQpAppletBottleSubjectsPage = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/subjects/page',
- method: 'POST',
- data: data,
- })
- };
- //气瓶详情
- export const airbottleNewQpAppletBottleDetail = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/detail',
- method: 'GET',
- data: data,
- })
- };
- //气瓶字典查询
- export const airBottleNewQpDictList = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/dict/list',
- method: 'GET',
- data: data,
- })
- };
- /*查询用户列表-下拉列表 - 无权限
- * userName : '', 名称
- * userType: '', 0.系统 1.老师 2.学生
- */
- export const systemUserSelectUser = (data) => {
- return apiResquest({
- url: '/system/user/dropList',
- method: 'POST',
- data: data,
- })
- };
- //查询学院列表
- export const getDeptDropList = (data) => {
- return apiResquest({
- url: '/system/dept/dropList',
- method: 'POST',
- data: data,
- })
- };
- //楼栋楼层
- export const systemBuildingGetTreeList = (data) => {
- return apiResquest({
- url: '/system/building/getTreeList',
- method: 'POST',
- data: data,
- })
- };
|