对接首页的消息和待办

This commit is contained in:
qq787203167
2022-05-24 16:20:36 +08:00
parent d5e011e566
commit 57661ec11a
4 changed files with 152 additions and 15 deletions
+27
View File
@@ -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>
+2
View File
@@ -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)
}
}