jiangping
2023-08-11 33420911b713799abac53f3ed05a11a236a65fa5
Merge branch 'master' of ssh://139.186.142.91:29418/productDev/dmMes
已添加6个文件
已删除1个文件
已修改2个文件
74 ■■■■■ 文件已修改
.gitignore 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5_standard/src/views/tabPage/workBench.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/.gitignore 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/coderd.json 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/src/coderd.json 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/src/components/.DS_Store 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/src/components/ext/.DS_Store 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/src/views/.DS_Store 补丁 | 查看 | 原始文档 | blame | 历史
web_standard/vue.config.js 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.gitignore
@@ -3,4 +3,9 @@
/workspace.xml
/platform_web/node_modules
/platform_web/admin
/platform_web/doumeeplant_admin
/platform_web/doumeeplant_admin
*/node_modules
/web_standard/web
/web_standard/doumeeplant_web
/web_standard/.vscode
h5_standard/src/views/tabPage/workBench.vue
@@ -38,11 +38,11 @@
<script setup lang="ts">
    import { reactive, ref } from "vue"
    import { useStore } from "vuex"
    import { BrowserMultiFormatReader } from '@zxing/library'
    // import { BrowserMultiFormatReader } from '@zxing/library'
    import vTags from '@/components/common/Tags.vue'
    import vMenu from '@/components/common/Menu.vue'
    const store = useStore()
    let openCode = ref<boolean>(false)
    // let openCode = ref<boolean>(false)
    // let loadingShow = ref<boolean>(false)
    // let codeReader: any = ref(null)
@@ -181,7 +181,7 @@
    height: 100%;
    background: #f5f5f5;
    .top {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .box_notfound {
        padding-top: 300px;
web_standard/.gitignore
文件已删除
web_standard/coderd.json
对比新文件
@@ -0,0 +1,10 @@
{
  "project": 5247,
  "template": {
    "alias": "eva",
    "command": "page",
    "option": {
      "resources": "workorder_check_attr_ext"
    }
  }
}
web_standard/src/coderd.json
对比新文件
@@ -0,0 +1 @@
{}
web_standard/src/components/.DS_Store
Binary files differ
web_standard/src/components/ext/.DS_Store
Binary files differ
web_standard/src/views/.DS_Store
Binary files differ
web_standard/vue.config.js
对比新文件
@@ -0,0 +1,25 @@
// 璇︾粏閰嶇疆璇峰弬鑰僪ttps://cli.vuejs.org/zh/config/#vue-config-js
// const outputDir = process.env.VUE_APP_CONTEXT_PATH.substring(1, process.env.VUE_APP_CONTEXT_PATH.length - 1)
module.exports = {
  publicPath: process.env.VUE_APP_CONTEXT_PATH,
  // publicPath: './',
  outputDir: 'doumeeplant_web',
  // outputDir: 'web',
  assetsDir: 'static',
  lintOnSave: false,
  devServer: {
    disableHostCheck: true,
    host: '0.0.0.0',
    port: 10086,
    // port: 10086,
    proxy: {
      [process.env.VUE_APP_API_PREFIX]: {
        target: process.env.VUE_APP_BASE_URL,
        changeOrigin: true,
        pathRewrite: {
          [`^${[process.env.VUE_APP_API_PREFIX]}`]: ''
        }
      }
    }
  }
}