zhuliu há 3 meses atrás
pai
commit
2b8b843f08

+ 6 - 2
src/views/AITools/OADefense/OADefense1.vue

@@ -58,9 +58,13 @@
                     <div style="padding: 10px 0;">
                         <div><b>相关文件(申请文件和对比文件):(<span style="font-size:18px">非必填</span>)</b></div>
                         <div style="font-size:16px;color:red">
-                            注:1.如果上传了相关文件则优先使用上传的文件,如果不上传则系统会自动获取文件
+                            注:
+                            <br>
+                            1.如果上传了相关文件则优先使用上传的文件,如果不上传则系统会自动获取文件
                             <br>
                             2.上传的申请文件要包含本申请号码,对比文件包含对比文件序号或者名称
+                            <br>
+                            3. 扫描件暂时无法识别,请上传非扫描件
                         </div>
                     </div>
                     <div>
@@ -121,7 +125,7 @@
                 <!-- 结果 -->
                 <template v-else-if="result && result.code == 1001">
                     <div>
-                      <div style="font-size:16px" v-html="result.data"></div>  
+                      <div style="font-size:16px" v-html="result.data.replace('\n','<br>')"></div>  
                       <div>
                         <el-link type="primary" @click="openErrorTip">点击上传</el-link>
                       </div>

+ 8 - 2
src/views/AITools/OADefense/dialog/errorTip.vue

@@ -1,11 +1,17 @@
 <template>
     <div>
-      <el-dialog title="文件缺少提示" :visible.sync="visible" width="500px" :before-close="handleClose" :close-on-click-modal="false" :modal-append-to-body="false">
+      <el-dialog title="文件缺少提示" :visible.sync="visible" width="600px" :before-close="handleClose" :close-on-click-modal="false" :modal-append-to-body="false">
           <div>
             <div style="font-size:16px" v-html="tip"></div>
             <div style="padding: 10px 0;">
                 <div><b>请上传缺少的文件(申请文件和对比文件):</b></div>
-                <div style="font-size:16px;color:red">注:上传的申请文件要包含本申请号码,对比文件包含对比文件序号或者名称</div>
+                <div style="font-size:16px;color:red">
+                    注:
+                    <br>
+                    1. 上传的申请文件要包含本申请号码,对比文件包含对比文件序号或者名称
+                    <br>
+                    2. 扫描件暂时无法识别,请上传非扫描件
+                </div>
             </div>
             <div>
                 <myUpload :file-list="patent_fileUrls" @on-change="onchangeFile" @on-remove="onRemove" style="height: 180px;" :autoUpload="true"></myUpload>