Browse Source

客户中心-信息查询

master
lzh 2 years ago
parent
commit
a7c8c896de
  1. 16
      supervise-customer-ui/src/router/modules/codemenu.js
  2. 48
      supervise-customer-ui/src/views/query/cx.vue
  3. 48
      supervise-customer-ui/src/views/query/orders.vue

16
supervise-customer-ui/src/router/modules/codemenu.js

@ -130,7 +130,7 @@ const codemenu = [{
}, },
children: [{ children: [{
path: '/kucun/ddcx', path: '/kucun/ddcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/orders.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '订单查询', title: '订单查询',
@ -138,7 +138,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/ckdbcx', path: '/kucun/ckdbcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '仓库调拨查询', title: '仓库调拨查询',
@ -146,7 +146,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/ddspcx', path: '/kucun/ddspcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '订单商品查询', title: '订单商品查询',
@ -154,7 +154,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/pspfcx', path: '/kucun/pspfcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '配送批发查询', title: '配送批发查询',
@ -162,7 +162,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/crkcx', path: '/kucun/crkcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '出入库查询', title: '出入库查询',
@ -170,7 +170,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/gyscx', path: '/kucun/gyscx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '供应商查询', title: '供应商查询',
@ -178,7 +178,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/kcxxcx', path: '/kucun/kcxxcx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '库存信息查询', title: '库存信息查询',
@ -186,7 +186,7 @@ const codemenu = [{
} }
}, { }, {
path: '/kucun/xscx', path: '/kucun/xscx',
component: () => import('@/views/kucun/cx.vue'), component: () => import('@/views/query/cx.vue'),
name: 'manufacturerPreference', name: 'manufacturerPreference',
meta: { meta: {
title: '销售查询', title: '销售查询',

48
supervise-customer-ui/src/views/query/cx.vue

@ -0,0 +1,48 @@
<template>
<div class="app-container">
<!-- 标题按钮部分开始 -->
<div class="tab-header webtop">
<!-- 标题 -->
<div>客户中心-信息查询</div>
<!-- start 添加修改按钮 -->
<div />
<!-- end 添加修改按钮 -->
<!-- end 详情按钮 -->
</div>
</div>
</template>
<script>
export default {
name: 'PurchaseApplicationManagementInfo',
data() {
return {
submitdisabled: false,
viewTitle: '综合数据上报',
tableKey: 0,
index: 0,
totalQuantity: '', //
amountInTotal: '', //
formobj: {},
rules: {}
}
},
created() {},
methods: {
handleReturn() {
this.formobj = {}
this.$refs['form_obj'].resetFields()
this.$emit('doback')
}
}
}
</script>
<style scoped>
.title {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
</style>

48
supervise-customer-ui/src/views/query/orders.vue

@ -0,0 +1,48 @@
<template>
<div class="app-container">
<!-- 标题按钮部分开始 -->
<div class="tab-header webtop">
<!-- 标题 -->
<div>客户中心-信息查询</div>
<!-- start 添加修改按钮 -->
<div />
<!-- end 添加修改按钮 -->
<!-- end 详情按钮 -->
</div>
</div>
</template>
<script>
export default {
name: 'PurchaseApplicationManagementInfo',
data() {
return {
submitdisabled: false,
viewTitle: '综合数据上报',
tableKey: 0,
index: 0,
totalQuantity: '', //
amountInTotal: '', //
formobj: {},
rules: {}
}
},
created() {},
methods: {
handleReturn() {
this.formobj = {}
this.$refs['form_obj'].resetFields()
this.$emit('doback')
}
}
}
</script>
<style scoped>
.title {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
</style>
Loading…
Cancel
Save