Blame view

src/views/example/list.vue 3.41 KB
d7d9c38c2   Adam   auto commit the c...
1
2
  <template>
    <div class="app-container">
a86b16bba   Adam   auto commit the c...
3
4
5
6
7
8
9
10
11
12
13
14
15
      <el-table
        v-loading="listLoading"
        :data="list"
        border
        fit
        highlight-current-row
        style="width: 100%"
      >
        <el-table-column
          align="center"
          label="ID"
          width="80"
        >
d7d9c38c2   Adam   auto commit the c...
16
17
18
19
          <template slot-scope="scope">
            <span>{{ scope.row.id }}</span>
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
20
21
22
23
24
        <el-table-column
          width="180px"
          align="center"
          label="Date"
        >
d7d9c38c2   Adam   auto commit the c...
25
26
27
28
          <template slot-scope="scope">
            <span>{{ scope.row.timestamp | parseTime('{y}-{m}-{d} {h}:{i}') }}</span>
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
29
30
31
32
33
        <el-table-column
          width="120px"
          align="center"
          label="Author"
        >
d7d9c38c2   Adam   auto commit the c...
34
35
36
37
          <template slot-scope="scope">
            <span>{{ scope.row.author }}</span>
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
38
39
40
41
        <el-table-column
          width="100px"
          label="Importance"
        >
d7d9c38c2   Adam   auto commit the c...
42
          <template slot-scope="scope">
a86b16bba   Adam   auto commit the c...
43
44
45
46
47
48
            <svg-icon
              v-for="n in +scope.row.importance"
              :key="n"
              icon-class="star"
              class="meta-item__icon"
            />
d7d9c38c2   Adam   auto commit the c...
49
50
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
51
52
53
54
55
        <el-table-column
          class-name="status-col"
          label="Status"
          width="110"
        >
d7d9c38c2   Adam   auto commit the c...
56
57
58
59
60
61
          <template slot-scope="{row}">
            <el-tag :type="row.status | statusFilter">
              {{ row.status }}
            </el-tag>
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
62
63
64
65
        <el-table-column
          min-width="300px"
          label="Title"
        >
d7d9c38c2   Adam   auto commit the c...
66
          <template slot-scope="{row}">
a86b16bba   Adam   auto commit the c...
67
68
69
70
            <router-link
              :to="'/example/edit/'+row.id"
              class="link-type"
            >
d7d9c38c2   Adam   auto commit the c...
71
72
73
74
              <span>{{ row.title }}</span>
            </router-link>
          </template>
        </el-table-column>
a86b16bba   Adam   auto commit the c...
75
76
77
78
79
        <el-table-column
          align="center"
          label="Actions"
          width="120"
        >
d7d9c38c2   Adam   auto commit the c...
80
81
          <template slot-scope="scope">
            <router-link :to="'/example/edit/'+scope.row.id">
a86b16bba   Adam   auto commit the c...
82
83
84
85
86
              <el-button
                type="primary"
                size="small"
                icon="el-icon-edit"
              >
d7d9c38c2   Adam   auto commit the c...
87
88
89
90
91
92
                Edit
              </el-button>
            </router-link>
          </template>
        </el-table-column>
      </el-table>
a86b16bba   Adam   auto commit the c...
93
94
95
96
97
98
99
      <pagination
        v-show="total>0"
        :total="total"
        :page.sync="listQuery.page"
        :limit.sync="listQuery.limit"
        @pagination="getList"
      />
d7d9c38c2   Adam   auto commit the c...
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
    </div>
  </template>
  
  <script>
  import { fetchList } from '@/api/article'
  import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
  
  export default {
    name: 'ArticleList',
    components: { Pagination },
    filters: {
      statusFilter(status) {
        const statusMap = {
          published: 'success',
          draft: 'info',
          deleted: 'danger'
        }
        return statusMap[status]
      }
    },
    data() {
      return {
        list: null,
        total: 0,
        listLoading: true,
        listQuery: {
          page: 1,
          limit: 20
        }
      }
    },
    created() {
      this.getList()
    },
    methods: {
      getList() {
        this.listLoading = true
        fetchList(this.listQuery).then(response => {
          this.list = response.data.items
          this.total = response.data.total
          this.listLoading = false
        })
      }
    }
  }
  </script>
  
  <style scoped>
  .edit-input {
    padding-right: 100px;
  }
  .cancel-btn {
    position: absolute;
    right: 15px;
    top: 10px;
  }
  </style>