Commit dfda283d by liyuhang19990520

串查导入类型校验 质量检查表头

parent 38932b3b
......@@ -645,8 +645,11 @@ export default {
reader.onload = function () {
let result = this.result;
const reg = /\<nyzw_zzhwbdffdm\>(.*?)\<\/nyzw_zzhwbdffdm\>/ // 正查,倒查
const regTT = /\<TTHitResultPackage\>(.*?)\<\/TTHitResultPackage\>/ // 查重
const regLL = /\<LLHitResultPackage\>(.*?)\<\/LLHitResultPackage\>/ // 串查
// const regTT = /\<TTHitResultPackage\>(.*?)\<\/TTHitResultPackage\>/ // 查重
const regTT = /\<TTHitResultPackage\>/ // 查重
// const regLL = /\<LLHitResultPackage\>(.*?)\<\/LLHitResultPackage\>/ // 串查
const regLL = /\<LLHitResultPackage\>/ // 串查
//正查,倒查
let regTypes = result.match(reg)
let regType = null;
......@@ -657,14 +660,14 @@ export default {
// 查重
let regTypeTT = result.match(regTT)
if(regTypeTT!=null){
console,log('有查重文件')
console.log('有查重文件')
regType = '0'
}
// 串查
let regTypeLL = result.match(regLL)
if(regTypeLL!=null){
console,log('有串重文件')
console.log('有串重文件')
regType = '3'
}
......
......@@ -128,6 +128,7 @@
tooltip-effect="dark"
style="width: 100%;"
:class="{delSelection: !selectBoo}"
:header-cell-style="{background:'#eef1f6',color:'#606266'}"
class="bzxxfh-table"
@selection-change="handleSelectionChange"
>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment