1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <template>
- <div id="index">
- <admin-frame @search="search" :limit="limit" :total="total" topType="3" @back="back" :useNav="false">
- <template v-slot:info>
- <list-1 :list="list" @detail="detail"></list-1>
- </template>
- </admin-frame>
- </div>
- </template>
- <script>
- import list1 from './parts/list-1.vue';
- import adminFrame from '@frame/src/components/mobile-frame/mobile-main.vue';
- import { mapState, createNamespacedHelpers } from 'vuex';
- const { mapActions: patenttechol } = createNamespacedHelpers('patenttechol');
- export default {
- name: 'index',
- props: {},
- components: {
- adminFrame,
- list1,
- },
- data: function () {
- return {
- list: [],
- limit: 5,
- total: 0,
- };
- },
- async created() {
- await this.search();
- },
- methods: {
- ...patenttechol(['query']),
- async search({ skip = 0, limit = this.limit, searchName, ...info } = {}) {
- if (searchName) info.order_num = searchName;
- let res = await this.query({ skip, limit, ...info });
- if (this.$checkRes(res)) {
- this.$set(this, `list`, res.data);
- this.$set(this, `total`, res.total);
- }
- },
- // 查看详情
- detail(data) {
- this.$router.push({ path: '/patent/admin/techol/techol_info', query: { id: data.id } });
- },
- // 返回
- back() {
- this.$router.push({ path: '/patent/index' });
- },
- },
- computed: {
- ...mapState(['user']),
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- watch: {
- test: {
- deep: true,
- immediate: true,
- handler(val) {},
- },
- },
- };
- </script>
- <style lang="less" scoped></style>
|