Blame view

ant-design-vue-jeecg/src/views/examples/list/TableList.vue 10.1 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <a-card :bordered="false">
    <div class="table-page-search-wrapper">
      <a-form layout="inline">
        <a-row :gutter="48">
          <a-col :md="8" :sm="24">
            <a-form-item label="规则编号">
              <a-input v-model="queryParam.id" placeholder=""/>
            </a-form-item>
          </a-col>
          <a-col :md="8" :sm="24">
            <a-form-item label="使用状态">
              <a-select v-model="queryParam.status" placeholder="请选择" default-value="0">
                <a-select-option value="0">全部</a-select-option>
谭毅彬 authored
15
                <a-select-option value="1">{{$t('button.close')}}</a-select-option>
肖超群 authored
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
                <a-select-option value="2">运行中</a-select-option>
              </a-select>
            </a-form-item>
          </a-col>
          <template v-if="advanced">
            <a-col :md="8" :sm="24">
              <a-form-item label="调用次数">
                <a-input-number v-model="queryParam.callNo" style="width: 100%"/>
              </a-form-item>
            </a-col>
            <a-col :md="8" :sm="24">
              <a-form-item label="更新日期">
                <a-date-picker v-model="queryParam.date" style="width: 100%" placeholder="请输入更新日期"/>
              </a-form-item>
            </a-col>
            <a-col :md="8" :sm="24">
              <a-form-item label="使用状态">
                <a-select v-model="queryParam.useStatus" placeholder="请选择" default-value="0">
                  <a-select-option value="0">全部</a-select-option>
谭毅彬 authored
35
                  <a-select-option value="1">{{$t('button.close')}}</a-select-option>
肖超群 authored
36
37
38
39
40
41
42
43
                  <a-select-option value="2">运行中</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
            <a-col :md="8" :sm="24">
              <a-form-item label="使用状态">
                <a-select placeholder="请选择" default-value="0">
                  <a-select-option value="0">全部</a-select-option>
谭毅彬 authored
44
                  <a-select-option value="1">{{$t('button.close')}}</a-select-option>
肖超群 authored
45
46
47
48
49
50
                  <a-select-option value="2">运行中</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
          </template>
          <a-col :md="!advanced && 8 || 24" :sm="24">
肖超群 authored
51
52
            <span class="table-page-search-submitButtons"
                  :style="advanced && { float: 'right', overflow: 'hidden' } || {} ">
53
54
              <a-button type="primary">{{ $t('button.search') }}</a-button>
              <a-button style="margin-left: 8px" @click="resetSearchForm">{{ $t('button.reset') }}</a-button>
肖超群 authored
55
56
57
58
59
60
61
62
63
64
65
66
67
68
              <a @click="toggleAdvanced" style="margin-left: 8px">
                {{ advanced ? '收起' : '展开' }}
                <a-icon :type="advanced ? 'up' : 'down'"/>
              </a>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>

    <div class="table-operator">
      <a-button type="primary" icon="plus" @click="() => this.handleModalVisible(true)">新建</a-button>
      <a-dropdown v-if="selectedRowKeys.length > 0">
        <a-menu slot="overlay">
肖超群 authored
69
          <a-menu-item key="1">
70
            <a-icon type="delete"/>{{$t('button.delete')}}
肖超群 authored
71
          </a-menu-item>
肖超群 authored
72
          <!-- lock | unlock -->
肖超群 authored
73
74
75
76
          <a-menu-item key="2">
            <a-icon type="lock"/>
            锁定
          </a-menu-item>
肖超群 authored
77
        </a-menu>
78
        <a-button style="margin-left: 8px">{{$t('button.multiSelectActions')}}
肖超群 authored
79
          <a-icon type="down"/>
肖超群 authored
80
81
82
83
84
85
86
87
88
89
90
91
92
        </a-button>
      </a-dropdown>
    </div>

    <s-table
      ref="table"
      size="default"
      :columns="columns"
      :data="loadData"
      :showAlertInfo="true"
      @onSelect="onChange"
    >
      <span slot="action" slot-scope="text, record">
93
        <a @click="handleEdit(record)">{{$t('button.edit')}}</a>
肖超群 authored
94
        <a-divider type="vertical"/>
肖超群 authored
95
        <a-dropdown>
96
          <a class="ant-dropdown-link">{{$t('button.more')}}&nbsp;<a-icon type="down"/></a>
肖超群 authored
97
98
          <a-menu slot="overlay">
            <a-menu-item>
99
              <a href="javascript:;">{{$t('button.details')}}</a>
肖超群 authored
100
101
102
103
104
            </a-menu-item>
            <a-menu-item>
              <a href="javascript:;">禁用</a>
            </a-menu-item>
            <a-menu-item>
105
              <a href="javascript:;">{{$t('button.delete')}}</a>
肖超群 authored
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
            </a-menu-item>
          </a-menu>
        </a-dropdown>
      </span>
    </s-table>

    <a-modal
      title="操作"
      :width="800"
      v-model="visible"
      @ok="handleOk"
    >
      <a-form :autoFormCreate="(form)=>{this.form = form}">

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="规则编号"
          hasFeedback
          validateStatus="success"
        >
肖超群 authored
127
          <a-input placeholder="规则编号" v-model="mdl.no" id="no"/>
肖超群 authored
128
129
130
131
132
133
134
135
136
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="服务调用次数"
          hasFeedback
          validateStatus="success"
        >
肖超群 authored
137
          <a-input-number :min="1" id="callNo" v-model="mdl.callNo" style="width: 100%"/>
