12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <div class="project-search">
- <dataSearch @bindSetQuery="setQuery"></dataSearch>
- <dataList
- :queryForm="queryForm"
- :allowEdit="checkAuth('/document/update')"
- :allowDelete="checkAuth('/document/delete')"
- ></dataList>
- </div>
- </template>
-
- <script>
- import { mapGetters } from "vuex";
- import { dataSearch, dataList } from "./components";
- export default {
- components: {
- dataSearch,
- dataList,
- },
- computed: {
- ...mapGetters(["roleInfo", "authList"]),
- },
-
- data() {
- return {
- queryForm: {
- page: 1,
- pageSize: 10,
- bucket_id:''
- },
- };
- },
- mounted(){
- this.queryForm.bucket_id=this.$route.query.id
- },
- methods: {
- checkAuth(path) {
- if (this.roleInfo.is_admin == 1) {
- return true;
- }
- /* let auth=this.authList.filter(o=>o.type==999 && o.path==path);
- if(auth.length>0){
- return true;
- } */
- return true;
- },
-
- setQuery(e) {
- this.queryForm = e;
- },
- },
- };
- </script>
-
- <style lang="scss">
- .project-search {
- padding: 30px;
- font-size: 12px;
- }
- </style>
-
|