refactor: Adjust the example directory structure
This commit is contained in:
		@@ -1,18 +0,0 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <transition name="fade" mode="out-in">
 | 
			
		||||
    <keep-alive :include='cachedViews'>
 | 
			
		||||
      <router-view></router-view>
 | 
			
		||||
    </keep-alive>
 | 
			
		||||
  </transition>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'TableMain',
 | 
			
		||||
  computed: {
 | 
			
		||||
    cachedViews() {
 | 
			
		||||
      return this.$store.state.tagsView.cachedViews
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
@@ -1,6 +1,8 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="tab-container">
 | 
			
		||||
    <el-tag>mounted times :{{createdTimes}}</el-tag>
 | 
			
		||||
    <el-alert style="width:200px;display:inline-block;vertical-align: middle;margin-left:30px;" title="Tab with keep-alive" type="success" :closable="false">
 | 
			
		||||
    </el-alert>
 | 
			
		||||
    <el-tabs style='margin-top:15px;' v-model="activeName" type="border-card">
 | 
			
		||||
      <el-tab-pane v-for="item in tabMapOptions" :label="item.label" :key='item.key' :name="item.key">
 | 
			
		||||
        <keep-alive>
 | 
			
		||||
							
								
								
									
										129
									
								
								src/views/table/inlineEditTable.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										129
									
								
								src/views/table/inlineEditTable.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,129 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="app-container calendar-list-container">
 | 
			
		||||
 | 
			
		||||
    <el-table :data="list" v-loading.body="listLoading" border fit highlight-current-row style="width: 100%">
 | 
			
		||||
 | 
			
		||||
      <el-table-column align="center" label="ID" width="80">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <span>{{scope.row.id}}</span>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column width="180px" align="center" label="Date">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <span>{{scope.row.timestamp | parseTime('{y}-{m}-{d} {h}:{i}')}}</span>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column width="120px" align="center" label="Author">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <span>{{scope.row.author}}</span>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column width="100px" label="Importance">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <svg-icon v-for="n in +scope.row.importance" icon-class="star" class="meta-item__icon" :key="n"></svg-icon>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column class-name="status-col" label="Status" width="110">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column min-width="300px" label="Title">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <template v-if="scope.row.edit">
 | 
			
		||||
            <el-input class="edit-input" size="small" v-model="scope.row.title"></el-input>
 | 
			
		||||
            <el-button class='cancel-btn' size="small" icon="el-icon-refresh" type="warning" @click="cancelEdit(scope.row)">cancel</el-button>
 | 
			
		||||
          </template>
 | 
			
		||||
          <span v-else>{{ scope.row.title }}</span>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
      <el-table-column align="center" label="Actions" width="120">
 | 
			
		||||
        <template slot-scope="scope">
 | 
			
		||||
          <el-button v-if="scope.row.edit" type="success" @click="confirmEdit(scope.row)" size="small" icon="el-icon-circle-check-outline">Ok</el-button>
 | 
			
		||||
          <el-button v-else type="primary" @click='scope.row.edit=!scope.row.edit' size="small" icon="el-icon-edit">Edit</el-button>
 | 
			
		||||
        </template>
 | 
			
		||||
      </el-table-column>
 | 
			
		||||
 | 
			
		||||
    </el-table>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { fetchList } from '@/api/article'
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'inlineEditTable',
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      list: null,
 | 
			
		||||
      listLoading: true,
 | 
			
		||||
      listQuery: {
 | 
			
		||||
        page: 1,
 | 
			
		||||
        limit: 10
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  filters: {
 | 
			
		||||
    statusFilter(status) {
 | 
			
		||||
      const statusMap = {
 | 
			
		||||
        published: 'success',
 | 
			
		||||
        draft: 'info',
 | 
			
		||||
        deleted: 'danger'
 | 
			
		||||
      }
 | 
			
		||||
      return statusMap[status]
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  created() {
 | 
			
		||||
    this.getList()
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    getList() {
 | 
			
		||||
      this.listLoading = true
 | 
			
		||||
      fetchList(this.listQuery).then(response => {
 | 
			
		||||
        const items = response.data.items
 | 
			
		||||
        this.list = items.map(v => {
 | 
			
		||||
          this.$set(v, 'edit', false) // https://vuejs.org/v2/guide/reactivity.html
 | 
			
		||||
 | 
			
		||||
          v.originalTitle = v.title //  will be used when user click the cancel botton
 | 
			
		||||
 | 
			
		||||
          return v
 | 
			
		||||
        })
 | 
			
		||||
        this.listLoading = false
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    cancelEdit(row) {
 | 
			
		||||
      row.title = row.originalTitle
 | 
			
		||||
      row.edit = false
 | 
			
		||||
      this.$message({
 | 
			
		||||
        message: 'The title has been restored to the original value',
 | 
			
		||||
        type: 'warning'
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    confirmEdit(row) {
 | 
			
		||||
      row.edit = false
 | 
			
		||||
      row.originalTitle = row.title
 | 
			
		||||
      this.$message({
 | 
			
		||||
        message: 'The title has been edited',
 | 
			
		||||
        type: 'success'
 | 
			
		||||
      })
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.edit-input {
 | 
			
		||||
  padding-right: 100px;
 | 
			
		||||
}
 | 
			
		||||
.cancel-btn {
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  right: 15px;
 | 
			
		||||
  top: 10px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
		Reference in New Issue
	
	Block a user