对接首页的消息和待办
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="JNoData">
|
||||
<a-icon class="icon" type="inbox"/>
|
||||
<br/>
|
||||
{{$t('noData')}}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'JNoData'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.JNoData {;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
text-align: center;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 34px;
|
||||
}
|
||||
</style>
|
||||
@@ -27,6 +27,7 @@ import JSwitch from './JSwitch.vue'
|
||||
import JTime from './JTime.vue'
|
||||
import JTreeTable from './JTreeTable.vue'
|
||||
import JLoading from './JLoading.vue'
|
||||
import JNoData from './JNoData.vue'
|
||||
//jerobiz
|
||||
import JSelectDepart from '../jerobiz/JSelectDepart.vue'
|
||||
import JSelectMultiUser from '../jerobiz/JSelectMultiUser.vue'
|
||||
@@ -70,5 +71,6 @@ export default {
|
||||
Vue.component('JSelectMultiUser', JSelectMultiUser)
|
||||
Vue.component('JSelectRole', JSelectRole)
|
||||
Vue.component('JSelectUserByDep', JSelectUserByDep)
|
||||
Vue.component('JNoData', JNoData)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user