123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <template>
- <div>
- <el-container>
- <!-- form表单 -->
- <el-header>
- <div class="rect rect-form">
- <el-form :inline="true" :model="form" size="mini" ref="form">
- <el-form-item style="width:200px">
- <el-input v-model="form.keyword" style="width:200px" placeholder="请输入区域"></el-input>
- </el-form-item>
- <el-form-item>
- <el-button @click="getDataList()" icon="el-icon-search">查 询</el-button>
- </el-form-item>
- <el-form-item>
- <el-button
- icon="el-icon-circle-close"
- @click="clearAll">清 空</el-button>
- </el-form-item>
- </el-form>
- </div>
- </el-header>
- <el-main>
- <div class="rect" style="margin-top: 20px">
- <el-form size="mini" :inline="true">
- <el-form-item>
- <el-button
- icon="el-icon-plus"
- @click="visible = true">
- 新 增
- </el-button>
- <el-button
- icon="el-icon-delete"
- @click="delAll"
- type="danger"
- :disabled="selectList.length <= 0">
- 删 除
- </el-button>
- </el-form-item>
- </el-form>
- <el-table
- :data="dataList"
- border
- stripe
- v-loading="dataListLoading"
- style="width: 100%;"
- @selection-change="selectionChangeHandle"
- size="mini"
- height="578"
- :header-cell-style="{background:'rgb(245,245,245)',color:'#000',height: '45px',fontSize: '13px',fontWeight: 'normal',borderBottom: '1px solid #ccc'}"
- :cell-style="{color: '#888',fontSize: '13px'}">
- <el-table-column
- type="selection"
- header-align="center"
- align="center"
- width="50">
- </el-table-column>
- <el-table-column
- prop="id"
- header-align="center"
- align="center"
- label="id">
- </el-table-column>
- <el-table-column
- prop="name"
- header-align="center"
- align="center"
- label="区域名称">
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作">
- <template slot-scope="scope">
- <el-button
- v-if="isAuth('sys:user:update')"
- type="text"
- size="medium"
- @click="addOrUpdateHandle(scope.row)"
- style="color: rgb(24,144,255)">
- 修改
- </el-button>
- <el-button
- v-if="isAuth('sys:user:delete')"
- type="text"
- size="medium"
- @click="deleteHandle(scope.row)"
- style="color: rgb(24,144,255)">
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <table-footer
- :totals="total"
- :size="limit"
- @sizeChange="sizeChange"
- @pageChange="pageChange"></table-footer>
- </div>
- <!-- 弹框 -->
- <el-dialog
- :title="!dataForm.id ? '新增' : '修改'"
- :close-on-click-modal="false"
- :visible.sync="visible"
- width="600px">
- <el-form
- :model="dataForm"
- :rules="dataRule"
- ref="dataForm"
- @keyup.enter.native="dataFormSubmit()"
- label-width="80px"
- size="mini"
- style="margin-left: 20px;width: 500px">
- <el-form-item label="区域名称" prop="name">
- <el-input v-model="dataForm.name" placeholder="请输入区域名称"></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button size="mini" @click="onCancel">关闭</el-button>
- <el-button size="mini" type="primary" @click="dataFormSubmit()">确定</el-button>
- </span>
- </el-dialog>
- </el-main>
- </el-container>
- </div>
- </template>
- <script>
- import TableFooter from '../../../components/TableFooter'
- export default {
- name: 'areaAdmin',
- components: {
- TableFooter
- },
- data () {
- return {
- form: {
- keyword: ''
- },
- dataList: [],
- dataListLoading: false,
- visible: false,
- selectList: [],
- total: 0,
- page: 1,
- limit: 20,
- dataForm: {
- id: '',
- name: ''
- },
- dataRule: {
- name: [
- {required: true, message: '区域名称不能为空', trigger: 'blur'}
- ]
- }
- }
- },
- methods: {
- getDataList () {
- this.init()
- },
- clearAll () {
- this.form.keyword = ''
- },
- delAll () {
- let ids = this.selectList.map(item => item.id)
- let names = this.selectList.map(item => item.name)
- this.$confirm(`确定批量删除${names.join()}区域?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- // 删除操作
- if (this.selectList.length < 0) {
- return
- }
- this.$http({
- url: this.$http.adornUrl('/management/pasturearea/delete'),
- method: 'post',
- data: this.$http.adornData(ids, false)
- }).then(res => {
- if (res.data.code === 0) {
- this.$message.success('删除成功')
- this.init()
- } else {
- this.$message.error(res.data.msg)
- }
- })
- })
- },
- sizeChange (val) {
- this.limit = val
- this.init()
- },
- pageChange (val) {
- this.page = val
- this.init()
- },
- init () {
- this.dataListLoading = true
- let params = {
- page: this.page,
- limit: this.limit,
- keyword: this.form.keyword
- }
- this.$http({
- url: this.$http.adornUrl('/management/pasturearea/list'),
- method: 'get',
- params: this.$http.adornParams(params)
- })
- .then(res => {
- if (res.data.code === 0) {
- this.dataListLoading = false
- this.dataList = res.data.page.list
- this.total = res.data.page.totalCount
- }
- })
- },
- selectionChangeHandle (val) {
- this.selectList = val
- // val.forEach(item => {
- // this.selectList.push(item.id)
- // })
- },
- addOrUpdateHandle (row) {
- this.dataForm = {
- id: row.id,
- name: row.name
- }
- this.visible = true
- },
- deleteHandle (area) {
- let ids = [area.id]
- let name = area.name
- this.$confirm(`确定删除${name}区域?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- // 删除操作
- if (this.selectList.length < 0) {
- return
- }
- this.$http({
- url: this.$http.adornUrl('/management/pasturearea/delete'),
- method: 'post',
- data: this.$http.adornData(ids, false)
- }).then(res => {
- if (res.data.code === 0) {
- this.$message.success('删除成功!')
- this.init()
- } else {
- this.$message.error(res.data.msg)
- }
- })
- })
- },
- dataFormSubmit () {
- this.$refs['dataForm'].validate((valid) => {
- if (valid) {
- let params = {
- id: this.dataForm.id == '' ? undefined : this.dataForm.id,
- name: this.dataForm.name
- }
- this.$http({
- url: this.$http.adornUrl(`${!this.dataForm.id ? '/management/pasturearea/save' : '/management/pasturearea/update'}`),
- method: 'post',
- data: this.$http.adornData(params, true)
- }).then(({data}) => {
- if (data && data.code === 0) {
- this.visible = false
- this.$message({
- message: '操作成功',
- type: 'success',
- duration: 1500
- })
- this.init()
- this.reset()
- } else {
- this.$message.error(data.msg)
- }
- })
- }
- })
- },
- // 关闭模态框
- onCancel () {
- this.visible = false
- this.reset()
- },
- reset () {
- this.dataForm = {
- id: '',
- name: ''
- }
- }
- },
- mounted () {
- this.init()
- }
- }
- </script>
- <style scoped>
- .rect {
- background-color: #fff;
- padding: 30px 15px;
- border-radius: 5px;
- border: 1px solid #e8e8e8;
- }
- .rect-form {
- padding-bottom: 10px;
- }
- .rect-table {
- margin-top: 20px;
- }
- /deep/ .el-table--mini td, .el-table--mini th {
- padding: 3px 0 !important;
- height: 20px !important;
- }
- /deep/ .el-checkbox__input.is-checked+.el-checkbox__label {
- color: rgb(24,144,255);
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__inner:hover {
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__input.is-focus .el-checkbox__inner {
- border-color: rgb(24,144,255);
- }
- /deep/.el-table #select .cell .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- </style>
|