选煤厂生产管理平台前端代码
dongyukun
2024-12-10 5cc1d92af645c2f8f4f6d1d3777283b70df78ccd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<template>
  <el-drawer
    direction="rtl"
    :visible.sync="visible"
    @close="handleClose"
    size="50%">
    <div class="mod-app-menu" style="padding: 5px;">
      <el-form :inline="true" :model="dataForm" ref="dataForm" @keyup.enter.native="getDataList()" label-width="10px">
        <el-form-item prop="itemText">
          <el-input size="mini" v-model="dataForm.itemText" :placeholder="$t('sysDictItem.itemText')"
                    clearable></el-input>
        </el-form-item>
        <el-form-item>
          <el-button size="mini" @click="getDataList()">{{ $t('query') }}</el-button>
        </el-form-item>
        <el-form-item>
          <el-button size="mini" v-if="$hasPermission('sys:dict:save')" type="primary" @click="openForm()">{{
            $t('add') }}
          </el-button>
        </el-form-item>
        <el-form-item>
          <el-button size="mini" type="primary" @click="enableBatch()">{{ $t('enableBatch') }}</el-button>
        </el-form-item>
        <el-form-item>
          <el-button size="mini" type="danger" @click="disableBatch()">{{ $t('disableBatch') }}</el-button>
        </el-form-item>
      </el-form>
      <el-table v-loading="dataListLoading" :data="dataList" row-key="id" border style="width: 100%;"
                @selection-change="dataListSelectionChangeHandle">
        <el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>
        <el-table-column prop="itemText" :label="$t('prodParamMz.itemText')" header-align="center"
                         align="center" min-width="150"></el-table-column>
        <el-table-column prop="itemValue" :label="$t('prodParamMz.itemValue')" header-align="center"
                         align="center" min-width="100"></el-table-column>
        <el-table-column prop="sortOrder" :label="$t('prodParamMc.sortOrder')" header-align="center"
                         align="center" min-width="50"></el-table-column>
        <el-table-column prop="status" :label="$t('sysDictItem.status')" header-align="center"
                         align="center" min-width="80">
          <template slot-scope="scope">
            <el-tag v-if="scope.row.status === 1" size="small">{{ $t('enableStatus1') }}</el-tag>
            <el-tag v-else size="small" type="danger">{{ $t('enableStatus0') }}</el-tag>
          </template>
        </el-table-column>
        <el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="100">
          <template slot-scope="scope">
            <el-button v-if="$hasPermission('sys:menu:update')" type="text" size="small"  @click="openForm(scope.row.id)">修改</el-button>
            <el-button v-if="$hasPermission('sys:menu:delete')" type="text" size="small" @click="handleDelete(scope.row.id)">删除</el-button>
          </template>
        </el-table-column>
      </el-table>
      <el-pagination
        :current-page="page"
        :page-sizes="[10, 20, 50, 100]"
        :page-size="limit"
        :total="total"
        layout="total, sizes, prev, pager, next, jumper"
        @size-change="pageSizeChangeHandle"
        @current-change="pageCurrentChangeHandle">
      </el-pagination>
      <!-- 弹窗, 新增 / 修改 -->
      <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
    </div>
  </el-drawer>
</template>
<script>
  import mixinViewModule from '@/mixins/view-module'
  import AddOrUpdate from './item-add-or-update'
  import {getDictItem} from "@/utils/dictUtils";
 
  export default {
    mixins: [mixinViewModule],
    data() {
      return {
        mixinViewModuleOptions: {
          createdIsNeed: false,
          getDataListURL: '/iailab-iems-system/sys/dict-item/page',
          getDataListIsPage: true,
          deleteURL: '/iailab-iems-system/sys/dict-item',
          deleteIsBatch: true
        },
        visible: false,
        dataForm: {
          dictId: '',
          dictCode: '',
          itemText: ''
        },
      }
    },
    components: {
      AddOrUpdate
    },
    methods: {
      init(dictId, dictCode) {
        this.dataForm.dictId = dictId
        this.dataForm.dictCode = dictCode
        this.visible = true
        this.$nextTick(() => {
          this.getDataList()
        })
      },
 
      getDictItemValue(value) {
        let data = getDictItem(this.dictCodeMz, value)
        return data ? data.itemText : '';
      },
 
      openForm(id) {
        this.addOrUpdateVisible = true
        this.$nextTick(() => {
          this.$refs.addOrUpdate.init(id, this.dataForm.dictId,this.dataForm.dictCode)
        })
      },
 
      handleClose() {
        this.$refs['dataForm'].resetFields()
        this.dataList = []
      },
 
      // 批量启用
      enableBatch (id) {
        if (!id && this.dataListSelections.length <= 0) {
          return this.$message({
            message: this.$t('prompt.deleteBatch'),
            type: 'warning',
            duration: 500
          })
        }
        this.$confirm(this.$t('prompt.info', { 'handle': this.$t('enableStatus1') }), this.$t('prompt.title'), {
          confirmButtonText: this.$t('confirm'),
          cancelButtonText: this.$t('cancel'),
          type: 'warning'
        }).then(() => {
          this.$http.put('/iailab-iems-system/sys/dict-item/enable', id ? [id] : this.dataListSelections.map(item => item.id)).then(({ data: res }) => {
            if (res.code !== 0) {
              return this.$message.error(res.msg)
            }
            this.$message({
              message: this.$t('prompt.success'),
              type: 'success',
              duration: 500,
              onClose: () => {
                this.getDataList()
              }
            })
          }).catch(() => {})
        }).catch(() => {})
      },
 
      // 批量禁用
      disableBatch (id) {
        if (!id && this.dataListSelections.length <= 0) {
          return this.$message({
            message: this.$t('prompt.deleteBatch'),
            type: 'warning',
            duration: 500
          })
        }
        this.$confirm(this.$t('prompt.info', { 'handle': this.$t('enableStatus0') }), this.$t('prompt.title'), {
          confirmButtonText: this.$t('confirm'),
          cancelButtonText: this.$t('cancel'),
          type: 'warning'
        }).then(() => {
          this.$http.put('/iailab-iems-system/sys/dict-item/disable', id ? [id] : this.dataListSelections.map(item => item.id)).then(({ data: res }) => {
            if (res.code !== 0) {
              return this.$message.error(res.msg)
            }
            this.$message({
              message: this.$t('prompt.success'),
              type: 'success',
              duration: 500,
              onClose: () => {
                this.getDataList()
              }
            })
          }).catch(() => {})
        }).catch(() => {})
      }
    }
  }
</script>