Commit 50649d1f by Jianli Ou

完善分中心显示

parent e97b1672
...@@ -169,6 +169,9 @@ export default { ...@@ -169,6 +169,9 @@ export default {
{ {
prop: 'branchcode', prop: 'branchcode',
label: '所属分中心', label: '所属分中心',
renderCell: (value, row) => (
this.branchLabel(row)
)
}, },
{ {
label: '审核', label: '审核',
...@@ -213,6 +216,10 @@ export default { ...@@ -213,6 +216,10 @@ export default {
return refuse return refuse
} }
}, },
branchLabel(row) {
const branchList = window.CodeTable.ANCCBranches
return (branchList.find(item => item.value === row.branchcode) || {label: '--'}).label
},
pageChangeEvent(currPage) { pageChangeEvent(currPage) {
this.search.page = currPage this.search.page = currPage
this.getAuditList() this.getAuditList()
......
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