Blame view

ant-design-vue-jeecg/src/views/jeecg/modules/JeecgDemoTabsModal.vue 9.67 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <a-modal
    :title="title"
    :width="1200"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭">

    <a-spin :spinning="confirmLoading">
      <a-form :form="form">
肖超群 authored
14
        <a-card class="card" :bordered="false">
肖超群 authored
15
16
17
          <a-row class="form-row" :gutter="16">
            <a-col :lg="8">
              <a-form-item label="任务名">
肖超群 authored
18
19
                <a-input placeholder="请输入任务名称"
                         v-decorator="[ 'task.name', {rules: [{ required: true, message: '请输入任务名称', whitespace: true}]} ]"/>
肖超群 authored
20
21
22
23
              </a-form-item>
            </a-col>
            <a-col :lg="8">
              <a-form-item label="任务描述">
肖超群 authored
24
25
                <a-input placeholder="请输入任务描述"
                         v-decorator="['task.description', {rules: [{ required: true, message: '请输入任务描述', whitespace: true}]} ]"/>
肖超群 authored
26
27
28
29
              </a-form-item>
            </a-col>
            <a-col :lg="8">
              <a-form-item label="执行人">
肖超群 authored
30
31
                <a-select placeholder="请选择执行人"
                          v-decorator="['task.executor',{rules: [{ required: true, message: '请选择执行人'}]}  ]">
肖超群 authored
32
33
34
35
36
37
38
39
40
                  <a-select-option value="黄丽丽">黄丽丽</a-select-option>
                  <a-select-option value="李大刀">李大刀</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
          </a-row>
          <a-row class="form-row" :gutter="16">
            <a-col :lg="8">
              <a-form-item label="责任人">
肖超群 authored
41
42
                <a-select placeholder="请选择责任人"
                          v-decorator="['task.manager',  {rules: [{ required: true, message: '请选择责任人'}]} ]">
肖超群 authored
43
44
45
46
47
48
49
                  <a-select-option value="王伟">王伟</a-select-option>
                  <a-select-option value="李红军">李红军</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
            <a-col :lg="8">
              <a-form-item label="提醒时间">
肖超群 authored
50
51
                <a-time-picker style="width: 100%"
                               v-decorator="['task.time', {rules: [{ required: true, message: '请选择提醒时间'}]} ]"/>
肖超群 authored
52
53
54
55
56
              </a-form-item>
            </a-col>
            <a-col :lg="8">
              <a-form-item
                label="任务类型">
肖超群 authored
57
58
                <a-select placeholder="请选择任务类型"
                          v-decorator="['task.type', {rules: [{ required: true, message: '请选择任务类型'}]} ]">
肖超群 authored
59
60
61
62
63
64
65
66
                  <a-select-option value="定时执行">定时执行</a-select-option>
                  <a-select-option value="周期执行">周期执行</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
          </a-row>
        </a-card>
肖超群 authored
67
        <a-tabs defaultActiveKey="1">
肖超群 authored
68
69
70
          <a-tab-pane tab="Tab 1" key="1">

            <a-table :columns="columns" :dataSource="data" :pagination="false" size="middle">
肖超群 authored
71
72
73
74
75
76
77
              <template v-for="(col, i) in ['name', 'workId', 'department']" :slot="col"
                        slot-scope="text, record, index">
                <a-tooltip title="必填项" :defaultVisible="false" :overlayStyle="{ color: 'red' }">
                  <a-input :key="col" v-if="record.editable" style="margin: -5px 0" :value="text"
                           :placeholder="columns[i].title"
                           @change="e => handlerRowChange(e.target.value, record.key, col)"/>
                  <template v-else>{{ text }}</template>
肖超群 authored
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
                </a-tooltip>
              </template>
              <template slot="operation" slot-scope="text, record, index">
                <template v-if="record.editable">
                  <span v-if="record.isNew">
                    <a @click="saveRow(record.key)">添加</a>
                    <a-divider type="vertical"/>
                    <a-popconfirm title="是否要删除此行?" @confirm="removeRow(record.key)"><a>删除</a></a-popconfirm>
                  </span>
                  <span v-else>
                    <a @click="saveRow(record.key)">保存</a>
                    <a-divider type="vertical"/>
                    <a @click="cancelEditRow(record.key)">取消</a>
                  </span>
                </template>
                <span v-else>
                  <a @click="editRow(record.key)">编辑</a>
                  <a-divider type="vertical"/>
                  <a-popconfirm title="是否要删除此行?" @confirm="removeRow(record.key)"><a>删除</a></a-popconfirm>
                </span>
              </template>
            </a-table>
肖超群 authored
101
102
103
            <a-button style="width: 100%; margin-top: 16px; margin-bottom: 8px" type="dashed" icon="plus"
                      @click="newRow">新增成员
            </a-button>
肖超群 authored
104
105
106
107
108
109
110
111
112
113
114
115
116
          </a-tab-pane>
          <a-tab-pane tab="Tab 2" key="2" forceRender>
            Content of Tab Pane 2
          </a-tab-pane>
          <a-tab-pane tab="Tab 3" key="3">Content of Tab Pane 3</a-tab-pane>
        </a-tabs>

      </a-form>
    </a-spin>
  </a-modal>
