Commit 239049a3 by qiaoyanqi

扫描优化

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