Browse Source

去掉针对用户的过滤

zhanghe 7 years ago
parent
commit
03388ab010
3 changed files with 4 additions and 8 deletions
  1. 1 3
      src/models/order/order.js
  2. 1 3
      src/models/soldProduct.js
  3. 2 2
      src/utils/config.js

+ 1 - 3
src/models/order/order.js

@@ -4,7 +4,6 @@ import { query, create, update, remove } from '../../services/order';
 import { pageModel } from '../common';
 import { pageSize } from '../../utils/config';
 import { checkSearchParams } from '../../utils/utils';
-import { getLocalUser } from '../../utils/helper';
 
 export default modelExtend(pageModel, {
   namespace: 'order',
@@ -34,8 +33,7 @@ export default modelExtend(pageModel, {
   effects: {
     * query({ payload = {} }, { call, put }) {
       yield put({ type: 'changeLoading', payload: { listLoading: true } });
-      const { merchantId } = getLocalUser();
-      const { data, success } = yield call(query, { ...payload, merchantId });
+      const { data, success } = yield call(query, payload);
       if (success) {
         yield put({
           type: 'querySuccess',

+ 1 - 3
src/models/soldProduct.js

@@ -4,7 +4,6 @@ import { query } from '../services/soldProduct';
 import { pageModel } from './common';
 import { checkSearchParams } from '../utils/utils';
 import { pageSize } from '../utils/config';
-import { getLocalUser } from '../utils/helper';
 
 export default modelExtend(pageModel, {
   namespace: 'snapshot',
@@ -30,8 +29,7 @@ export default modelExtend(pageModel, {
   effects: {
     * query({ payload }, { call, put }) {
       yield put({ type: 'changeLoading', payload: { listLoading: true } });
-      const { merchantId } = getLocalUser();
-      const { data, success } = yield call(query, { ...payload, merchantId });
+      const { data, success } = yield call(query, payload);
       if (success) {
         yield put({
           type: 'querySuccess',

+ 2 - 2
src/utils/config.js

@@ -44,8 +44,8 @@ Codes.CODE_SEASON = '季';
 Codes.CODE_ITEM = '件';
 
 module.exports = {
-  //apiHost: '/api/v1',
-  apiHost: 'http://tt-cms.api.ai160.com',
+  apiHost: '/api/v1',
+  //apiHost: 'http://tt-cms.api.ai160.com',
   ossHost: 'http://efunimgs.oss-cn-beijing.aliyuncs.com',
   // apiHost: '/api',
   // 每页返回数据量