Administrator
2022-03-23 233a49a2d6cc42606e05da8abceaab62d568598e
新增 docker-compose.yml 文件
1 files modified
3 files added
61 ■■■■ changed files
docker-compose.yml 11 ●●●●● patch | view | raw | blame | history
src/config/website.js 22 ●●●●● patch | view | raw | blame | history
src/views/report/announcementReport.vue 14 ●●●●● patch | view | raw | blame | history
src/views/report/designer.vue 14 ●●●●● patch | view | raw | blame | history
docker-compose.yml
New file
@@ -0,0 +1,11 @@
version: '3.1'
services:
  zhba_vue:
    image: zhba-vue:latest
    deploy:
      replicas: 1
      update_config:
        parallelism: 2
        delay: 10s
    ports:
      - "80:80"
src/config/website.js
@@ -33,11 +33,9 @@
    isFirstPage: false,
    fistPage: fistPage,
    //首页跳转数据
    homePage: [
        {
    homePage: [{
            userName: 'administrator',
            list: [
                {
            list: [{
                    label: '保安员管理',
                    value: '/securityGuard/index',
                    imgs: 'url(/img/glba.jpg)'
@@ -60,8 +58,7 @@
                },]
        }, {
            userName: '保安',
            list: [
                {
            list: [{
                    label: '保安员信息',
                    value: '/securityMan/index',
                    imgs: 'url(/img/yijianbaoj.jpg)'
@@ -85,8 +82,7 @@
        },
        {
            userName: '未持证保安',
            list: [
                {
            list: [{
                    label: '保安员信息',
                    value: '/securityMan/index',
                    imgs: 'url(/img/yijianbaoj.jpg)'
@@ -110,8 +106,7 @@
        },
        {
            userName: '保安公司管理员',
            list: [
                {
            list: [{
                    label: '智能分析',
                    value: '/securityAnalysis/index',
                    imgs: 'url(/img/glgz.jpg)'
@@ -134,8 +129,7 @@
                },]
        }, {
            userName: '公安管理员',
            list: [
                {
            list: [{
                    label: '智能分析',
                    value: '/securityAnalysis/index',
                    imgs: 'url(/img/glgz.jpg)'
@@ -174,6 +168,6 @@
    authUrl: 'http://localhost/blade-auth/oauth/render',
    // 流程设计器地址
    flowDesignUrl: 'http://localhost:9999',
    // 报表设计器地址(cloud端口为8108,boot端口为80)
    reportUrl: 'http://localhost:8108/ureport',
    // 报表设计器地址(cloud端口为8108,boot端口为81)
    reportUrl: 'http://localhost:81/ureport',
}
src/views/report/announcementReport.vue
New file
@@ -0,0 +1,14 @@
<template>
<iframe src="https://web.byisf.com/api/blade-report/ureport/preview?_u=blade-notice.ureport.xml" style="width: 100%;height: 100%" frameborder="0"></iframe>
</template>
<script>
//占位路由 公告报表
export default {
}
</script>
<style>
</style>
src/views/report/designer.vue
New file
@@ -0,0 +1,14 @@
<template>
<iframe src="http://localhost:81/ureport/designer" style="width: 100%;height: 100%" frameborder="0"></iframe>
</template>
<script>
//占位路由 报表配置
export default {
}
</script>
<style>
</style>