研发图纸文件管理系统-前端项目
longyvfengyun
2023-01-11 8943c8b711038de6066e6f5279dd4daecd104c4e
内容提交
4个文件已修改
38 ■■■■■ 已修改文件
src/pages/components/emailCard/emailCard.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/resourceManage/product/details/details.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/resourceManage/software/list.vue 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/config.js 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/components/emailCard/emailCard.vue
@@ -110,7 +110,6 @@
        return item.mail;
      });
      this.form.mailList = mailList;
      console.log(this.form.mailList);
    },
    checkForm() {
      this.$refs.formRef.validate((valid) => {
src/pages/resourceManage/product/details/details.vue
@@ -185,7 +185,7 @@
    <a-modal
      :visible="softwareDownloadShow"
      :footer="null"
      :width="600"
      :width="960"
      title="软件下载"
      :destroyOnClose="true"
      :maskClosable="false"
@@ -538,6 +538,13 @@
          customCell: this.customCell,
        },
        {
          title: "版本",
          dataIndex: "releaseNotes",
          align: "center",
          width: 340,
          customCell: this.customCell,
        },
        {
          title: "操作",
          dataIndex: "operation",
          align: "center",
src/pages/resourceManage/software/list.vue
@@ -538,6 +538,14 @@
        this.$message.error("软件说明文件解析异常");
        return false;
      }
      let info = this.resData[0];
      if(!info.boardNumber || !info.type) {
        this.$error({
          title: '系统提示',
          content: '缺少板号或软件类型,请输入板号和软件类型',
        });
        return false;
      }
      let loading = this.$layer.loading();
      const formData = new FormData();
src/router/config.js
@@ -84,16 +84,16 @@
              name: '软件中心',
              component: () => import('@/pages/resourceManage/software'),
            },
            {
              path: 'flow-card',
              name: '流程卡',
              component:()=>import('@/pages/resourceManage/flowCard')
            },
            {
              path: 'sop-file',
              name: 'SOP',
              component:()=>import('@/pages/resourceManage/sopFile')
            }
            // {
            //   path: 'flow-card',
            //   name: '流程卡',
            //   component:()=>import('@/pages/resourceManage/flowCard')
            // },
            // {
            //   path: 'sop-file',
            //   name: 'SOP',
            //   component:()=>import('@/pages/resourceManage/sopFile')
            // }
          ]
        },
        {