diff --git a/ant-design-vue-jeecg/src/config/router.config.js b/ant-design-vue-jeecg/src/config/router.config.js
index 9a5f5124..acb4c3bf 100644
--- a/ant-design-vue-jeecg/src/config/router.config.js
+++ b/ant-design-vue-jeecg/src/config/router.config.js
@@ -621,30 +621,43 @@ export const constantRouterMap = [
path: '/404',
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
},
-
{
path: '/atlas',
component: () => import(/* webpackChunkName: "fail" */ '@/views/seknowgroup/SeKnowAtlasList')
},
{
- path: '/shopping/shopHome',//这里是你需要设置新窗口打开的页面的路径s
- component: () => import('@/views/shopping/shopHome'),
- },
- {
- path: '/shopping/views/clothType',//这里是你需要设置新窗口打开的页面的路径s
- component: () => import('@/views/shopping/pages/clothType'),
- },
- {
- path: '/shopping/views/sirendingzhi',//这里是你需要设置新窗口打开的页面的路径s
- component: () => import('@/views/shopping/pages/sirendingzhi'),
- },
- {
- path: '/shopping/views/ClothDetail',//这里是你需要设置新窗口打开的页面的路径s
- component: () => import('@/views/shopping/pages/clothDetail'),
- },
- {
- path: '/shopping/views/person',//这里是你需要设置新窗口打开的页面的路径s
- component: () => import('@/views/shopping/pages/gerenzhongxin'),
+ path: '/shopping',//这里是你需要设置新窗口打开的页面的路径s
+ component: () => import('@views/shopping/shopHome'),
+ redirect: '/shopping/shopHome',
+ hidden: true,
+ children: [
+ {
+ path: 'shopHome',
+ name: 'shopHome',
+ component: () => import('@views/shopping/shopHome'),
+ },
+ {
+ path: 'clothType',//这里是你需要设置新窗口打开的页面的路径s
+ name: 'clothType',
+ component: () => import('@/views/shopping/pages/clothType'),
+ },
+ {
+ path: 'sirendingzhi',//这里是你需要设置新窗口打开的页面的路径s
+ name: 'sirendingzhi',
+ component: () => import('@/views/shopping/pages/sirendingzhi'),
+ },
+ {
+ path: 'ClothDetail',//这里是你需要设置新窗口打开的页面的路径s
+ name: 'ClothDetail',
+ component: () => import('@/views/shopping/pages/clothDetail'),
+ },
+ {
+ path: 'person',//这里是你需要设置新窗口打开的页面的路径s
+ name: 'person',
+ component: () => import('@/views/shopping/pages/gerenzhongxin'),
+ },
+ ]
+
},
{
path: '/shopping/views/order',//这里是你需要设置新窗口打开的页面的路径s
diff --git a/ant-design-vue-jeecg/src/permission.js b/ant-design-vue-jeecg/src/permission.js
index 255bc2dd..6ddfcb42 100644
--- a/ant-design-vue-jeecg/src/permission.js
+++ b/ant-design-vue-jeecg/src/permission.js
@@ -18,7 +18,7 @@ const whiteList = ['/user/login','/userequip/loginequip','/user/sgin',
'/gygl/gyglzxt','/sykesjk/sykcsjkzxt','/scrysjk/scrysjkzxt','/jxrysjk/jxrysjkzxt','/jxzz/jxzzglsjkzxt','/scys/scyssjkzxt',
'/sckz/sckzzxt','/sbjm/sbjmsjkzxt','/jxgl/jxglsjkzxt','/szls/szlssjkzxt','/jxdsj/jxdsjzszxt',
'/ybgl/ybglsjkzxt','/mflgl/mflglsjkzxt','/ddcl/ddclzxt','/ddgl/ddglzxt','/dyhsc/dyhsczxt','/znyy/znyysczhgkzzrj',
- '/znyyjc/znyycjrjxt','/gdgz/gdgzzxt'] // no redirect whitelist
+ '/znyyjc/znyycjrjxt','/gdgz/gdgzzxt','/shopping/shopHome','/shopping/clothType','/shopping/sirendingzhi','/shopping/ClothDetail','/shopping/person'] // no redirect whitelist
router.beforeEach((to, from, next) => {
NProgress.start() // start progress bar
diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/admin/CustomerInvoiceList.vue b/ant-design-vue-jeecg/src/views/customerinvoice/admin/CustomerInvoiceList.vue
index 350151d8..06427403 100644
--- a/ant-design-vue-jeecg/src/views/customerinvoice/admin/CustomerInvoiceList.vue
+++ b/ant-design-vue-jeecg/src/views/customerinvoice/admin/CustomerInvoiceList.vue
@@ -105,28 +105,22 @@
- 编辑
+ 排序
+
+ 编辑
-
- 详情
-
-
- handleDelete(record.id)">
- 删除
-
-
+ 详情
+
+ handleDelete(record.id)">
+ 删除
+
+
@@ -137,13 +131,15 @@
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import CustomerInvoiceModal from './modules/CustomerInvoiceModal'
+ import CustomerInvoiceModal1 from './modules/CustomerInvoiceModal1'
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
export default {
name: 'CustomerInvoiceList',
mixins:[JeecgListMixin, mixinDevice],
components: {
- CustomerInvoiceModal
+ CustomerInvoiceModal,
+ CustomerInvoiceModal1
},
data () {
return {
@@ -248,6 +244,11 @@
},
},
methods: {
+ paixu: function (record) {
+ this.$refs.modalFormpaixu.edit(record.userId);
+ this.$refs.modalFormpaixu.title = record.userId_dictText+"测体管理";
+ this.$refs.modalFormpaixu.disableSubmit = false;
+ },
initDictConfig(){
},
getSuperFieldList(){
diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceList1.vue b/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceList1.vue
new file mode 100644
index 00000000..8e29d941
--- /dev/null
+++ b/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceList1.vue
@@ -0,0 +1,300 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 升序
+
+ 降序
+
+ 详情
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceModal1.vue b/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceModal1.vue
new file mode 100644
index 00000000..1510631e
--- /dev/null
+++ b/ant-design-vue-jeecg/src/views/customerinvoice/admin/modules/CustomerInvoiceModal1.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ant-design-vue-jeecg/src/views/customerpayment/admin/modules/CustomerPaymentList1.vue b/ant-design-vue-jeecg/src/views/customerpayment/admin/modules/CustomerPaymentList1.vue
index a969c57a..f60e0c98 100644
--- a/ant-design-vue-jeecg/src/views/customerpayment/admin/modules/CustomerPaymentList1.vue
+++ b/ant-design-vue-jeecg/src/views/customerpayment/admin/modules/CustomerPaymentList1.vue
@@ -123,7 +123,7 @@
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
-
+ import { getAction } from '@/api/manage'
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
export default {
@@ -202,6 +202,7 @@
exportXlsUrl: "/customerpayment/customerPayment/exportXls",
importExcelUrl: "customerpayment/customerPayment/importExcel",
+
},
dictOptions:{},
superFieldList:[],
diff --git a/ant-design-vue-jeecg/src/views/shopping/pages/clothDetail.vue b/ant-design-vue-jeecg/src/views/shopping/pages/clothDetail.vue
index 4b6d67cb..9ddbf7e3 100644
--- a/ant-design-vue-jeecg/src/views/shopping/pages/clothDetail.vue
+++ b/ant-design-vue-jeecg/src/views/shopping/pages/clothDetail.vue
@@ -1,4 +1,5 @@
+