11111111
This commit is contained in:
@@ -259,60 +259,42 @@
|
||||
// name: "/order/index",
|
||||
// path: "/order/index"
|
||||
// },
|
||||
|
||||
|
||||
{
|
||||
alwaysShow: true,
|
||||
component: "print",
|
||||
meta: {
|
||||
icon: "el-icon-menu",
|
||||
title: "打印电子卡",
|
||||
title: "电子卡管理",
|
||||
},
|
||||
name: "/print/index",
|
||||
path: "/print/index"
|
||||
}
|
||||
name: "/print",
|
||||
path: "/print",
|
||||
children: [{
|
||||
alwaysShow: true,
|
||||
component: "index",
|
||||
meta: {
|
||||
icon: "el-icon-help",
|
||||
title: "打印电子卡",
|
||||
},
|
||||
name: "/print/index",
|
||||
path: "/print/index",
|
||||
},
|
||||
{
|
||||
alwaysShow: true,
|
||||
component: "print",
|
||||
meta: {
|
||||
icon: "el-icon-menu",
|
||||
title: "打印企业卡",
|
||||
},
|
||||
name: "/print/enterpriseCrad",
|
||||
path: "/print/enterpriseCrad"
|
||||
},
|
||||
|
||||
|
||||
]
|
||||
},
|
||||
|
||||
// {
|
||||
// alwaysShow: true,
|
||||
// component: "statisticalReport",
|
||||
// meta: {
|
||||
// icon: "el-icon-menu",
|
||||
// title: "统计报表",
|
||||
// },
|
||||
// name: "/statisticalReport/index",
|
||||
// path: "/statisticalReport/index",
|
||||
// children: [
|
||||
|
||||
// {
|
||||
// alwaysShow: true,
|
||||
// component: "index",
|
||||
// meta: {
|
||||
// icon: "el-icon-help",
|
||||
// title: "提货卡汇总",
|
||||
// },
|
||||
// name: "/statisticalReport/index",
|
||||
// path: "/statisticalReport/index",
|
||||
// },
|
||||
// {
|
||||
// alwaysShow: true,
|
||||
// component: "collectionSummary",
|
||||
// meta: {
|
||||
// icon: "el-icon-help",
|
||||
// title: "提货汇总",
|
||||
// },
|
||||
// name: "/statisticalReport/collectionSummary",
|
||||
// path: "/statisticalReport/collectionSummary",
|
||||
// },
|
||||
// {
|
||||
// alwaysShow: true,
|
||||
// component: "deliveryDetails",
|
||||
// meta: {
|
||||
// icon: "el-icon-help",
|
||||
// title: "客户提货明细",
|
||||
// },
|
||||
// name: "/statisticalReport/deliveryDetails",
|
||||
// path: "/statisticalReport/deliveryDetails",
|
||||
// },
|
||||
// ]
|
||||
// },
|
||||
],
|
||||
};
|
||||
},
|
||||
|
||||
@@ -287,7 +287,15 @@ export const constantRoutes = [{
|
||||
meta: {
|
||||
title: '打印电子卡'
|
||||
}
|
||||
}, ]
|
||||
}, {
|
||||
path: '/print/enterpriseCrad',
|
||||
component: () =>
|
||||
import('@/views/print/enterpriseCrad.vue'),
|
||||
name: 'enterpriseCrad',
|
||||
meta: {
|
||||
title: '打印企业卡'
|
||||
}
|
||||
},]
|
||||
},
|
||||
|
||||
|
||||
|
||||
56
src/views/print/enterpriseCrad.vue
Normal file
56
src/views/print/enterpriseCrad.vue
Normal file
@@ -0,0 +1,56 @@
|
||||
<template>
|
||||
<div class="main-content">
|
||||
<!-- <div class="container">
|
||||
<div class="tab-header">
|
||||
<el-form :inline="true" :model="page.params" class="demo-form-inline">
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="21">
|
||||
<el-form-item label="起始序列号">
|
||||
<el-input v-model="page.params.startnum" placeholder="" clearable />
|
||||
|
||||
</el-form-item>
|
||||
<el-form-item label="结束序列号">
|
||||
<el-input v-model="page.params.endnum" placeholder="" clearable />
|
||||
|
||||
</el-form-item>
|
||||
<el-button type="primary" @click="getPageList()">预 览</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
-->
|
||||
<div style="margin-top: 20px; width: 100%;height: 100%;">
|
||||
<iframe :src="spUrl" id="ysOpenDevice" width="100%" height="100%" allowfullscreen>
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'SupplierBankInfoIndex',
|
||||
data() {
|
||||
return {
|
||||
page:{
|
||||
params:{
|
||||
startnum:"",
|
||||
endnum:""
|
||||
}
|
||||
},
|
||||
spUrl:process.env.VUE_APP_REPORT_URL+ "/jmreport/view/905306587114299392",
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
console.log("aaaaaa",process.env.VUE_APP_REPORT_URL)
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user