Browse Source

Merge branch 'develop' into xuxiaoming

* develop:
  api路径调整

# Conflicts:
#	src/views/productionPlanning/customerInquiry/index.vue
pull/21/head
xuxiaoming 3 years ago
parent
commit
1a3f128e10
8 changed files with 8 additions and 8 deletions
  1. +1
    -1
      src/server/productionPlanning/customerForecastDemandReview.js
  2. +1
    -1
      src/server/productionPlanning/customerInquiry.js
  3. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue
  4. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/index.vue
  5. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/resourceContent/index.vue
  6. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/resourceContent/resourceLoad/index.vue
  7. +1
    -1
      src/views/productionPlanning/customerInquiry/add.vue
  8. +1
    -1
      src/views/productionPlanning/customerInquiry/upload.vue

src/server/plan/workbench/customerForecastDemandReview.js → src/server/productionPlanning/customerForecastDemandReview.js View File

@ -1,7 +1,7 @@
import { import {
get, get,
postForm postForm
} from "../../api";
} from "../api";
// 工厂列表 // 工厂列表
export const getCustomerList = (params) => get('/admin/base/customer/selectlist', params); export const getCustomerList = (params) => get('/admin/base/customer/selectlist', params);
// 产品列表 // 产品列表

src/server/plan/workbench/customerInquiry.js → src/server/productionPlanning/customerInquiry.js View File

@ -2,7 +2,7 @@ import {
get, get,
post, post,
upload upload
} from "../../api";
} from "../api";
// 工厂列表 // 工厂列表
export const getCustomerList = (params) => get('/admin/base/customer/selectlist', params); export const getCustomerList = (params) => get('/admin/base/customer/selectlist', params);
// 产品列表 // 产品列表

+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue View File

@ -26,7 +26,7 @@
</ContentContainer> </ContentContainer>
</template> </template>
<script> <script>
import { getCustomerArticleDemand } from "@/server/plan/workbench/customerForecastDemandReview";
import { getCustomerArticleDemand } from "@/server/productionPlanning/customerForecastDemandReview";
// //
import ArticleDemand from "./articleDemand"; import ArticleDemand from "./articleDemand";
// //


+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/index.vue View File

@ -64,7 +64,7 @@ import DemandPlanning from "./demandPlanning";
// //
import ResourceContent from "./resourceContent"; import ResourceContent from "./resourceContent";
// api // api
import { getMainResourceList,getSecondaryResourceList,custartSearch} from "@/server/plan/workbench/customerForecastDemandReview";
import { getMainResourceList,getSecondaryResourceList,custartSearch} from "@/server/productionPlanning/customerForecastDemandReview";
export default { export default {
components: { components: {


+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/resourceContent/index.vue View File

@ -24,7 +24,7 @@
import Evaluation from './evaluation' import Evaluation from './evaluation'
import ResourceLoad from './resourceLoad' import ResourceLoad from './resourceLoad'
import { getMpsPlan, changeMpsPlan,saveMpsPlan} from "@/server/plan/workbench/customerForecastDemandReview";
import { getMpsPlan, changeMpsPlan,saveMpsPlan} from "@/server/productionPlanning/customerForecastDemandReview";
export default { export default {
components:{ components:{


+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/resourceContent/resourceLoad/index.vue View File

@ -96,7 +96,7 @@ v-if="showDetail"
</template> </template>
<script> <script>
import Detail from "./detail.vue" import Detail from "./detail.vue"
import { getVersionList,getResourceCapacity,getCustomerDemand } from "@/server/plan/workbench/customerForecastDemandReview";
import { getVersionList,getResourceCapacity,getCustomerDemand } from "@/server/productionPlanning/customerForecastDemandReview";
import pending from "@/assets/img/pending.png" import pending from "@/assets/img/pending.png"
import published from "@/assets/img/published.png" import published from "@/assets/img/published.png"


+ 1
- 1
src/views/productionPlanning/customerInquiry/add.vue View File

@ -48,7 +48,7 @@
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getCustartlist } from "@/server/plan/workbench/customerInquiry";
import { getCustartlist } from "@/server/productionPlanning/customerInquiry";
export default { export default {
emits:[ emits:[
'setIsAdd', 'setIsAdd',


+ 1
- 1
src/views/productionPlanning/customerInquiry/upload.vue View File

@ -15,7 +15,7 @@
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { uploadExcel } from "@/server/plan/workbench/customerInquiry.js";
import { uploadExcel } from "@/server/productionPlanning/customerInquiry.js";
export default { export default {
name: 'editField', name: 'editField',
props:{ props:{


Loading…
Cancel
Save