</template>

<script>
肖超群 authored
117
118
119
import {httpAction} from '@/api/manage'
import pick from 'lodash.pick'
import moment from "moment"
肖超群 authored
120
肖超群 authored
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
export default {
  name: "JeecgDemoTabsModal",
  data() {
    return {
      title: "操作",
      visible: false,
      model: {},
      // table
      columns: [
        {
          title: '成员姓名',
          dataIndex: 'name',
          key: 'name',
          width: '20%',
          scopedSlots: {customRender: 'name'}
肖超群 authored
136
        },
肖超群 authored
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
        {
          title: '工号',
          dataIndex: 'workId',
          key: 'workId',
          width: '20%',
          scopedSlots: {customRender: 'workId'}
        },
        {
          title: '所属部门',
          dataIndex: 'department',
          key: 'department',
          width: '40%',
          scopedSlots: {customRender: 'department'}
        },
        {
          title: '操作',
          key: 'action',
          scopedSlots: {customRender: 'operation'}
        }
      ],
      data: [
        {
          key: '1',
          name: '小明',
          workId: '001',
          editable: false,
          department: '行政部'
        },
        {
          key: '2',
          name: '李莉',
          workId: '002',
          editable: false,
          department: 'IT部'
        },
        {
          key: '3',
          name: '王小帅',
          workId: '003',
          editable: false,
          department: '财务部'
        }
      ],

      confirmLoading: false,
      form: this.$form.createForm(this),
      validatorRules: {},
      url: {
        add: "/test/jeecgDemo/add",
        edit: "/test/jeecgDemo/edit",
      },
    }
  },
  created() {
  },
  methods: {
    add() {
      this.edit({});
肖超群 authored
195
    },
肖超群 authored
196
197
198
199
200
201
202
203
204
205
206
    edit(record) {
      this.form.resetFields();
      this.model = Object.assign({}, record);
      this.visible = true;
      this.$nextTick(() => {
        this.form.setFieldsValue(pick(this.model, 'name', 'keyWord', 'sex', 'age', 'email', 'content'))
        //时间格式化
        this.form.setFieldsValue({punchTime: this.model.punchTime ? moment(this.model.punchTime, 'YYYY-MM-DD HH:mm:ss') : null})
        this.form.setFieldsValue({birthday: this.model.birthday ? moment(this.model.birthday) : null})
      });
肖超群 authored
207
    },
肖超群 authored
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
    close() {
      this.$emit('close');
      this.visible = false;
    },
    handleOk() {
      const that = this;
      // 触发表单验证
      this.form.validateFields((err, values) => {
        if (!err) {
          that.confirmLoading = true;
          let httpurl = '';
          let method = '';
          if (!this.model.id) {
            httpurl += this.url.add;
            method = 'post';
          } else {
            httpurl += this.url.edit;
            method = 'put';
          }
          let formData = Object.assign(this.model, values);
肖超群 authored
228
          //时间格式化
肖超群 authored
229
230
          formData.punchTime = formData.punchTime ? formData.punchTime.format('YYYY-MM-DD HH:mm:ss') : null;
          formData.birthday = formData.birthday ? formData.birthday.format() : null;
肖超群 authored
231
肖超群 authored
232
233
234
235
236
          console.log(formData)
          httpAction(httpurl, formData, method).then((res) => {
            if (res.success) {
              that.$message.success(res.message);
              that.$emit('ok');
肖超群 authored
237
            } else {
肖超群 authored
238
              that.$message.warning(res.message);
肖超群 authored
239
            }
肖超群 authored
240
241
242
243
          }).finally(() => {
            that.confirmLoading = false;
            that.close();
          })
肖超群 authored
244
        }
肖超群 authored
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
      })
    },
    handleCancel() {
      this.close()
    },
    newRow() {
      // 通过时间戳生成 UUID
      let uuid = Math.round(new Date().getTime()).toString();
      console.log('uuid: ' + uuid)
      this.data.push({
        key: uuid,
        name: '',
        workId: '',
        department: '',
        editable: true,
        isNew: true
      })
    },
    removeRow(key) {
      const newData = this.data.filter(item => item.key !== key)
      this.data = newData
    },
    saveRow(key) {
      let target = this.data.filter(item => item.key === key)[0]
      target.editable = false
      target.isNew = false
    },
    handlerRowChange(value, key, column) {
      const newData = [...this.data]
      const target = newData.filter(item => key === item.key)[0]
      if (target) {
        target[column] = value
        this.data = newData
      }
    },
    editRow(key) {
      let target = this.data.filter(item => item.key === key)[0]
      target.editable = !target.editable
    },
    cancelEditRow(key) {
      let target = this.data.filter(item => item.key === key)[0]
      target.editable = false
    },
肖超群 authored
288
  }
肖超群 authored
289
}
肖超群 authored
290
291
292
</script>

<style scoped>
肖超群 authored
293
294
295
.ant-modal-body {
  padding: 8px !important;
}
肖超群 authored
296
</style>