| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- 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,
- })
- };
- //扫码查询气瓶
- export const airBottleNewQpAppletBottleScan = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/scan',
- method: 'GET',
- data: data,
- })
- };
- //扫码查询实验室
- export const airBottleNewQpAppletBottleSubjectsInfo = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/subjects/info',
- 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,
- })
- };
- //入库
- export const airBottleNewQpAppletBottleStorageIn = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/storage/in',
- method: 'POST',
- data: data,
- })
- };
- //出库
- export const airBottleNewQpAppletBottleStorageOut = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/storage/out',
- method: 'POST',
- data: data,
- })
- };
- //历史记录列表
- export const airBottleNewQpAppletBottleHistoryPage = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/history/page',
- method: 'POST',
- data: data,
- })
- };
- //撤回入库
- export const airBottleNewQpAppletBottleStorageWithdraw = (data) => {
- return apiResquest({
- url: '/airbottle-new/qp/applet/bottle/storage/withdraw',
- method: 'POST',
- data: data,
- })
- };
|