Commit dfda283d by liyuhang19990520

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

parent 38932b3b
...@@ -645,8 +645,11 @@ export default { ...@@ -645,8 +645,11 @@ export default {
reader.onload = function () { reader.onload = function () {
let result = this.result; let result = this.result;
const reg = /\<nyzw_zzhwbdffdm\>(.*?)\<\/nyzw_zzhwbdffdm\>/ // 正查,倒查 const reg = /\<nyzw_zzhwbdffdm\>(.*?)\<\/nyzw_zzhwbdffdm\>/ // 正查,倒查
const regTT = /\<TTHitResultPackage\>(.*?)\<\/TTHitResultPackage\>/ // 查重 // const regTT = /\<TTHitResultPackage\>(.*?)\<\/TTHitResultPackage\>/ // 查重
const regLL = /\<LLHitResultPackage\>(.*?)\<\/LLHitResultPackage\>/ // 串查 const regTT = /\<TTHitResultPackage\>/ // 查重
// const regLL = /\<LLHitResultPackage\>(.*?)\<\/LLHitResultPackage\>/ // 串查
const regLL = /\<LLHitResultPackage\>/ // 串查
//正查,倒查 //正查,倒查
let regTypes = result.match(reg) let regTypes = result.match(reg)
let regType = null; let regType = null;
...@@ -657,14 +660,14 @@ export default { ...@@ -657,14 +660,14 @@ export default {
// 查重 // 查重
let regTypeTT = result.match(regTT) let regTypeTT = result.match(regTT)
if(regTypeTT!=null){ if(regTypeTT!=null){
console,log('有查重文件') console.log('有查重文件')
regType = '0' regType = '0'
} }
// 串查 // 串查
let regTypeLL = result.match(regLL) let regTypeLL = result.match(regLL)
if(regTypeLL!=null){ if(regTypeLL!=null){
console,log('有串重文件') console.log('有串重文件')
regType = '3' regType = '3'
} }
......
...@@ -128,6 +128,7 @@ ...@@ -128,6 +128,7 @@
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;" style="width: 100%;"
:class="{delSelection: !selectBoo}" :class="{delSelection: !selectBoo}"
:header-cell-style="{background:'#eef1f6',color:'#606266'}"
class="bzxxfh-table" class="bzxxfh-table"
@selection-change="handleSelectionChange" @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