| | |
| | | size="small" |
| | | plain |
| | | icon="el-icon-download" |
| | | v-if="permission.accreditationRecords_export" |
| | | v-if="permission.accreditationRecords_export || check" |
| | | @click="handleExport" |
| | | >保安员证信息导出 |
| | | </el-button> |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | check:false, |
| | | form: {}, |
| | | query: {}, |
| | | questionBankSearch: {}, |
| | |
| | | mounted() { |
| | | this.getDeptInfo(this.userInfo.dept_id); |
| | | }, |
| | | created(){ |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | //判断是否为市局管理员 |
| | | if(this.userInfo.jurisdiction=="1372091709474910209"){ |
| | | this.check = true; |
| | | // this.vaildData(this.permission.accreditationRecords_paper_delete, false); |
| | | }else{ |
| | | this.check = false; |
| | | // this.vaildData(null, false); |
| | | } |
| | | } |
| | | }, |
| | | methods: { |
| | | //获取当前用户部门信息 |
| | | getDeptInfo(deptId) { |