121 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
<template>
 | 
						||
  <div class="app-container">
 | 
						||
    <!--工具栏-->
 | 
						||
    <div class="head-container">
 | 
						||
      <div v-if="crud.props.searchToggle">
 | 
						||
        <!-- 搜索 -->
 | 
						||
        <label class="el-form-item-label">编码</label>
 | 
						||
        <el-input v-model="query.code" clearable placeholder="编码" style="width: 185px;" class="filter-item"
 | 
						||
                  @keyup.enter.native="crud.toQuery"/>
 | 
						||
 | 
						||
        <label class="el-form-item-label">名称</label>
 | 
						||
        <el-input v-model="query.name" clearable placeholder="名称" style="width: 185px;" class="filter-item"
 | 
						||
                  @keyup.enter.native="crud.toQuery"/>
 | 
						||
 | 
						||
 | 
						||
        <rrOperation :crud="crud"/>
 | 
						||
      </div>
 | 
						||
      <!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
 | 
						||
      <crudOperation :permission="permission" :tableKey="this.$options.name"/>
 | 
						||
      <!--表单组件-->
 | 
						||
      <el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0"
 | 
						||
                 :title="crud.status.title" width="500px">
 | 
						||
        <el-form ref="form" :model="form" :rules="rules" size="small" label-width="80px">
 | 
						||
          <el-form-item label="代码">
 | 
						||
            <el-input v-model="form.code" style="width: 370px;"/>
 | 
						||
          </el-form-item>
 | 
						||
          <el-form-item label="名称">
 | 
						||
            <el-input v-model="form.name" style="width: 370px;"/>
 | 
						||
          </el-form-item>
 | 
						||
 | 
						||
        </el-form>
 | 
						||
        <div slot="footer" class="dialog-footer">
 | 
						||
          <el-button @click="crud.cancelCU">取消</el-button>
 | 
						||
          <el-button :loading="crud.status.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
 | 
						||
        </div>
 | 
						||
      </el-dialog>
 | 
						||
      <!--表格渲染-->
 | 
						||
      <el-table ref="table" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;"
 | 
						||
                @selection-change="crud.selectionChangeHandler">
 | 
						||
        <el-table-column type="selection" width="55"/>
 | 
						||
        <el-table-column prop="code" label="编码"/>
 | 
						||
        <el-table-column prop="name" label="名称"/>
 | 
						||
        <el-table-column v-if="checkPer(['admin','bigItem:edit','bigItem:del'])" label="操作" align="center">
 | 
						||
          <template slot-scope="scope">
 | 
						||
            <udOperation
 | 
						||
              :data="scope.row"
 | 
						||
              :permission="permission"
 | 
						||
              :show-dle="false"
 | 
						||
            />
 | 
						||
          </template>
 | 
						||
        </el-table-column>
 | 
						||
      </el-table>
 | 
						||
      <!--分页组件-->
 | 
						||
      <pagination/>
 | 
						||
    </div>
 | 
						||
  </div>
 | 
						||
</template>
 | 
						||
 | 
						||
<script>
 | 
						||
import crudBigItem from '@/api/bigItem'
 | 
						||
import CRUD, {presenter, header, form, crud} from '@crud/crud'
 | 
						||
import rrOperation from '@crud/RR.operation'
 | 
						||
import crudOperation from '@crud/CRUD.operation'
 | 
						||
import udOperation from '@crud/UD.operation'
 | 
						||
import pagination from '@crud/Pagination'
 | 
						||
 | 
						||
const defaultForm = {
 | 
						||
  id: null,
 | 
						||
  code: null,
 | 
						||
  name: null,
 | 
						||
  type: null,
 | 
						||
  remark: null,
 | 
						||
  deptId: null,
 | 
						||
  createBy: null,
 | 
						||
  updateBy: null,
 | 
						||
  createTime: null,
 | 
						||
  updateTime: null
 | 
						||
}
 | 
						||
export default {
 | 
						||
  name: 'BigItem',
 | 
						||
  components: {pagination, crudOperation, rrOperation, udOperation},
 | 
						||
  mixins: [presenter(), header(), form(defaultForm), crud()],
 | 
						||
  cruds() {
 | 
						||
    return CRUD({
 | 
						||
      title: '总成',
 | 
						||
      url: 'api/bigItem',
 | 
						||
      idField: 'id',
 | 
						||
      sort: 'id,desc',
 | 
						||
      crudMethod: {...crudBigItem},
 | 
						||
      optShow: {
 | 
						||
        add: true,
 | 
						||
        edit: false,
 | 
						||
        del: false,
 | 
						||
        reset: true,
 | 
						||
        download: true
 | 
						||
      },
 | 
						||
    })
 | 
						||
  },
 | 
						||
  data() {
 | 
						||
    return {
 | 
						||
      permission: {
 | 
						||
        add: ['admin', 'bigItem:add'],
 | 
						||
        edit: ['admin', 'bigItem:edit'],
 | 
						||
        del: ['admin', 'bigItem:del']
 | 
						||
      },
 | 
						||
      rules: {}
 | 
						||
    }
 | 
						||
  },
 | 
						||
  methods: {
 | 
						||
    // 钩子:在获取表格数据之前执行,false 则代表不获取数据
 | 
						||
    [CRUD.HOOK.beforeRefresh]() {
 | 
						||
      return true
 | 
						||
    }
 | 
						||
  }
 | 
						||
}
 | 
						||
</script>
 | 
						||
 | 
						||
<style scoped>
 | 
						||
 | 
						||
</style>
 |