yangfeng
2023-09-28 0016e76c99d7f0d6355a22f2ecbc102823225633
出入库明细报错修复
2个文件已修改
10 ■■■■ 已修改文件
src/views/overview/AddOverviewDialog.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/overview/AddOverviewDialog.vue
@@ -545,7 +545,11 @@
    },
    // 操作列表
    setTableForm() {
      if (this.editConfig.title !== "新建") {
      if (
        this.editConfig.title !== "新建" &&
        this.editConfig.infomation.details &&
        this.editConfig.infomation.details.length > 0
      ) {
        const list = this.editConfig.infomation.details.map((item) => {
          return {
            ...item,
vue.config.js
@@ -14,12 +14,12 @@
  devServer: {
    proxy: {
      "/api-s": {
        target: "http://192.168.20.118:8005",
        target: "http://192.168.20.119:8005",
        ws: true,
        changeOrigin: true
      },
      "/api-wms": {
        target: "http://192.168.20.118:8005",
        target: "http://192.168.20.119:8005",
        ws: true,
        changeOrigin: true
      }