123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main">
- <el-col :span="24" class="down">
- <data-table :fields="fields" :opera="opera" :data="list" :total="total" @query="search" @edit="toEdit"></data-table>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import dataTable from '@common/src/components/frame/filter-page-table.vue';
- import { mapState, createNamespacedHelpers } from 'vuex';
- const { mapActions: achieveApply } = createNamespacedHelpers('achieveApply');
- export default {
- name: 'index',
- props: {},
- components: { dataTable },
- data: function() {
- return {
- opera: [
- {
- label: '完善资料',
- method: 'edit',
- },
- ],
- fields: [
- { label: '成果编号', prop: 'basic.achieve_num', filter: 'input', showTip: true },
- { label: '成果名称', prop: 'basic.achieve_name', showTip: true },
- { label: '成果类别', prop: 'basic.achieve_type', showTip: true },
- {
- label: '状态',
- prop: 'status',
- format: item => {
- return item === '4' ? '完善资料&待发放' : '未识别';
- },
- },
- ],
- list: [],
- total: 0,
- };
- },
- async created() {
- await this.search();
- },
- methods: {
- ...achieveApply(['query']),
- // 查询列表
- async search({ skip = 0, limit = 10, ...info } = {}) {
- const res = await this.query({ skip, limit, status: 4, user_id: this.user.id, ...info });
- if (this.$checkRes(res)) {
- this.$set(this, 'list', res.data);
- this.$set(this, `total`, res.total);
- }
- },
- // 完善资料
- toEdit({ data }) {
- this.$router.push({ path: '/perfectData/update', query: { id: data.id } });
- },
- },
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped></style>
|