Commit 239049a3 by qiaoyanqi

扫描优化

parent ab3c7d24
...@@ -13,8 +13,7 @@ ...@@ -13,8 +13,7 @@
:columns="columns" :columns="columns"
:data="queryData" :data="queryData"
ref="table" ref="table"
style="height:100%" style="height:100%">
>
<template slot-scope="{ row }" slot="name"> <template slot-scope="{ row }" slot="name">
{{ row.name }} {{ row.name }}
</template> </template>
...@@ -222,16 +221,10 @@ export default { ...@@ -222,16 +221,10 @@ export default {
}, },
convertOnlyReadBillDefine(billDefine){ convertOnlyReadBillDefine(billDefine){
// 解决遗留问题,接待单子的只读界面标识特殊处理 // 解决遗留问题,接待单子的只读界面标识特殊处理
let temp = billDefine if (billDefine == 'bill.JDHDFYZCDJD') {
if (temp) { billDefine = 'bill.JDHDFYZC';
switch(temp){
case 'bill.JDHDFYZCDJD':
temp = 'bill.JDHDFYZC';
break;
default:
}
} }
return temp return billDefine
} }
}, },
}; };
......
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