index.vue 1.6 KB
<template>
  <div class="jsgzgl from-clues">
    <lb-table ref="table" :heightNum="195" :total="pageData.total" :page-size="pageData.size"
      :current-page.sync="pageData.current" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
      :column="tableData.columns" :data="tableData.data">
    </lb-table>
  </div>
</template>

<script>
import data from "./data"
import tableMixin from '@/mixins/tableMixin.js'
export default {
  name: "jsgzgl",
  mixins: [tableMixin],
  data () {
    return {
      tableData: {
        columns: [{
          label: '序号',
          type: 'index',
          width: '50',
          index: this.indexMethod,
        }].concat(data.columns()).concat([
          {
            label: "操作",
            width: '80',
            render: (h, scope) => {
              return (
                <div>
                  <el-button
                    type="text"
                    size="mini"
                    icon="el-icon-edit"
                    style="margin-left: 10px"
                    onClick={() => { this.handleEdit(scope.row) }}
                  >
                    修改
                  </el-button>
                </div>
              )
            }
          }
        ]),
        data: [{}]
      },
      pageData: {
        total: 0,
        pageSize: 15,
        current: 1,
      },
    }
  },
  methods: {
    resetForm () {
      this.$refs.ruleForm.resetFields();
    },
    async featchData () {
    },
    handleEdit (row) {

    }
  }
}
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
@import "./index.scss";
</style>