肖超群 authored
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
181
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="状态"
          hasFeedback
          validateStatus="warning"
        >
          <a-select defaultValue="1" v-model="mdl.status">
            <a-select-option value="1">Option 1</a-select-option>
            <a-select-option value="2">Option 2</a-select-option>
            <a-select-option value="3">Option 3</a-select-option>
          </a-select>
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="描述"
          hasFeedback
          help="请填写一段描述"
        >
          <a-textarea :rows="5" v-model="mdl.description" placeholder="..." id="description"/>
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="更新时间"
          hasFeedback
          validateStatus="error"
        >
          <a-date-picker
            style="width: 100%"
            showTime
            format="YYYY-MM-DD HH:mm:ss"
            placeholder="Select Time"
          />
        </a-form-item>

      </a-form>
    </a-modal>
肖超群 authored
182
183
    <a-modal title="新建规则" destroyOnClose :visible="visibleCreateModal" @ok="handleCreateModalOk"
             @cancel="handleCreateModalCancel">
肖超群 authored
184
185
      <!---->
      <a-form style="margin-top: 8px" :autoFormCreate="(form)=>{this.createForm = form}">
肖超群 authored
186
187
188
        <a-form-item :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" label="描述" fieldDecoratorId="description"
                     :fieldDecoratorOptions="{rules: [{ required: true, message: '请输入至少五个字符的规则描述!', min: 5 }]}">
          <a-input placeholder="请输入"/>
肖超群 authored
189
190
191
192
193
194
195
196
        </a-form-item>
      </a-form>
    </a-modal>

  </a-card>
</template>

<script>
肖超群 authored
197
198
199
200
201
202
import STable from '@/components/table/'
import ATextarea from "ant-design-vue/es/input/TextArea"
import AInput from "ant-design-vue/es/input/Input"
import moment from "moment"
import axios from 'axios';
import {getRoleList, getServiceList} from '@/api/manage'
肖超群 authored
203
肖超群 authored
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
export default {
  name: "TableList",
  components: {
    AInput,
    ATextarea,
    STable
  },
  data() {
    return {
      visibleCreateModal: false,
      visible: false,
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 12},
      },
      form: null,
      mdl: {},

      // 高级搜索 展开/关闭
      advanced: true,
      // 查询参数
      queryParam: {},
      // 表头
      columns: [
        {
          title: '规则编号',
          dataIndex: 'no'
肖超群 authored
235
        },
肖超群 authored
236
237
238
        {
          title: '描述',
          dataIndex: 'description'
肖超群 authored
239
        },
肖超群 authored
240
241
242
243
244
245
246
247
248
249
250
        {
          title: '服务调用次数',
          dataIndex: 'callNo',
          sorter: true,
          needTotal: true,
          customRender: (text) => text + ' 次'
        },
        {
          title: '状态',
          dataIndex: 'status',
          needTotal: true
肖超群 authored
251
        },
肖超群 authored
252
        {
253
          title: this.$t('system.updateTime'),
肖超群 authored
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
          dataIndex: 'updatedAt',
          sorter: true
        },
        {
          table: '操作',
          dataIndex: 'action',
          width: '150px',
          scopedSlots: {customRender: 'action'},
        }
      ],
      // 加载数据方法 必须为 Promise 对象
      loadData: parameter => {
        return getServiceList(Object.assign(parameter, this.queryParam))
          .then(res => {
            return res.result
          })
      },
肖超群 authored
271
肖超群 authored
272
273
274
275
276
277
278
279
280
281
282
283
      selectedRowKeys: [],
      selectedRows: []
    }
  },
  created() {
    getRoleList({t: new Date()})
  },
  methods: {
    handleEdit(record) {
      this.mdl = Object.assign({}, record)
      console.log(this.mdl)
      this.visible = true
肖超群 authored
284
    },
肖超群 authored
285
    handleOk() {
肖超群 authored
286
肖超群 authored
287
    },
肖超群 authored
288
肖超群 authored
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
    //添加逻辑
    handleModalVisible(isVisible) {
      this.visibleCreateModal = isVisible;
    },
    handleCreateModalOk() {
      this.createForm.validateFields((err, fieldsValue) => {
        if (err) {
          return;
        }
        const description = this.createForm.getFieldValue('description');
        axios.post('/saveRule', {
          desc: description,
        }).then((res) => {
          this.createForm.resetFields();
          this.visibleCreateModal = false;
          this.loadRuleData();
肖超群 authored
305
        });
肖超群 authored
306
307
308
309
310
      });
    },
    handleCreateModalCancel() {
      this.visibleCreateModal = false;
    },
肖超群 authored
311
肖超群 authored
312
313
314
    onChange(row) {
      this.selectedRowKeys = row.selectedRowKeys
      this.selectedRows = row.selectedRows
肖超群 authored
315
肖超群 authored
316
317
318
319
      console.log(this.$refs.table)
    },
    toggleAdvanced() {
      this.advanced = !this.advanced
肖超群 authored
320
    },
肖超群 authored
321
322
323
324

    resetSearchForm() {
      this.queryParam = {
        date: moment(new Date())
肖超群 authored
325
326
      }
    }
肖超群 authored
327
328
329
330
331
332
333
334
335
336
337
338
339
340
  },
  watch: {
    /*
    'selectedRows': function (selectedRows) {
      this.needTotalList = this.needTotalList.map(item => {
        return {
          ...item,
          total: selectedRows.reduce( (sum, val) => {
            return sum + val[item.dataIndex]
          }, 0)
        }
      })
    }
    */
肖超群 authored
341
  }
肖超群 authored
342
}
肖超群 authored
343
</script>