123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import apis from '@/configs/http';
- import { redirectToLogin, redirectTo } from '@/common/NavFuncs';
- export default {
- namespaced: true,
- actions: {
- getStatistics({ commit },param) {
- // console.log('param1:{}',param);
- return apis.sz.post('/TOrder/getStatistics',param)
- .then(res => {
- const { data } = res;
- return data;
- });
- },
- getMainStatistics({ commit },param) {
- return apis.sz.post('/TOrder/getMainStatistics',param)
- .then(res => {
- const { data } = res;
- return data;
- });
- },
- getEquipmentListByUser({ commit },param) {
- return apis.sz.post('/TEquipment/getEquipmentListByUser',param)
- .then(res => {
- const { data } = res;
- return data;
- });
- },
- updata({ commit },param) {
- return apis.sz.post('/TEquipment/updateName',param)
- .then(res => {
- const { data } = res;
- return res;
- });
- },
- getMachineNum({ commit },param) {
- return apis.sz.post('/TEquipment/getMachineNum',param)
- .then(res => {
- const { data } = res;
- return data;
- });
- },
- }
- }
|