7 changed files with 113 additions and 114 deletions
-
76src/views/archivesManage/archivesCheck/index.vue
-
28src/views/archivesManage/archivesCheck/module/header.vue
-
30src/views/archivesManage/lendManage/components/archiveDetail.vue
-
85src/views/archivesManage/lendManage/components/delConfirm.vue
-
2src/views/archivesManage/lendManage/lendConfirm/index.vue
-
3src/views/archivesManage/lendManage/returnArchives/index.vue
-
3src/views/archivesManage/lendManage/toLend/index.vue
@ -1,28 +0,0 @@ |
|||||
<template> |
|
||||
<div |
|
||||
v-if="crud.props.searchToggle" |
|
||||
class="head-search" |
|
||||
> |
|
||||
<el-input v-model="query.name" clearable size="small" placeholder="输入岗位名称搜索" prefix-icon="el-icon-search" style="width: 200px;" class="filter-item" @keyup.enter.native="crud.toQuery" /> |
|
||||
<rrOperation /> |
|
||||
</div> |
|
||||
</template> |
|
||||
|
|
||||
<script> |
|
||||
import { header } from '@crud/crud' |
|
||||
import rrOperation from '@crud/RR.operation' |
|
||||
export default { |
|
||||
components: { rrOperation }, |
|
||||
mixins: [header()], |
|
||||
props: { |
|
||||
dict: { |
|
||||
type: Object, |
|
||||
required: true |
|
||||
}, |
|
||||
permission: { |
|
||||
type: Object, |
|
||||
required: true |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
</script> |
|
@ -1,15 +1,15 @@ |
|||||
<template> |
|
||||
<div> |
|
||||
|
|
||||
</div> |
|
||||
</template> |
|
||||
|
|
||||
<script> |
|
||||
export default { |
|
||||
|
|
||||
} |
|
||||
</script> |
|
||||
|
|
||||
<style lang="scss" scoped> |
|
||||
|
|
||||
</style> |
|
||||
|
<template> |
||||
|
<div> |
||||
|
档案详情 |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
|
||||
|
</style> |
@ -1,42 +1,43 @@ |
|||||
<template> |
|
||||
<div> |
|
||||
<el-dialog |
|
||||
title="移出确认" |
|
||||
:visible.sync="deleteVisible" |
|
||||
:before-close="handleClose" |
|
||||
> |
|
||||
<span class="dialog-right-top" /> |
|
||||
<span class="dialog-left-bottom" /> |
|
||||
<div class="setting-dialog"> |
|
||||
<p><span style="color: #fff">确定将所选数据移出{{listName}}吗?</span></p> |
|
||||
<div slot="footer" class="dialog-footer"> |
|
||||
<el-button type="primary" @click.native="handleConfirm" |
|
||||
>确定</el-button |
|
||||
> |
|
||||
</div> |
|
||||
</div> |
|
||||
</el-dialog> |
|
||||
|
|
||||
</div> |
|
||||
</template> |
|
||||
|
|
||||
<script> |
|
||||
export default { |
|
||||
props:['listName'], |
|
||||
data() { |
|
||||
return { |
|
||||
deleteVisible: false, |
|
||||
}; |
|
||||
}, |
|
||||
methods:{ |
|
||||
handleConfirm() { |
|
||||
this.deleteVisible = false |
|
||||
// this.reconfirmDeleteVisible = true |
|
||||
}, |
|
||||
|
|
||||
} |
|
||||
}; |
|
||||
</script> |
|
||||
|
|
||||
<style lang="scss" scoped> |
|
||||
</style> |
|
||||
|
<template> |
||||
|
<div> |
||||
|
<el-dialog |
||||
|
title="移出确认" |
||||
|
:visible.sync="deleteVisible" |
||||
|
:before-close="handleClose" |
||||
|
> |
||||
|
<span class="dialog-right-top" /> |
||||
|
<span class="dialog-left-bottom" /> |
||||
|
<div class="setting-dialog"> |
||||
|
<p><span style="color: #fff">确定将所选数据移出{{ listName }}吗?</span></p> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
@click.native="handleConfirm" |
||||
|
>确定</el-button> |
||||
|
</div> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
|
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
props: ['listName'], |
||||
|
data() { |
||||
|
return { |
||||
|
deleteVisible: false |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
handleConfirm() { |
||||
|
this.deleteVisible = false |
||||
|
// this.reconfirmDeleteVisible = true |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
</style> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue