Blame view

ant-design-vue-jeecg/src/components/jeecg/JEditableTable.vue 122 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- JEditableTable -->
<!-- @version 1.6.2 -->
<!-- @author sjlei -->
<template>
  <a-spin :spinning="loading">

    <a-row type="flex">
      <a-col>
        <slot name="buttonBefore" :target="getVM()"/>
      </a-col>
      <a-col>
        <!-- 操作按钮 -->
        <div v-if="actionButton" class="action-button">
          <a-button-group v-if="buttonPermission('add')">
            <a-button type="primary" icon="plus" @click="handleClickAdd" :disabled="disabled">新增</a-button>
            <a-popover v-if="addButtonSettings" placement="right" overlayClassName="j-add-btn-settings">
              <a-row slot="title">
                <a-col :span="12">选项</a-col>
                <a-col :span="12" style="text-align: right;">
                  <a-tooltip title="保存为默认值">
肖超群 authored
21
22
                    <a-button type="link" icon="save" size="small" style="position: relative;left:4px;"
                              @click="onAddButtonSettingsSave"/>
肖超群 authored
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
                  </a-tooltip>
                </a-col>
              </a-row>
              <template slot="content">
                <a-form-model layout="horizontal" :labelCol="{span:8}" :wrapperCol="{span:16}">
                  <a-form-model-item label="添加行数">
                    <a-input-number v-model="settings.addRowNum" :min="1"/>
                  </a-form-model-item>
                  <a-form-model-item label="添加位置">
                    <a-input-number v-model="settings.addIndex" :min="0" :max="rows.length"/>
                    <p style="font-size: 12px;color:#aaa;line-height: 14px;text-align: right;margin: 0;">0 = 最底部</p>
                  </a-form-model-item>
                  <a-divider style="margin: 8px 0;"/>
                  <a-checkbox v-model="settings.addScrollToBottom">添加后滚动到底部</a-checkbox>
                </a-form-model>
              </template>
              <a-button icon="setting" type="primary"></a-button>
            </a-popover>
          </a-button-group>
          <span class="gap"></span>
          <template v-if="selectedRowIds.length>0">
            <a-popconfirm
              :title="`确定要删除这 ${selectedRowIds.length} 项吗?`"
              @confirm="handleConfirmDelete">
肖超群 authored
47
48
              <a-button v-if="buttonPermission('batch_delete')" type="primary" icon="minus" :disabled="disabled">删除
              </a-button>
肖超群 authored
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
              <span class="gap"></span>
            </a-popconfirm>
            <template v-if="showClearSelectButton">
              <a-button icon="delete" @click="handleClickClearSelection">清空选择</a-button>
              <span class="gap"></span>
            </template>
          </template>
        </div>
      </a-col>
      <a-col>
        <slot name="buttonAfter" :target="getVM()"/>
      </a-col>
    </a-row>

    <slot name="actionButtonAfter" :target="getVM()"/>

    <div :id="`${caseId}inputTable`" class="input-table">
      <!-- 渲染表头 -->
      <div class="thead" ref="thead">
        <div class="tr" :style="{width: this.realTrWidth}">
          <!-- 左侧固定td  -->
          <div v-if="dragSort" class="td td-ds" :style="style.tdLeft">
            <span></span>
          </div>
          <div v-if="rowSelection" class="td td-cb" :style="style.tdLeft">
            <!--:indeterminate="true"-->
            <a-checkbox
              :checked="getSelectAll"
              :indeterminate="getSelectIndeterminate"
              @change="handleChangeCheckedAll"
            />
          </div>
          <div v-if="rowNumber" class="td td-num" :style="style.tdLeft">
            <span>#</span>
          </div>
          <!-- 右侧动态生成td -->
          <template v-for="col in columns">
            <div
              v-show="col.type !== formTypes.hidden"
              class="td"
              :key="col.key"
              :style="buildTdStyle(col)">

              <span>{{ col.title }}</span>
            </div>
          </template>
        </div>
      </div>

      <div class="scroll-view" ref="scrollView" :style="{'max-height':maxHeight+'px'}">


        <!-- 渲染主体 body -->
        <div :id="`${caseId}tbody`" class="tbody" :style="tbodyStyle">
          <!-- 扩展高度 -->
          <div class="tr-expand" :style="`height:${getExpandHeight}px; z-index:${loading?'11':'9'};`"></div>
          <!-- 无数据时显示 -->
          <div v-if="rows.length===0" class="tr-nodata">
            <span>暂无数据</span>
          </div>
          <!-- v-model="rows"-->
          <draggable
            :value="rows"
            handle=".td-ds-icons"
            @start="handleDragMoveStart"
            @end="handleDragMoveEnd"
          >

            <!-- 动态生成tr -->
            <template v-for="(row,rowIndex) in rows">
              <!-- tr 只加载可见的和预加载的总共十条数据 -->
              <div
                v-if="
                rowIndex >= parseInt(`${(scrollTop-rowHeight) / rowHeight}`) &&
                  (parseInt(`${scrollTop / rowHeight}`) + 9) > rowIndex
              "
                :id="`${caseId}tbody-tr-${rowIndex}`"
                :data-idx="rowIndex"
                class="tr"
                :class="selectedRowIds.indexOf(row.id) !== -1 ? 'tr-checked' : ''"
                :style="buildTrStyle(rowIndex)"
                :key="row.id"
                @click="handleClickTableRow"
              >
                <!-- 左侧固定td  -->
肖超群 authored
135
                <div v-if="dragSort" class="td td-ds" :style="style.tdLeft" @dblclick="_handleRowInsertDown(rowIndex)">
肖超群 authored
136
137
138
139
140
141
142
                  <a-dropdown :trigger="['click']" :getPopupContainer="getParentContainer">
                    <div class="td-ds-icons">
                      <a-icon type="align-left"/>
                      <a-icon type="align-right"/>
                    </div>

                    <a-menu slot="overlay">
肖超群 authored
143
144
145
146
147
                      <a-menu-item key="0" :disabled="rowIndex===0" @click="_handleRowMoveUp(rowIndex)">向上移
                      </a-menu-item>
                      <a-menu-item key="1" :disabled="rowIndex===(rows.length-1)" @click="_handleRowMoveDown(rowIndex)">
                        向下移
                      </a-menu-item>
肖超群 authored
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
                      <a-menu-divider/>
                      <a-menu-item key="3" @click="_handleRowInsertDown(rowIndex)">插入一行</a-menu-item>
                    </a-menu>
                  </a-dropdown>
                </div>

                <div v-if="rowSelection" class="td td-cb" :style="style.tdLeft">
                  <!-- 此 v-for 只是为了拼接 id 字符串 -->
                  <template v-for="(id,i) in [`${row.id}`]">
                    <a-checkbox
                      :id="id"
                      :key="i"
                      :checked="selectedRowIds.indexOf(id) !== -1"
                      @change="handleChangeLeftCheckbox"/>
                  </template>
                </div>
                <div v-if="rowNumber" class="td td-num" :style="style.tdLeft">
肖超群 authored
165
                  <span>{{ rowIndex + 1 }}</span>
肖超群 authored
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
195
196
197
198
199
200
201
202
203
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
235
236
237
238
239
240
241
242
243
244
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
                </div>
                <!-- 右侧动态生成td -->
                <div
                  class="td"
                  v-for="col in columns"
                  v-show="col.type !== formTypes.hidden"
                  :key="col.key"
                  :style="buildTdStyle(col)">

                  <!-- 此 v-for 只是为了拼接 id 字符串 -->
                  <template v-for="(id,i) in [`${col.key}${row.id}`]">

                    <!-- native input -->
                    <label :key="i" v-if="col.type === formTypes.input || col.type === formTypes.inputNumber">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <input
                          v-if="isEditRow(row, col)"
                          :id="id"
                          v-bind="buildProps(row,col)"
                          :data-input-number="col.type === formTypes.inputNumber"
                          :placeholder="replaceProps(col, col.placeholder)"
                          @blur="(e)=>{handleBlurCommono(e.target,rowIndex,row,col)}"
                          @input="(e)=>{handleInputCommono(e.target,rowIndex,row,col)}"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ inputValues[rowIndex][col.key] }}</span>
                      </a-tooltip>
                    </label>
                    <!-- checkbox -->
                    <template v-else-if="col.type === formTypes.checkbox">
                      <a-checkbox
                        :key="i"
                        :id="id"
                        v-bind="buildProps(row,col)"
                        :checked="checkboxValues[id]"
                        @change="(e)=>handleChangeCheckboxCommon(e,row,col)"
                      />
                    </template>
                    <!-- select -->
                    <template v-else-if="col.type === formTypes.select">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <a-select
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="selectValues[id]"
                          :options="col.options"
                          :getPopupContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          :filterOption="(i,o)=>handleSelectFilterOption(i,o,col)"
                          :maxTagCount="1"
                          @change="(v)=>handleChangeSelectCommon(v,id,row,col)"
                          @search="(v)=>handleSearchSelect(v,id,row,col)"
                          @blur="(v)=>handleBlurSearch(v,id,row,col)"
                          allowClear
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click.stop="handleEditRow(row, col)"
                        >{{ getSelectTranslateText(selectValues[id], row, col) }}</span>
                      </a-tooltip>
                    </template>

                    <!-- 部门选择 -->
                    <template v-else-if="col.type === formTypes.sel_depart">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-select-depart
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="departCompValues[id]"
                          :placeholder="replaceProps(col, col.placeholder)"
                          :trigger-change="true"
                          :multi="isMultipleSelect(col)"
                          @change="(v)=>handleChangeDepartCommon(v,id,row,col)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ departCompValues[id] }}</span>
                      </a-tooltip>
                    </template>

                    <!-- 用户选择 -->
                    <template v-else-if="col.type === formTypes.sel_user">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-select-user-by-dep
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="userCompValues[id]"
                          :placeholder="replaceProps(col, col.placeholder)"
                          :trigger-change="true"
                          :multi="isMultipleSelect(col)"
                          @change="(v)=>handleChangeUserCommon(v,id,row,col)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ userCompValues[id] }}</span>
                      </a-tooltip>
                    </template>

                    <!-- date -->
                    <template v-else-if="col.type === formTypes.date || col.type === formTypes.datetime">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-date
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="jdateValues[id]"
                          :getCalendarContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          :trigger-change="true"
                          :showTime="col.type === formTypes.datetime"
                          :dateFormat="col.type === formTypes.date? 'YYYY-MM-DD':'YYYY-MM-DD HH:mm:ss'"
                          allowClear
                          @change="(v)=>handleChangeJDateCommon(v,id,row,col,col.type === formTypes.datetime)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ jdateValues[id] }}</span>
                      </a-tooltip>
                    </template>

                    <!-- time -->
                    <template v-else-if="col.type === formTypes.time">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-time
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="jdateValues[id]"
                          :getCalendarContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          allowClear
                          @change="(v)=>handleChangeJDateCommon(v,id,row,col)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ jdateValues[id] }}</span>
                      </a-tooltip>
                    </template>

                    <!-- input_pop -->
                    <template v-else-if="col.type === formTypes.input_pop||col.type === 'textarea'">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-input-pop
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          :width="300"
                          :height="210"
                          :pop-container="`${caseId}tbody`"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="jInputPopValues[id]"
                          :getCalendarContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          @change="(v)=>handleChangeJInputPopCommon(v,id,row,col)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ jInputPopValues[id] }}</span>
                      </a-tooltip>
                    </template>
                    <!-- upload -->
                    <div v-else-if="col.type === formTypes.upload" :key="i">
                      <template v-if="uploadValues[id] != null" v-for="(file,fileKey) of [(uploadValues[id]||{})]">
                        <a-input
                          :key="fileKey"
                          :readOnly="true"
                          :value="file.name"
                        >

                          <template slot="addonBefore" style="width: 30px">
                            <a-tooltip v-if="file.status==='uploading'" :title="`上传中(${Math.floor(file.percent)}%)`">
                              <a-icon type="loading"/>
                            </a-tooltip>
                            <a-tooltip v-else-if="file.status==='done'" title="上传完成">
                              <a-icon type="check-circle" style="color:#00DB00;"/>
                            </a-tooltip>
                            <a-tooltip v-else :title="file.message||'上传失败'">
                              <a-icon type="exclamation-circle" style="color:red;"/>
                            </a-tooltip>
                          </template>
肖超群 authored
382
383
384
385
                          <template v-if="col.allowDownload!==false || col.allowRemove!==false" slot="addonAfter"
                                    style="width: 30px">
                            <a-dropdown :trigger="['click']" placement="bottomRight"
                                        :getPopupContainer="getParentContainer">
肖超群 authored
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
                              <a-tooltip title="操作" :getPopupContainer="getParentContainer">
                                <a-icon
                                  v-if="file.status!=='uploading'"
                                  type="setting"
                                  style="cursor: pointer;"/>
                              </a-tooltip>

                              <a-menu slot="overlay">
                                <a-menu-item v-if="col.allowDownload!==false" @click="handleClickDownloadFile(id)">
                                  <span><a-icon type="download"/>&nbsp;下载</span>
                                </a-menu-item>
                                <a-menu-item v-if="col.allowRemove!==false" @click="handleClickDelFile(id)">
                                  <span><a-icon type="delete"/>&nbsp;删除</span>
                                </a-menu-item>
                              </a-menu>
                            </a-dropdown>
                          </template>

                        </a-input>
                      </template>

                      <div :hidden="uploadValues[id] != null">
                        <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                          <a-upload
                            name="file"
                            :data="{'isup':1, ...(col.data||{})}"
                            :multiple="false"
                            :action="col.action"
                            :headers="uploadGetHeaders(row,col)"
                            :showUploadList="false"
                            v-bind="buildProps(row,col)"
                            @change="(v)=>handleChangeUpload(v,id,row,col)"
                          >
                            <a-button icon="upload">{{ col.placeholder }}</a-button>
                          </a-upload>
                        </a-tooltip>
                      </div>

                    </div>

                    <!-- update-begin-author:taoyan date:0827 for:popup -->
                    <template v-else-if="col.type === formTypes.popup">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-popup
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          :placeholder="replaceProps(col, col.placeholder)"
                          style="width: 100%;"
                          :value="getPopupValue(id)"
                          :field="col.field || col.key"
                          :org-fields="col.orgFields"
                          :dest-fields="col.destFields"
                          :code="col.popupCode"
                          :groupId="caseId"
                          :param="col.param"
                          :sorter="col.sorter"
                          @input="(value,others)=>popupCallback(value,others,id,row,col,rowIndex)"
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ getPopupValue(id) }}</span>
                      </a-tooltip>
                    </template>
                    <!-- update-end-author:taoyan date:0827 for:popup -->

                    <!-- update-beign-author:taoyan date:0827 for:文件/图片逻辑新增 -->
                    <div v-else-if="col.type === formTypes.file" :key="i">
                      <template v-if="hasUploadValue(id)" v-for="(file,fileKey) of [(uploadValues[id]||{})]">
                        <div :key="fileKey" style="position: relative;">
                          <a-tooltip v-if="file.status==='uploading'" :title="`上传中(${Math.floor(file.percent)}%)`">
                            <a-icon type="loading" style="color:red;"/>
肖超群 authored
462
                            <span style="color:red;margin-left:5px">{{ file.status }}</span>
肖超群 authored
463
464
465
                          </a-tooltip>

                          <a-tooltip v-else-if="file.status==='done'" :title="file.name">
肖超群 authored
466
467
                            <a-icon type="paper-clip"/>
                            <span style="margin-left:5px">{{ getEllipsisWord(file.name, 5) }}</span>
肖超群 authored
468
469
470
471
                          </a-tooltip>

                          <a-tooltip v-else :title="file.message||'上传失败'">
                            <a-icon type="exclamation-circle" style="color:red;"/>
肖超群 authored
472
                            <span style="margin-left:5px">{{ getEllipsisWord(file.name, 5) }}</span>
肖超群 authored
473
474
475
                          </a-tooltip>

                          <template style="width: 30px">
肖超群 authored
476
477
                            <a-dropdown :trigger="['click']" placement="bottomRight"
                                        :getPopupContainer="getParentContainer" style="margin-left: 10px;">
肖超群 authored
478
479
480
481
482
483
484
485
486
487
488
489
                              <a-tooltip title="操作" :getPopupContainer="getParentContainer">
                                <a-icon v-if="file.status!=='uploading'" type="setting" style="cursor: pointer;"/>
                              </a-tooltip>

                              <a-menu slot="overlay">
                                <a-menu-item v-if="col.allowDownload!==false" @click="handleClickDownFileByUrl(id)">
                                  <span><a-icon type="download"/>&nbsp;下载</span>
                                </a-menu-item>
                                <a-menu-item @click="handleClickDelFile(id)">
                                  <span><a-icon type="delete"/>&nbsp;删除</span>
                                </a-menu-item>
                                <a-menu-item @click="handleMoreOperation(id,col,col)">
肖超群 authored
490
                                  <span><a-icon type="bars"/> 更多</span>
肖超群 authored
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
                                </a-menu-item>
                              </a-menu>
                            </a-dropdown>
                          </template>
                        </div>
                      </template>

                      <div :hidden="hasUploadValue(id)">
                        <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                          <a-upload
                            name="file"
                            :data="{'isup':1}"
                            :multiple="false"
                            :action="getUploadAction(col.action)"
                            :headers="uploadGetHeaders(row,col)"
                            :showUploadList="false"
                            v-bind="buildProps(row,col)"
                            @change="(v)=>handleChangeUpload(v,id,row,col)"
                          >
                            <a-button icon="upload">上传文件</a-button>
                          </a-upload>
                        </a-tooltip>
                      </div>

                    </div>

                    <div v-else-if="col.type === formTypes.image" :key="i">
                      <template v-if="hasUploadValue(id)" v-for="(file,fileKey) of [(uploadValues[id]||{})]">
                        <div :key="fileKey" style="position: relative;">
肖超群 authored
520
521
                          <template
                            v-if="!uploadValues[id] || !(uploadValues[id]['url'] || uploadValues[id]['path'] || uploadValues[id]['message'])">
肖超群 authored
522
523
524
                            <a-icon type="loading"/>
                          </template>
                          <template v-else-if="uploadValues[id]['path']">
肖超群 authored
525
526
                            <img class="j-editable-image" :src="getCellImageView(id)" alt="无图片"
                                 @click="handleMoreOperation(id,'img',col)"/>
肖超群 authored
527
528
529
530
531
532
                          </template>
                          <a-tooltip v-else :title="file.message||'上传失败'" @click="handleClickShowImageError(id)">
                            <a-icon type="exclamation-circle" style="color:red;"/>
                          </a-tooltip>

                          <template style="width: 30px">
肖超群 authored
533
534
                            <a-dropdown :trigger="['click']" placement="bottomRight"
                                        :getPopupContainer="getParentContainer" style="margin-left: 10px;">
肖超群 authored
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
                              <a-tooltip title="操作" :getPopupContainer="getParentContainer">
                                <a-icon
                                  v-if="file.status!=='uploading'"
                                  type="setting"
                                  style="cursor: pointer;"/>
                              </a-tooltip>

                              <a-menu slot="overlay">
                                <a-menu-item v-if="col.allowDownload!==false" @click="handleClickDownFileByUrl(id)">
                                  <span><a-icon type="download"/>&nbsp;下载</span>
                                </a-menu-item>
                                <a-menu-item @click="handleClickDelFile(id)">
                                  <span><a-icon type="delete"/>&nbsp;删除</span>
                                </a-menu-item>
                                <a-menu-item @click="handleMoreOperation(id,'img',col)">
肖超群 authored
550
                                  <span><a-icon type="bars"/> 更多</span>
肖超群 authored
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
                                </a-menu-item>
                              </a-menu>
                            </a-dropdown>
                          </template>

                        </div>
                      </template>

                      <div :hidden="hasUploadValue(id)">
                        <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                          <a-upload
                            name="file"
                            :data="{'isup':1}"
                            :multiple="false"
                            :action="getUploadAction(col.action)"
                            :headers="uploadGetHeaders(row,col)"
                            :showUploadList="false"
                            v-bind="buildProps(row,col)"
                            @change="(v)=>handleChangeUpload(v,id,row,col)"
                          >
                            <a-button icon="upload">上传图片</a-button>
                          </a-upload>
                        </a-tooltip>
                      </div>

                    </div>
                    <!-- update-end-author:taoyan date:0827 for:图片逻辑新增 -->

                    <!-- radio-begin -->
                    <template v-else-if="col.type === formTypes.radio">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <a-radio-group
                          :id="id"
                          :key="i"
                          v-bind="buildProps(row,col)"
                          :value="radioValues[id]"
                          @change="(e)=>handleRadioChange(e.target.value,id,row,col)">
肖超群 authored
588
589
590
591
                          <a-radio v-for="(item, key) in col.options" :key="key" :value="item.value">{{
                              item.text
                            }}
                          </a-radio>
肖超群 authored
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
                        </a-radio-group>
                      </a-tooltip>
                    </template>
                    <!-- radio-end -->

                    <!-- select多选 -begin -->
                    <template v-else-if="col.type === formTypes.list_multi">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <a-select
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          mode="multiple"
                          :maxTagCount="1"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="multiSelectValues[id]"
                          :options="col.options"
                          :getPopupContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          @change="(v)=>handleMultiSelectChange(v,id,row,col)"
                          allowClear
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ getSelectTranslateText(multiSelectValues[id], row, col) }} </span>
                      </a-tooltip>
                    </template>
                    <!-- select多选 -end -->

                    <!-- select搜索 -begin -->
                    <template v-else-if="col.type === formTypes.sel_search">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <a-select
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          showSearch
                          optionFilterProp="children"
                          :filterOption="filterOption"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          :value="searchSelectValues[id]"
                          :options="col.options"
                          :getPopupContainer="getParentContainer"
                          :placeholder="replaceProps(col, col.placeholder)"
                          @change="(v)=>handleSearchSelectChange(v,id,row,col)"
                          allowClear
                        />
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ getSelectTranslateText(searchSelectValues[id], row, col) }}</span>
                      </a-tooltip>
                    </template>
                    <!-- select搜索 -end -->

                    <!-- select异步搜索 -begin -->
                    <template v-else-if="col.type === formTypes.sel_search_async">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <j-search-select-tag
                          v-if="isEditRow(row, col)"
                          :id="id"
                          :key="i"
                          :value="searchSelectAsyncValues[id]"
                          :placeholder="replaceProps(col, col.placeholder)"
                          :dict="col.dict"
                          :async="true"
                          :getPopupContainer="getParentContainer"
                          v-bind="buildProps(row,col)"
                          style="width: 100%;"
                          @change="(v)=>handleSearchSelectAsyncChange(v,id,row,col)"
                        >
                        </j-search-select-tag>
                        <span
                          v-else
                          class="j-td-span no-edit"
                          :class="{disabled: buildProps(row,col).disabled}"
                          @click="handleEditRow(row, col)"
                        >{{ searchSelectAsyncValues[id] }}</span>
                      </a-tooltip>
                    </template>
                    <!-- select异步搜索 -end -->

                    <div v-else-if="col.type === formTypes.slot" :key="i">
                      <a-tooltip v-bind="buildTooltipProps(row, col, id)">
                        <!--  update:sunjianlei date:2022-1-17 for:buildProps新增参数 -->
                        <slot
                          :name="(col.slot || col.slotName) || col.key"
                          :index="rowIndex"
                          :text="slotValues[id]"
                          :value="slotValues[id]"
                          :column="col"
                          :rowId="getCleanId(row.id)"
                          :getValue="()=>_getValueForSlot(row.id)"
                          :caseId="caseId"
                          :allValues="_getAllValuesForSlot()"
                          :target="getVM()"
                          :handleChange="(v)=>handleChangeSlotCommon(v,id,row,col)"
                          :isNotPass="notPassedIds.includes(col.key+row.id)"
                          :buildProps="()=>buildProps(row,col)"
                        />
                      </a-tooltip>
                    </div>

                    <!-- else (normal) -->
肖超群 authored
703
704
                    <span class="comp-normal" v-else :key="i" :title="inputValues[rowIndex][col.key]"
                          v-bind="buildProps(row,col)">{{ inputValues[rowIndex][col.key] }}</span>
肖超群 authored
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
                  </template>
                </div>
              </div>
              <!-- -- tr end -- -->

            </template>
          </draggable>


          <!-- 统计行 -->
          <div
            v-if="showStatisticsRow"
            class="tr"
            :style="{
              ...buildTrStyle(rows.length),
              height: '32px'
            }"
          >
            <div v-if="dragSort" class="td td-ds" :style="style.tdLeft">
            </div>
            <div v-if="rowSelection" class="td td-cb" :style="style.tdLeft">
              统计
            </div>
            <div v-if="rowNumber" class="td td-num" :style="style.tdLeft">
              <span v-if="!rowSelection">统计</span>
            </div>

            <!-- 右侧动态生成td -->
            <template v-for="col in columns">
              <div
                :key="col.key"
                class="td"
                v-show="col.type !== formTypes.hidden"
                :style="buildTdStyle(col)"
              >
                <span
                  v-show="col.type === formTypes.inputNumber"
                  style="padding: 0 5px;"
肖超群 authored
743
                >{{ statisticsColumns[col.key] }}</span>
肖超群 authored
744
745
746
747
748
749
750
751
752
753
754
755
756
              </div>
            </template>

          </div>

        </div>
      </div>
      <j-file-pop ref="filePop" @ok="handleFileSuccess" :number="number"></j-file-pop>
    </div>
  </a-spin>
</template>

<script>
肖超群 authored
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
import Vue from 'vue'
import Draggable from 'vuedraggable'
import {ACCESS_TOKEN} from '@/store/mutation-types'
import {FormTypes, VALIDATE_NO_PASSED} from '@/utils/JEditableTableUtil'
import {cloneObject, getEventPath, randomNumber, randomString} from '@/utils/util'
import JDate from '@/components/jeecg/JDate'
import {filterDictText, initDictOptions} from '@/components/dict/JDictSelectUtil'
import {getFileAccessHttpUrl} from '@/api/manage'
import JInputPop from '@/components/jeecg/minipop/JInputPop'
import JFilePop from '@/components/jeecg/minipop/JFilePop'
import {getNoAuthCols} from '@/utils/authFilter'

// 行高,需要在实例加载完成前用到
let rowHeight = 61

export default {
  name: 'JEditableTable',
  components: {JDate, Draggable, JInputPop, JFilePop},
  provide() {
    return {
      parentIsJEditableTable: true,
      getDestroyCleanGroupRequest: () => this.destroyCleanGroupRequest,
    }
  },
  props: {
    // 列信息
    columns: {
      type: Array,
      required: true
    },
    // 数据源
    dataSource: {
      type: Array,
      required: true,
      default: () => []
    },
    // 是否显示操作按钮
    actionButton: {
      type: Boolean,
      default: false
    },
    // 是否显示添加按钮选项
    addButtonSettings: {
      type: Boolean,
      default: false
    },
    // 是否显示行号
    rowNumber: {
      type: Boolean,
      default: false
    },
    // 是否可选择行
    rowSelection: {
      type: Boolean,
      default: false
    },
    // 页面是否在加载中
    loading: {
      type: Boolean,
      default: false
    },
    // 表格内容区域最大高度
    maxHeight: {
      type: Number,
      default: 400
    },
    // 要禁用的行
    disabledRows: {
      type: Object,
      default() {
        return {}
肖超群 authored
828
829
      }
    },
肖超群 authored
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
    // 是否禁用全部组件
    disabled: {
      type: Boolean,
      default: false
    },
    // 是否可拖拽排序
    dragSort: {
      type: Boolean,
      default: false
    },
    dragSortKey: {
      type: String,
      default: 'orderNum'
    },
    // 是否一直显示编辑框,如果为false则只有点击的时候才出现输入框
    alwaysEdit: {
      type: Boolean,
      default: true
    },
    authPre: {
      type: String,
      required: false,
      default: ''
    },
  },
  data() {
    return {
      // 是否首次运行
      isFirst: true,
      // 当前实例是否是行编辑
      isJEditableTable: true,
      // caseId,用于防止有多个实例的时候会冲突
      caseId: `_jet-${randomString(6)}-`,
      // 临时ID标识,凡是以该标识结尾的ID都是临时ID,不添加到数据库中
      tempId: `_tid-${randomString(6)}`,
      // 存储document element 对象
      el: {
        inputTable: null,
        tbody: null
      },
      // 存储各个div的style
      style: {
        // 'max-height': '400px'
        tbody: {left: '0px'},
        // 左侧固定td的style
        tdLeft: {},
      },
      // 表单的类型
      formTypes: FormTypes,
      // 行数据
      rows: [],
      // 行高,height + padding + border
      rowHeight,
      // 滚动条顶部距离
      scrollTop: 0,
      // 绑定 select 的值
      selectValues: {},
      // 绑定 checkbox 的值
      checkboxValues: {},
      // 绑定 jdate 的值
      jdateValues: {},
      // 绑定jinputpop
      jInputPopValues: {},
      // 绑定插槽数据
      slotValues: {},
      // file 信息
      uploadValues: {},
      //popup信息
      popupValues: {},
      //部门组件信息
      departCompValues: {},
      //用户组件信息
      userCompValues: {},

      radioValues: {},
      metaCheckboxValues: {},
      multiSelectValues: {},
      searchSelectValues: {},
      searchSelectAsyncValues: {},
      // 绑定左侧选择框已选择的id
      selectedRowIds: [],
      // 存储被删除行的id
      deleteIds: [],
      // 存储显示tooltip的信息
      tooltips: {},
      // 存储没有通过验证的inputId
      notPassedIds: [],

      // 当前是否正在拖拽排序
      dragging: false,
      // 是否有统计列
      hasStatisticsColumn: false,
      statisticsColumns: {},
      // 只有在行编辑被销毁时才主动清空GroupRequest的内存
      destroyCleanGroupRequest: false,
      // 当前正在编辑的行的id
      currentEditRows: {},
      // 上次push数据的事件,用于判断是否点击过快
      lastPushTimeMap: new Map(),
      number: 0,
      //不显示的按钮编码
      excludeCode: [],
      // 选项配置
      settings: {
        // 添加行数
        addRowNum: 1,
        // 添加位置(下标),0 = 最底部
        addIndex: 0,
        // 添加后滚动到底部
        addScrollToBottom: false,
肖超群 authored
940
      },
肖超群 authored
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
    }
  },
  created() {
    this.inputValues = []
    // 当前显示的tr
    this.visibleTrEls = []
    this.disabledRowIds = (this.disabledRowIds || [])
    // 解决火狐浏览器下拖拽会打开新的Tab的问题
    document.body.ondrop = (event) => {
      if (this.dragging) {
        event.preventDefault()
        event.stopPropagation()
      }
    }
    this.getSavedAddButtonSettings()
  },
  // 计算属性
  computed: {
    // expandHeight = rows.length * rowHeight
    getExpandHeight() {
      let length = this.rows.length * this.rowHeight
      if (this.showStatisticsRow) {
        length += 34
      }
      return length
肖超群 authored
966
    },
肖超群 authored
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
    // 是否显示统计行
    showStatisticsRow() {
      return this.hasStatisticsColumn && this.rows.length > 0
    },
    // 获取是否选择了部分
    getSelectIndeterminate() {
      return (this.selectedRowIds.length > 0 &&
        this.selectedRowIds.length < this.rows.length)
    },
    // 获取是否选择了全部
    getSelectAll() {
      return (this.selectedRowIds.length === this.rows.length) && this.rows.length > 0
    },
    tbodyStyle() {
      let style = Object.assign({}, this.style.tbody)
      // style['max-height'] = `${this.maxHeight}px`
      style['width'] = this.realTrWidth
      return style
    },
    showClearSelectButton() {
      let count = 0
      for (let key in this.disabledRows) {
        if (this.disabledRows.hasOwnProperty(key)) count++
肖超群 authored
990
      }
肖超群 authored
991
      return count > 0
肖超群 authored
992
    },
肖超群 authored
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
    accessToken() {
      return Vue.ls.get(ACCESS_TOKEN)
    },
    realTrWidth() {
      let splice = ' + '
      let calcWidth = 'calc('
      this.columns.forEach((column, i) => {
        let {type, width} = column
        // 隐藏字段不参与计算
        if (type !== FormTypes.hidden) {
          if (typeof width === 'number') {
            calcWidth += width + 'px'
          } else if (typeof width === 'string') {
            calcWidth += width
          } else {
            calcWidth += '120px'
          }
          calcWidth += splice
肖超群 authored
1011
        }
肖超群 authored
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
      })
      if (calcWidth.endsWith(splice)) {
        calcWidth = calcWidth.substring(0, calcWidth.length - splice.length)
      }
      calcWidth += ')'
      // console.log('calcWidth: ', calcWidth)
      return calcWidth
    }
  },
  // 侦听器
  watch: {
    rows: {
      immediate: true,
      handler(val, old) {
        // val.forEach(item => {
        //   for (let inputValue of  this.inputValues) {
        //     if (inputValue.id === item.id) {
        //       item['dbFieldName'] = inputValue['dbFieldName']
        //       break
        //     }
        //   }
        // })
        // console.log('watch.rows:', cloneObject({ val, old }))
肖超群 authored
1035
1036
      }
    },
肖超群 authored
1037
1038
1039
1040
1041
1042
1043
    dataSource: {
      immediate: true,
      handler: function (newValue) {
        // 兼容IE
        this.getElementPromise('tbody').then(() => {
          this.initialize()
          this._pushByDataSource(newValue)
肖超群 authored
1044
        })
肖超群 authored
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
      }
    },
    columns: {
      immediate: true,
      handler(columns) {
        //列改变的时候重新设置按钮权限信息
        this.loadExcludeCode()
        // 兼容IE
        this.getElementPromise('tbody').then(() => {
          columns.forEach(column => {
            if (column.type === FormTypes.select || column.type === FormTypes.list_multi || column.type === FormTypes.sel_search) {
              // 兼容 旧版本 options
              if (column.options instanceof Array) {
                column.options = column.options.map(item => {
                  if (item) {
                    return {
                      ...item,
                      text: item.text || item.title,
                      title: item.text || item.title
肖超群 authored
1064
                    }
肖超群 authored
1065
1066
1067
                  }
                  return {}
                })
肖超群 authored
1068
              }
肖超群 authored
1069
1070
1071
1072
              if (column.dictCode) {
                this._loadDictConcatToOptions(column)
              }
            }
肖超群 authored
1073
          })
肖超群 authored
1074
        })
肖超群 authored
1075
1076
      }
    },
肖超群 authored
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
    // 当selectRowIds改变时触发事件
    selectedRowIds(newValue) {
      this.$emit('selectRowChange', cloneObject(newValue).map(i => this.getCleanId(i)))
    }
  },
  mounted() {
    let vm = this
    /** 监听滚动条事件 */
    this.getElement('inputTable').onscroll = function (event) {
      vm.syncScrollBar(event.target.scrollLeft)
    }
    this.getElement('tbody').onscroll = function (event) {
      // vm.recalcTrHiddenItem(event.target.scrollTop)
    }
肖超群 authored
1091
肖超群 authored
1092
1093
    let {thead, scrollView} = this.$refs
    scrollView.onscroll = function (event) {
肖超群 authored
1094
肖超群 authored
1095
      // console.log(event.target.scrollTop, ' - ', event.target.scrollLeft)
肖超群 authored
1096
肖超群 authored
1097
      thead.scrollLeft = event.target.scrollLeft
肖超群 authored
1098
肖超群 authored
1099
      vm.recalcTrHiddenItem(event.target.scrollTop)
肖超群 authored
1100
肖超群 authored
1101
    }
肖超群 authored
1102
肖超群 authored
1103
1104
    // 添加事件监听
    this.addEventListener()
肖超群 authored
1105
肖超群 authored
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
  },
  methods: {
    // 判断文件/图片是否存在
    hasUploadValue(id) {
      let flag = this.uploadValues[id] != null && this.uploadValues[id].toString().length > 0
      return flag;
    },
    getElement(id, noCaseId = false) {
      if (!this.el[id]) {
        this.el[id] = document.getElementById((noCaseId ? '' : this.caseId) + id)
      }
      return this.el[id]
肖超群 authored
1118
1119
    },
肖超群 authored
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
    getElementPromise(id, noCaseId = false) {
      return new Promise((resolve) => {
        let timer = setInterval(() => {
          let element = this.getElement(id, noCaseId)
          if (element) {
            clearInterval(timer)
            resolve(element)
          }
        }, 10)
      })
    },
肖超群 authored
1131
肖超群 authored
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
    /** 初始化列表 */
    initialize() {
      this.visibleTrEls = []
      // 判断是否是首次进入该方法,如果是就不清空行,防止删除了预添加的数据
      if (!this.isFirst) {
        this.clearRow();
      } else {
        this.isFirst = false
      }
    },
    /**清空行*/
    clearRow() {
      // inputValues:用来存储input表单的值
      // 数组里的每项都是一个对象,对象里每个key都是input的rowKey,值就是input的值,其中有个id的字段来区分
      // 示例:
      // [{
      //    id: "_jet-4sp0iu-15541771111770"
      //    dbDefaultVal: "aaa",
      //    dbFieldName: "bbb",
      //    dbFieldTxt: "ccc",
      //    dbLength: 32
      // }]
      this.inputValues = []
      this.rows = []
      this.deleteIds = []
      this.selectedRowIds = []
      this.tooltips = {}
      this.notPassedIds = []
      // 重置values
      this.selectValues = {}
      this.checkboxValues = {}
      this.jdateValues = {}
      this.jInputPopValues = {}
      this.departCompValues = {}
      this.userCompValues = {}
      this.slotValues = {}
      //update-begin-author:shunjlei date:20210415 for:类型赋值错误
      this.uploadValues = {}
      this.popupValues = {}
      this.radioValues = {}
      this.multiSelectValues = {}
      this.searchSelectValues = {}
      this.searchSelectAsyncValues = {}
      //update-end-author:shunjlei date:20210415 for:类型赋值错误

      // 重置滚动条
      this.scrollTop = 0
      this.$nextTick(() => {
        this.getElement('tbody').scrollTop = 0
      })
    },
    /** 同步滚动条状态 */
    syncScrollBar(scrollLeft) {
      // this.style.tbody.left = `${scrollLeft}px`
      // this.getElement('tbody').scrollLeft = scrollLeft
    },
    /** 重置滚动条位置,参数留空则滚动到上次记录的位置 */
    resetScrollTop(top) {
      let {scrollView} = this.$refs
      if (top != null && typeof top === 'number') {
        scrollView.scrollTop = top
      } else {
        scrollView.scrollTop = this.scrollTop
      }
    },
    /** 重新计算需要隐藏或显示的tr */
    recalcTrHiddenItem(top) {
      let diff = top - this.scrollTop
      if (diff < 0) {
        diff = this.scrollTop - top
      }
      // 只有在滚动了百分之三十的行高的距离时才进行更新
      if (diff >= this.rowHeight * 0.3) {
        this.scrollTop = top
        // 更新form表单的值
肖超群 authored
1207
        this.$nextTick(() => {
肖超群 authored
1208
          this.updateFormValues()
肖超群 authored
1209
        })
肖超群 authored
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
      }
    },
    /** 生成id */
    generateId(rows) {
      if (!(rows instanceof Array)) {
        rows = this.rows || []
      }
      let timestamp = new Date().getTime()
      return `${this.caseId}${timestamp}${rows.length}${randomNumber(6)}${this.tempId}`
    },
    /** push 一条数据 */
    push(record, update = true, rows, insertIndex = null, setDefaultValue = true) {
      return this._pushByDataSource([record], [insertIndex], update, rows, setDefaultValue)
    },
肖超群 authored
1224
肖超群 authored
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
    /**
     * push 数据
     *
     * @param dataSource 数据源
     * @param insertIndexes 行插入位置,和dataSource的下标一一对应
     * @param update 是否更新
     * @param rows 若不传就使用 this.rows
     * @param setDefaultValue 是否填充默认值
     *
     */
    _pushByDataSource(dataSource, insertIndexes = null, update = true, rows = null, setDefaultValue = false) {
      if (!(rows instanceof Array)) {
        rows = [...this.rows] || []
      }
      let checkboxValues = {...this.checkboxValues}
      let selectValues = {...this.selectValues}
      let jdateValues = {...this.jdateValues}
      let departCompValues = {...this.departCompValues}
      let userCompValues = {...this.userCompValues}
      let jInputPopValues = {...this.jInputPopValues}
      let slotValues = {...this.slotValues}
      let uploadValues = {...this.uploadValues}
      let popupValues = {...this.popupValues}
      let radioValues = {...this.radioValues}
      let multiSelectValues = {...this.multiSelectValues}
      let searchSelectValues = {...this.searchSelectValues}
      let searchSelectAsyncValues = {...this.searchSelectAsyncValues}
      // 禁用行的id
      let disabledRowIds = (this.disabledRowIds || [])
      dataSource.forEach((data, newValueIndex) => {
        // 不能直接更改数据源的id
        let dataId = data.id
        // 判断源数据是否带有id
        if (dataId == null || dataId === '') {
          dataId = this.generateId(rows)
        } else if (!this.hasCaseId(dataId)) {
          dataId = this.caseId + dataId
        }
        let row = {id: dataId}
        let value = {id: dataId}
        let disabled = false
        this.columns.forEach(column => {
          let inputId = column.key + value.id
          let sourceValue = (data[column.key] == null ? '' : data[column.key]).toString()

          let defaultValue = null;
          if (setDefaultValue) {
            defaultValue = column.defaultValue || (column.defaultValue === 0 ? 0 : '')
            if (defaultValue instanceof Array) {
              defaultValue = defaultValue.join(',')
            }

            sourceValue = (typeof sourceValue === 'number' || sourceValue) ? sourceValue : defaultValue
肖超群 authored
1278
          }
肖超群 authored
1279
          let sourceValueIsEmpty = (sourceValue == null || sourceValue === '')
肖超群 authored
1280
肖超群 authored
1281
1282
1283
1284
1285
1286
          if (column.type === FormTypes.inputNumber) {
            // 判断是否是排序字段,如果是就赋最大值
            if (column.isOrder === true) {
              value[column.key] = this.getInputNumberMaxValue(column) + 1
            } else {
              value[column.key] = sourceValue
肖超群 authored
1287
            }
肖超群 authored
1288
1289
1290
1291
1292
            // 判断是否是统计列
            if (column.statistics) {
              this.hasStatisticsColumn = true
              if (!this.statisticsColumns[column.key]) {
                this.$set(this.statisticsColumns, column.key, 0)
肖超群 authored
1293
              }
肖超群 authored
1294
            }
肖超群 authored
1295
肖超群 authored
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
          } else if (column.type === FormTypes.checkbox) {
            // 判断是否设定了customValue(自定义值)
            if (column.customValue instanceof Array) {
              let customValue = (column.customValue[0] || '').toString()
              if (sourceValueIsEmpty && setDefaultValue) {
                sourceValue = column.defaultChecked ? customValue : sourceValue
              }
              checkboxValues[inputId] = (sourceValue === customValue)
            } else {
              if (sourceValueIsEmpty && setDefaultValue) {
                checkboxValues[inputId] = !!column.defaultChecked
肖超群 authored
1307
              } else {
肖超群 authored
1308
                checkboxValues[inputId] = sourceValue
肖超群 authored
1309
              }
肖超群 authored
1310
            }
肖超群 authored
1311
肖超群 authored
1312
1313
1314
1315
1316
          } else if (column.type === FormTypes.select) {
            if (!sourceValueIsEmpty) {
              // 判断是否是多选
              if (typeof sourceValue === 'string' && (column.props || {})['mode'] === 'multiple') {
                sourceValue = sourceValue === '' ? [] : sourceValue.split(',')
肖超群 authored
1317
              }
肖超群 authored
1318
1319
1320
1321
              selectValues[inputId] = sourceValue
            } else {
              selectValues[inputId] = undefined
            }
肖超群 authored
1322
肖超群 authored
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
          } else if (column.type === FormTypes.date || column.type === FormTypes.datetime || column.type === FormTypes.time) {
            jdateValues[inputId] = sourceValue

          } else if (column.type === FormTypes.slot) {
            slotValues[inputId] = sourceValue

          } else if (column.type === FormTypes.popup) {
            popupValues[inputId] = sourceValue
          } else if (column.type === FormTypes.sel_depart) {
            departCompValues[inputId] = sourceValue
          } else if (column.type === FormTypes.sel_user) {
            userCompValues[inputId] = sourceValue
          } else if (column.type === FormTypes.input_pop || column.type === 'textarea') {
            jInputPopValues[inputId] = sourceValue
          } else if (column.type === FormTypes.radio) {
            radioValues[inputId] = sourceValue
          } else if (column.type === FormTypes.sel_search) {
            searchSelectValues[inputId] = sourceValue
          } else if (column.type === FormTypes.sel_search_async) {
            searchSelectAsyncValues[inputId] = sourceValue
          } else if (column.type === FormTypes.list_multi) {
            if (typeof sourceValue === 'string' && sourceValue.length > 0) {
              multiSelectValues[inputId] = sourceValue.split(',')
            } else {
              multiSelectValues[inputId] = []
            }
          } else if (column.type === FormTypes.upload || column.type === FormTypes.file || column.type === FormTypes.image) {
            if (sourceValue) {
              let fileName = ''
              if (sourceValue.indexOf(',') > 0) {
                let sourceValue2 = sourceValue.split(',')[0]
                fileName = sourceValue2.substring(sourceValue2.lastIndexOf('/') + 1)
肖超群 authored
1355
              } else {
肖超群 authored
1356
                fileName = sourceValue.substring(sourceValue.lastIndexOf('/') + 1)
肖超群 authored
1357
              }
肖超群 authored
1358
1359
1360
1361
              uploadValues[inputId] = {
                name: fileName,
                status: 'done',
                path: sourceValue
肖超群 authored
1362
1363
              }
            } else {
肖超群 authored
1364
              uploadValues[inputId] = null
肖超群 authored
1365
            }
肖超群 authored
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
          } else {
            value[column.key] = sourceValue
          }

          // 解析disabledRows
          for (let columnKey in this.disabledRows) {
            // 判断是否有该属性
            if (this.disabledRows.hasOwnProperty(columnKey) && data.hasOwnProperty(columnKey)) {
              if (disabled !== true) {
                let temp = this.disabledRows[columnKey]
                // 禁用规则可以是一个数组
                if (temp instanceof Array) {
                  disabled = temp.includes(data[columnKey])
                } else {
                  disabled = (temp === data[columnKey])
                }
                if (disabled) {
                  disabledRowIds.push(row.id)
肖超群 authored
1384
1385
1386
1387
                }
              }
            }
          }
肖超群 authored
1388
1389
1390
1391
1392
1393
        })
        // 插入行而不是添加到最后
        let added = false
        if (insertIndexes instanceof Array) {
          let insertIndex = insertIndexes[newValueIndex]
          if (typeof insertIndex === 'number') {
肖超群 authored
1394
            added = true
肖超群 authored
1395
1396
            rows.splice(insertIndex, 0, row)
            this.inputValues.splice(insertIndex, 0, value)
肖超群 authored
1397
1398
          }
        }
肖超群 authored
1399
1400
1401
1402
        //update-begin-author:lvdandan date:20201105 for:LOWCOD-987 【online】js增强的问题--数据对象带有id,且和现有数据一致时,替换患有数据
        if (-1 !== rows.findIndex(item => item.id === row.id)) {
          added = true
          this.inputValues = this.inputValues.map(item => item.id === row.id ? value : item)
肖超群 authored
1403
        }
肖超群 authored
1404
1405
1406
1407
1408
1409
1410
1411
        //update-begin-author:lvdandan date:20201105 for:LOWCOD-987 【online】js增强的问题--数据对象带有id,且和现有数据一致时,替换患有数据
        if (!added) {
          rows.push(row)
          this.inputValues.push(value)
        }
      })
      // 启用了拖动排序,就重新计算排序编号
      if (this.dragSort) {
肖超群 authored
1412
        this.inputValues.forEach((item, index) => {
肖超群 authored
1413
          item[this.dragSortKey] = (index + 1)
肖超群 authored
1414
        })
肖超群 authored
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
      }
      this.disabledRowIds = disabledRowIds
      this.checkboxValues = checkboxValues
      this.selectValues = selectValues
      this.jdateValues = jdateValues
      this.departCompValues = departCompValues
      this.userCompValues = userCompValues
      this.jInputPopValues = jInputPopValues
      this.slotValues = slotValues
      this.uploadValues = uploadValues
      this.popupValues = popupValues
      this.radioValues = radioValues
      this.multiSelectValues = multiSelectValues
      this.searchSelectValues = searchSelectValues
      this.searchSelectAsyncValues = searchSelectAsyncValues
      // 重新计算所有统计列
      this.recalcAllStatisticsColumns()
      // 更新到 dom
      if (update) {
肖超群 authored
1434
1435
        this.rows = rows
肖超群 authored
1436
        // 更新form表单的值
肖超群 authored
1437
        this.$nextTick(() => {
肖超群 authored
1438
          this.forceUpdateFormValues()
肖超群 authored
1439
        })
肖超群 authored
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
      }
      return rows
    },

    /** 获取某一数字输入框列中的最大的值 */
    getInputNumberMaxValue(column) {
      let maxNum = 0
      this.inputValues.forEach((item, index) => {
        let val = item[column.key], num
        try {
          num = parseInt(val)
        } catch {
          num = 0
        }
        // 把首次循环的结果当成最大值
        if (index === 0) {
          maxNum = num
        } else {
          maxNum = (num > maxNum) ? num : maxNum
肖超群 authored
1459
        }
肖超群 authored
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
      })
      return maxNum
    },
    /** 添加一行 */
    add(num = 1, forceScrollToBottom = false) {
      if (num < 1) return
      // let timestamp = new Date().getTime()
      let rows = this.rows
      let row
      for (let i = 0; i < num; i++) {
        rows = this.push({}, false, rows)
        row = rows[rows.length - 1]
      }
      this.rows = rows

      this.$nextTick(() => {
        this.updateFormValues()
      })
      // 触发add事件
      this.$emit('added', {
        row: (() => {
          let r = Object.assign({}, row)
          r.id = this.getCleanId(r.id)
          return r
        })(),
        target: this
      })
      // 设置滚动条位置
      let tbody = this.getElement('tbody')
      let offsetHeight = tbody.offsetHeight
      let realScrollTop = tbody.scrollTop + offsetHeight
      if (forceScrollToBottom) {
肖超群 authored
1492
        this.$nextTick(() => {
肖超群 authored
1493
          this.resetScrollTop(this.$refs.scrollView.scrollHeight)
肖超群 authored
1494
        })
肖超群 authored
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
      }
    },
    /**
     * 在指定位置添加一行
     * @param insertIndex 添加位置下标
     * @param num 添加的行数,默认1
     */
    insert(insertIndex, num = 1, forceScrollToBottom = false) {
      if (this.checkTooFastClick('insert', 1500)) {
        return
      }
      if (!insertIndex && num < 1) return
      let rows = this.rows
      let newRows = []
      for (let i = 0; i < num; i++) {
        let row = {id: this.generateId(rows)}
        rows = this.push(row, false, rows, insertIndex)
        newRows.push(row)
      }
      // 同步更改
      this.rows = rows
      this.$nextTick(() => {
        this.recalcSortNumber()
        this.forceUpdateFormValues()
      })
      // 触发 insert 事件
      this.$emit('inserted', {
        rows: newRows.map(row => {
          let r = cloneObject(row)
          r.id = this.getCleanId(r.id)
          return r
        }),
        num, insertIndex,
        target: this
      })
      // 设置滚动条位置
      if (forceScrollToBottom) {
        this.$nextTick(() => {
          this.resetScrollTop(this.$refs.scrollView.scrollHeight)
肖超群 authored
1534
        })
肖超群 authored
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
      }
    },
    /** 删除被选中的行 */
    removeSelectedRows() {
      this.removeRows(this.selectedRowIds)
      this.selectedRowIds = []
    },
    /** 删除一行或多行 */
    removeRows(id) {
      let ids = id
      if (!(id instanceof Array)) {
        if (typeof id === 'string') {
          ids = [id]
        } else {
          throw  `JEditableTable.removeRows() 函数需要的参数可以是string或Array类型,但提供的却是${typeof id}`
肖超群 authored
1550
        }
肖超群 authored
1551
      }
肖超群 authored
1552
肖超群 authored
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
      let rows = cloneObject(this.rows)
      ids.forEach(removeId => {
        removeId = this.getCleanId(removeId)
        // 找到每个id对应的真实index并删除
        const findAndDelete = (arr) => {
          for (let i = 0; i < arr.length; i++) {
            let currentId = this.getCleanId(arr[i].id)
            if (currentId === removeId) {
              arr.splice(i, 1)
              return true
肖超群 authored
1563
1564
            }
          }
肖超群 authored
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
        }
        // 找到rows对应的index,并删除
        if (findAndDelete(rows)) {
          // 找到values对应的index,并删除
          findAndDelete(this.inputValues)
          // 将caseId去除
          let id = this.getCleanId(removeId)
          this.deleteIds.push(id)
        }
      })
      this.rows = rows
      this.$emit('deleted', this.getDeleteIds(), this)
      this.$nextTick(() => {
        // 更新formValues
        this.updateFormValues()
        // 重新计算统计
        this.recalcAllStatisticsColumns()
      })
      return true
    },
肖超群 authored
1585
肖超群 authored
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
    /** 获取表格表单里的值(异步版) */
    getValuesAsync(options = {}, callback) {
      let {validate, rowIds, deleteTempId} = options
      if (typeof validate !== 'boolean') validate = true
      if (!(rowIds instanceof Array)) rowIds = null
      // 是否删除临时ID,默认为 false
      if (typeof deleteTempId !== 'boolean') deleteTempId = false
      // console.log('options:', { validate, rowIds })

      let asyncCount = 0
      let error = 0
      let inputValues = cloneObject(this.inputValues)
      let tooltips = Object.assign({}, this.tooltips)
      let notPassedIds = cloneObject(this.notPassedIds)
      // 用于存储合并后的值
      let values = []
      // 遍历inputValues来获取每行的值
      for (let value of inputValues) {
        let rowIdsFlag = false
        // 如果带有rowIds,那么就只存这几行的数据
        if (rowIds == null) {
          rowIdsFlag = true
        } else {
          for (let rowId of rowIds) {
            if (this.getCleanId(rowId) === this.getCleanId(value.id)) {
              rowIdsFlag = true
              break
肖超群 authored
1613
1614
            }
          }
肖超群 authored
1615
        }
肖超群 authored
1616
肖超群 authored
1617
        if (!rowIdsFlag) continue
肖超群 authored
1618
肖超群 authored
1619
1620
1621
1622
1623
1624
1625
1626
1627
        this.columns.forEach(column => {
          let inputId = column.key + value.id
          if (column.type === FormTypes.checkbox) {
            let checked = this.checkboxValues[inputId]
            if (column.customValue instanceof Array) {
              value[column.key] = checked ? column.customValue[0] : column.customValue[1]
            } else {
              value[column.key] = checked
            }
肖超群 authored
1628
肖超群 authored
1629
1630
1631
1632
1633
1634
1635
          } else if (column.type === FormTypes.select) {
            let selected = this.selectValues[inputId]
            if (selected instanceof Array) {
              value[column.key] = cloneObject(selected)
            } else {
              value[column.key] = selected
            }
肖超群 authored
1636
肖超群 authored
1637
1638
          } else if (column.type === FormTypes.date || column.type === FormTypes.datetime || column.type === FormTypes.time) {
            value[column.key] = this.jdateValues[inputId]
肖超群 authored
1639
肖超群 authored
1640
1641
          } else if (column.type === FormTypes.sel_depart) {
            value[column.key] = this.departCompValues[inputId]
肖超群 authored
1642
肖超群 authored
1643
1644
          } else if (column.type === FormTypes.sel_user) {
            value[column.key] = this.userCompValues[inputId]
肖超群 authored
1645
肖超群 authored
1646
1647
          } else if (column.type === FormTypes.input_pop || column.type === 'textarea') {
            value[column.key] = this.jInputPopValues[inputId]
肖超群 authored
1648
肖超群 authored
1649
1650
          } else if (column.type === FormTypes.upload) {
            value[column.key] = cloneObject(this.uploadValues[inputId] || null)
肖超群 authored
1651
肖超群 authored
1652
1653
1654
1655
          } else if (column.type === FormTypes.image || column.type === FormTypes.file) {
            let currUploadObj = cloneObject(this.uploadValues[inputId] || null)
            if (currUploadObj) {
              value[column.key] = currUploadObj['path'] || null
肖超群 authored
1656
1657
            }
肖超群 authored
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
          } else if (column.type === FormTypes.popup) {
            if (!value[column.key]) {
              value[column.key] = this.popupValues[inputId] || null
            }
          } else if (column.type === FormTypes.radio) {
            value[column.key] = this.radioValues[inputId]
          } else if (column.type === FormTypes.sel_search) {
            value[column.key] = this.searchSelectValues[inputId]
          } else if (column.type === FormTypes.sel_search_async) {
            value[column.key] = this.searchSelectAsyncValues[inputId]
          } else if (column.type === FormTypes.list_multi) {
            if (!this.multiSelectValues[inputId] || this.multiSelectValues[inputId].length === 0) {
              value[column.key] = ''
            } else {
              value[column.key] = this.multiSelectValues[inputId].join(',')
            }
          } else if (column.type === FormTypes.slot) {
            value[column.key] = this.slotValues[inputId]
          }


          // 检查表单验证
          if (validate === true) {
            const handleValidateOneInput = (results) => {
              tooltips[inputId] = results[0]
              if (tooltips[inputId].passed === false) {
                error++
                // if (error++ === 0) {
                // let element = document.getElementById(inputId)
                // while (element.className !== 'tr') {
                //   element = element.parentElement
                // }
                // this.jumpToId(inputId, element)
                // }
肖超群 authored
1692
              }
肖超群 authored
1693
1694
              tooltips[inputId].visible = false
              notPassedIds = results[1]
肖超群 authored
1695
            }
肖超群 authored
1696
1697
1698
1699
1700
1701
            asyncCount++
            let results = this.validateOneInputAsync(value[column.key], value, column, notPassedIds, false, 'getValues', (results) => {
              handleValidateOneInput(results)
              asyncCount--
            })
            handleValidateOneInput(results)
肖超群 authored
1702
          }
肖超群 authored
1703
1704
1705
1706
1707
1708
        })
        // 删除 tempId
        if (deleteTempId && this.isTempId(value.id)) {
          delete value.id
        } else {
          value.id = this.getCleanId(value.id)
肖超群 authored
1709
1710
        }
肖超群 authored
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
        values.push(value)
      }

      if (validate === true) {
        this.tooltips = tooltips
        this.notPassedIds = notPassedIds
      }

      const timer = setInterval(() => {
        if (asyncCount === 0) {
          clearInterval(timer)
          if (typeof callback === 'function') {
            callback({error, values})
肖超群 authored
1724
          }
肖超群 authored
1725
1726
        }
      }, 10)
肖超群 authored
1727
肖超群 authored
1728
1729
      return {error, values}
    },
肖超群 authored
1730
肖超群 authored
1731
1732
1733
1734
    /** 获取表格表单里的值(同步版) */
    getValuesSync(options = {}) {
      return this.getValuesAsync(options)
    },
肖超群 authored
1735
肖超群 authored
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
    /** 获取表格表单里的值 */
    getValues(callback, validate = true, rowIds) {
      this.getValuesAsync({validate, rowIds}, ({error, values}) => {
        if (typeof callback === 'function') {
          callback(error, values)
        }
      })
    },
    /** getValues的Promise版 */
    getValuesPromise(validate = true, rowIds, deleteTempId) {
      return new Promise((resolve, reject) => {
        this.getValuesAsync({validate, rowIds, deleteTempId}, ({error, values}) => {
          if (error === 0) {
            resolve(values)
          } else {
            reject(VALIDATE_NO_PASSED)
肖超群 authored
1752
1753
          }
        })
肖超群 authored
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
      })
    },
    /** 获取被删除项的id */
    getDeleteIds() {
      return cloneObject(this.deleteIds)
    },
    /** 获取所有的数据,包括values、deleteIds */
    getAll(validate, deleteTempId) {
      return new Promise((resolve, reject) => {
        let deleteIds = this.getDeleteIds()
        this.getValuesPromise(validate, null, deleteTempId).then((values) => {
          resolve({values, deleteIds})
        }).catch(error => {
          reject(error)
肖超群 authored
1768
        })
肖超群 authored
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
      })
    },
    /** Sync 获取所有的数据,包括values、deleteIds */
    getAllSync(validate, rowIds, deleteTempId) {
      let result = this.getValuesSync({validate, rowIds, deleteTempId})
      result.deleteIds = this.getDeleteIds()
      return result
    },
    // slot 获取值
    _getValueForSlot(rowId) {
      return this.getValuesSync({rowIds: [rowId]}).values[0]
    },
    _getAllValuesForSlot() {
      return cloneObject({
        inputValues: this.inputValues,
        selectValues: this.selectValues,
        checkboxValues: this.checkboxValues,
        jdateValues: this.jdateValues,
        departCompValues: this.departCompValues,
        userCompValues: this.userCompValues,
        jInputPopValues: this.jInputPopValues,
        slotValues: this.slotValues,
        uploadValues: this.uploadValues,
        popupValues: this.popupValues,
        radioValues: this.radioValues,
        multiSelectValues: this.multiSelectValues,
        searchSelectValues: this.searchSelectValues,
        searchSelectAsyncValues: this.searchSelectAsyncValues,
      })
    },
    /** 设置某行某列的值 */
    setValues(values) {

      values.forEach(item => {
        let {rowKey, values: newValues} = item
        rowKey = this.getCleanId(rowKey)
        for (let newValueKey in newValues) {
          if (newValues.hasOwnProperty(newValueKey)) {
            let edited = false // 已被修改
            for (let column of this.columns) {
              if (column.key === newValueKey) {
                let newValue = newValues[newValueKey]
                this.inputValues.forEach(value => {
                  // 在inputValues中找到了该字段
                  if (rowKey === this.getCleanId(value.id)) {
                    if (value.hasOwnProperty(newValueKey)) {
肖超群 authored
1815
                      edited = true
肖超群 authored
1816
                      value[newValueKey] = newValue
肖超群 authored
1817
1818
                    }
                  }
肖超群 authored
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
                })
                if (!edited) {
                  let modelKey = `${newValueKey}${this.caseId}${rowKey}`
                  if (column.type === FormTypes.select) {
                    if (newValue !== 0 && !newValue) {
                      edited = this.setOneValue(this.selectValues, modelKey, undefined)
                    } else {
                      edited = this.setOneValue(this.selectValues, modelKey, newValue)
                    }
                  } else if (column.type === FormTypes.checkbox) {
                    // checkbox 特殊处理 CustomValue
                    let key = this.valuesHasOwnProperty(this.checkboxValues, modelKey)
                    // 找到对应的column
                    let sourceValue
                    // 判断是否设定了customValue(自定义值)
                    if (column.customValue instanceof Array) {
                      let customValue = (column.customValue[0] || '').toString()
                      sourceValue = (newValue === customValue)
                    } else {
                      sourceValue = !!newValue
                    }
                    this.$set(this.checkboxValues, key, sourceValue)
                    edited = true
                  } else if (column.type === FormTypes.date || column.type === FormTypes.datetime || column.type === FormTypes.time) {
                    edited = this.setOneValue(this.jdateValues, modelKey, newValue)
                  } else if (column.type === FormTypes.sel_depart) {
                    edited = this.setOneValue(this.departCompValues, modelKey, newValue)
                  } else if (column.type === FormTypes.sel_user) {
                    edited = this.setOneValue(this.userCompValues, modelKey, newValue)
                  } else if (column.type === FormTypes.input_pop || column.type === 'textarea') {
                    edited = this.setOneValue(this.jInputPopValues, modelKey, newValue)
                  } else if (column.type === FormTypes.slot) {
                    edited = this.setOneValue(this.slotValues, modelKey, newValue)
                  } else if (column.type === FormTypes.upload || column.type === FormTypes.image || column.type === FormTypes.file) {
                    edited = this.setOneValue(this.uploadValues, modelKey, newValue)
                  } else if (column.type === FormTypes.popup) {
                    edited = this.setOneValue(this.popupValues, modelKey, newValue)
                  } else if (column.type === FormTypes.radio) {
                    edited = this.setOneValue(this.radioValues, modelKey, newValue)
                  } else if (column.type === FormTypes.list_multi) {
                    edited = this.setOneValue(this.multiSelectValues, modelKey, newValue, true)
                  } else if (column.type === FormTypes.sel_search) {
                    edited = this.setOneValue(this.searchSelectValues, modelKey, newValue)
                  } else if (column.type === FormTypes.sel_search_async) {
                    edited = this.setOneValue(this.searchSelectAsyncValues, modelKey, newValue)
                  } else {
                    edited = false
肖超群 authored
1866
1867
                  }
                }
肖超群 authored
1868
1869
1870
1871
1872
                if (edited) {
                  // update-begin-author:sunjianlei date:20211222 for: 修复 setValues 触发的 valueChange 事件没有id的问题
                  this.elemValueChange(column.type, {id: rowKey}, column, newValue)
                  // update-end-author:sunjianlei date:20211222 for: 修复 setValues 触发的 valueChange 事件没有id的问题
                }
肖超群 authored
1873
              }
肖超群 authored
1874
1875
1876
            }
            if (!edited) {
              console.warn(`JEditableTable.setValues:没有找到"${newValueKey}"列`)
肖超群 authored
1877
1878
            }
          }
肖超群 authored
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
        }
      })
      // 强制更新formValues
      this.forceUpdateFormValues()
    },
    /**
     * 设置单个组件的值
     * @param valuesObject 组件存储值的对象
     * @param modelKey 组件存储值的对象里的key
     * @param value 新值
     * @param isMultiple 是否多选,如果是就会对 value 进行一个 split(',') 的操作
     */
    setOneValue(valuesObject, modelKey, value, isMultiple = false) {
      let key = this.valuesHasOwnProperty(valuesObject, modelKey)
      if (key) {
        // 处理多选数组
        if (isMultiple && !Array.isArray(value)) {
          value = (value || '').toString().trim()
          value = value === '' ? [] : value.split(',')
        }
        this.$set(valuesObject, key, value)
        return true
      }
      return false
    },
    valuesHasOwnProperty(values, ownProperty) {
      let key = ownProperty
      if (values.hasOwnProperty(key)) {
        return key
      }
      if (values.hasOwnProperty(key + this.tempId)) {
        return key + this.tempId
      }
      return null
    },

    /** 跳转到指定位置 */
    // jumpToId(id, element) {
    //   if (element == null) {
    //     element = document.getElementById(id)
    //   }
    //   if (element != null) {
    //     console.log(this.getElement('tbody').scrollTop, element.offsetTop)
    //     this.getElement('tbody').scrollTop = element.offsetTop
    //     console.log(this.getElement('tbody').scrollTop, element.offsetTop)
    //   }
    // },

    /**
     * 验证单个表单,异步版
     *
     * @param value 校验的值
     * @param row 校验的行
     * @param column 校验的列
     * @param notPassedIds 没有通过校验的 id
     * @param update 是否更新到vue中
     * @param validType 校验触发的方式(input、blur等)
     * @param callback
     */
    validateOneInputAsync(value, row, column, notPassedIds, update = false, validType = 'input', callback) {
      let tooltips = Object.assign({}, this.tooltips)
      // let notPassedIds = cloneObject(this.notPassedIds)
      let inputId = column.key + row.id
      tooltips[inputId] = tooltips[inputId] ? tooltips[inputId] : {}

      let [passed, message] = this.validateValue(column, value)

      const nextThen = res => {
        let [passed, message] = res
        // !(passed == null && tooltips[inputId].visible != null)
        if (passed != null) {
          tooltips[inputId].visible = !passed
          tooltips[inputId].passed = passed
          let index = notPassedIds.indexOf(inputId)
          if (!passed) {
            tooltips[inputId].title = this.replaceProps(column, message)
            if (index === -1) notPassedIds.push(inputId)
          } else {
            if (index !== -1) notPassedIds.splice(index, 1)
肖超群 authored
1958
1959
          }
        }
肖超群 authored
1960
1961
1962
1963
        // 是否更新到data
        if (update) {
          this.tooltips = tooltips
          this.notPassedIds = notPassedIds
肖超群 authored
1964
        }
肖超群 authored
1965
1966
1967

        if (typeof callback === 'function') {
          callback([tooltips[inputId], notPassedIds])
肖超群 authored
1968
1969
        }
肖超群 authored
1970
      }
肖超群 authored
1971
肖超群 authored
1972
1973
1974
1975
1976
1977
1978
      if (typeof passed === 'function') {
        let executed = false
        passed(validType, value, {id: this.getCleanId(row.id)}, {...column}, (flag, msg) => {
          if (executed) return
          executed = true
          if (typeof msg === 'string') {
            message = msg
肖超群 authored
1979
          }
肖超群 authored
1980
1981
1982
1983
1984
1985
1986
1987
1988
          if (flag == null) {
            nextThen([true, message])
          } else {
            nextThen([!!flag, message])
          }
        }, this)
      } else {
        nextThen([passed, message])
      }
肖超群 authored
1989
肖超群 authored
1990
1991
      return [tooltips[inputId], notPassedIds]
    },
肖超群 authored
1992
肖超群 authored
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
    /** 验证单个表单 */
    validateOneInput(value, row, column, notPassedIds, update = false, validType = 'input') {
      return this.validateOneInputAsync(value, row, column, notPassedIds, update, validType)
    },
    /** 通过规则验证值是否正确 */
    validateValue(column, value) {
      let rules = column.validateRules
      let passed = true, message = ''
      // 判断有没有验证规则或验证规则格式正不正确,若条件不符合则默认通过
      if (rules instanceof Array) {
        for (let rule of rules) {
          // 当前值是否为空
          let isNull = (value == null || value === '')
          // 验证规则:非空
          if (rule.required === true && isNull) {
            passed = false
          } else // 使用 else-if 是为了防止一个 rule 中出现两个规则
肖超群 authored
2010
            // 验证规则:唯一校验
肖超群 authored
2011
2012
2013
2014
2015
2016
2017
          if (rule.unique === true || rule.pattern === 'only') {
            let {values} = this.getValuesSync({validate: false})
            let findCount = 0
            for (let val of values) {
              if (val[column.key] === value) {
                if (++findCount >= 2) {
                  passed = false
肖超群 authored
2018
2019
2020
2021
                  break
                }
              }
            }
肖超群 authored
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
          } else
            // 验证规则:正则表达式
          if (!!rule.pattern && !isNull) {

            // 兼容 online 的规则
            let foo = [
              {title: '6到16位数字', value: 'n6-16', pattern: /^\d{6,16}$/},
              {title: '6到16位任意字符', value: '*6-16', pattern: /^.{6,16}$/},
              {title: '6到18位字母', value: 's6-18', pattern: /^[a-z|A-Z]{6,18}$/},
              {
                title: '网址',
                value: 'url',
                pattern: /^(?:([A-Za-z]+):)?(\/{0,3})([0-9.\-A-Za-z]+)(?::(\d+))?(?:\/([^?#]*))?(?:\?([^#]*))?(?:#(.*))?$/
              },
              {title: '电子邮件', value: 'e', pattern: /^([\w]+\.*)([\w]+)@[\w]+\.\w{3}(\.\w{2}|)$/},
              {title: '手机号码', value: 'm', pattern: /^1[3456789]\d{9}$/},
              {title: '邮政编码', value: 'p', pattern: /^[0-9]{6}$/},
              {title: '字母', value: 's', pattern: /^[A-Z|a-z]+$/},
              {title: '数字', value: 'n', pattern: /^-?\d+(\.?\d+|\d?)$/},
              {title: '整数', value: 'z', pattern: /^-?\d+$/},
              {title: '非空', value: '*', pattern: /^.+$/},
              {title: '金额', value: 'money', pattern: /^(([1-9][0-9]*)|([0]\.\d{0,2}|[1-9][0-9]*\.\d{0,2}))$/},
            ]
            let flag = false
            for (let item of foo) {
              if (rule.pattern === item.value && item.pattern) {
                passed = new RegExp(item.pattern).test(value)
                flag = true
肖超群 authored
2050
2051
2052
                break
              }
            }
肖超群 authored
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
            if (!flag) passed = new RegExp(rule.pattern).test(value)
          } else
            // 校验规则:自定义函数校验
          if (typeof rule.handler === 'function') {
            return [rule.handler, rule.message]
          }
          // 如果没有通过验证,则跳出循环。如果通过了验证,则继续验证下一条规则
          if (!passed) {
            message = rule.message
            break
肖超群 authored
2063
2064
          }
        }
肖超群 authored
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
      }
      return [passed, message]
    },

    /** 动态更新表单的值 */
    updateFormValues() {
      let trs = this.getElement('tbody').getElementsByClassName('tr')
      let trEls = []
      for (let tr of trs) {
        trEls.push(tr)
      }
      // 获取新增的 tr
      let newTrEls = trEls
      if (this.visibleTrEls.length > 0) {
        newTrEls = []
        for (let tr of trEls) {
          let isNewest = true
          for (let vtr of this.visibleTrEls) {
            if (vtr.id === tr.id) {
              isNewest = false
              break
肖超群 authored
2086
2087
            }
          }
肖超群 authored
2088
2089
          if (isNewest) {
            newTrEls.push(tr)
肖超群 authored
2090
2091
          }
        }
肖超群 authored
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
      }
      this.visibleTrEls = trEls
      // 向新增的tr中赋值
      newTrEls.forEach(tr => {
        let {idx} = tr.dataset
        let value = this.inputValues[idx]
        for (let key in value) {
          if (value.hasOwnProperty(key)) {
            let elid = `${key}${value.id}`
            let el = document.getElementById(elid)
            if (el) {
              el.value = value[key]
            }
肖超群 authored
2105
2106
          }
        }
肖超群 authored
2107
2108
2109
2110
2111
2112
2113
2114
      })
    },
    /** 强制更新FormValues */
    forceUpdateFormValues() {
      this.visibleTrEls = []
      this.$forceUpdate()
      this.$nextTick(() => this.updateFormValues())
    },
肖超群 authored
2115
肖超群 authored
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
    // 重新计算所有统计列
    recalcAllStatisticsColumns() {
      if (this.hasStatisticsColumn) {
        Object.keys(this.statisticsColumns).forEach(key => this.recalcOneStatisticsColumn(key))
      }
    },
    // 重新计算单个统计列
    recalcOneStatisticsColumn(key) {
      if (this.hasStatisticsColumn) {
        if (this.statisticsColumns.hasOwnProperty(key)) {
          // 计算合计值
          let count = 0
          this.inputValues.forEach(item => {
            let value = item[key]
            if (value && count !== '-') {
              try {
                count += Number.parseInt(value)
              } catch (e) {
                count = '-'
              }
肖超群 authored
2136
2137
            }
          })
肖超群 authored
2138
          this.statisticsColumns[key] = count
肖超群 authored
2139
        }
肖超群 authored
2140
2141
      }
    },
肖超群 authored
2142
肖超群 authored
2143
2144
2145
2146
2147
    /** 获取某个统计字段的值 */
    getStatisticsValue(key) {
      if (this.hasStatisticsColumn) {
        if (this.statisticsColumns.hasOwnProperty(key)) {
          return this.statisticsColumns[key]
肖超群 authored
2148
        }
肖超群 authored
2149
2150
2151
      }
      return null
    },
肖超群 authored
2152
肖超群 authored
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
    /** 全选或取消全选 */
    handleChangeCheckedAll() {
      let selectedRowIds = []
      if (!this.getSelectAll) {
        this.rows.forEach(row => {
          if ((this.disabledRowIds || []).indexOf(row.id) === -1) {
            selectedRowIds.push(row.id)
          }
        })
      }
      this.selectedRowIds = selectedRowIds
    },
    /** 左侧行选择框change事件 */
    handleChangeLeftCheckbox(event) {
      let {id} = event.target
肖超群 authored
2168
肖超群 authored
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
      if ((this.disabledRowIds || []).indexOf(id) !== -1) {
        return
      }

      let index = this.selectedRowIds.indexOf(id)
      if (index !== -1) {
        this.selectedRowIds.splice(index, 1)
      } else {
        this.selectedRowIds.push(id)
      }

    },
    handleClickAdd() {
      let {addRowNum, addIndex, addScrollToBottom} = this.settings
      if (addIndex <= 0) {
        this.add(addRowNum, addScrollToBottom)
      } else {
        this.insert(addIndex, addRowNum, addScrollToBottom)
      }
    },
    handleConfirmDelete() {
      this.removeSelectedRows()
    },
    handleClickClearSelection() {
      this.clearSelection()
    },
    clearSelection() {
      this.selectedRowIds = []
    },
    // 获取当前选中的行
    getSelection() {
      return this.selectedRowIds.map(id => this.getCleanId(id))
    },
    // 设置当前选中的行
    async setSelection(selectedRowIds) {
      if (Array.isArray(selectedRowIds) && selectedRowIds.length > 0) {
        // 兼容IE
        await this.getElementPromise('tbody')
        await this.$nextTick()
        this.selectedRowIds = selectedRowIds.map(id => {
          let temp = id
          if (!this.hasCaseId(id)) {
            temp = this.caseId + id
          }
          return temp
        })
      }
    },
    // 切换全选状态
    toggleSelectionAll() {
      this.handleChangeCheckedAll()
    },
    /** 用于搜索下拉框中的内容 */
    handleSelectFilterOption(input, option, column) {
      if (column.allowSearch === true || column.allowInput === true) {
        return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
      }
      return true
    },
    /** select 搜索时的事件,用于动态添加options */
    handleSearchSelect(value, id, row, col) {
      if (col.allowSearch !== true && col.allowInput === true) {
        // 是否找到了对应的项,找不到则添加这一项
        let flag = false
        for (let option of col.options) {
          if (option.value.toLocaleString() === value.toLocaleString()) {
            flag = true
            break
          }
肖超群 authored
2238
        }
肖超群 authored
2239
2240
2241
2242
        // !!value :不添加空值
        if (!flag && !!value) {
          // searchAdd 是否是通过搜索添加的
          col.options.push({title: value, value: value, searchAdd: true})
肖超群 authored
2243
        }
肖超群 authored
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253

      }
    },
    // blur 失去焦点
    handleBlurSearch(value, id, row, col) {
      if (col.allowInput === true) {
        // 删除无用的因搜索(用户输入)而创建的项
        if (typeof value === 'string') {
          let indexs = []
          col.options.forEach((option, index) => {
肖超群 authored
2254
            if (option.value.toLocaleString() === value.toLocaleString()) {
肖超群 authored
2255
2256
2257
              delete option.searchAdd
            } else if (option.searchAdd === true) {
              indexs.push(index)
肖超群 authored
2258
            }
肖超群 authored
2259
2260
2261
2262
          })
          // 翻转删除数组中的项
          for (let index of indexs.reverse()) {
            col.options.splice(index, 1)
肖超群 authored
2263
2264
2265
          }
        }
肖超群 authored
2266
2267
2268
2269
      }
      // 做单个表单验证
      this.validateOneInput(value, row, col, this.notPassedIds, true, 'blur')
    },
肖超群 authored
2270
肖超群 authored
2271
2272
2273
2274
    /** 触发已拖动事件 */
    emitDragged(oldIndex, newIndex) {
      this.$emit('dragged', {oldIndex, newIndex, target: this})
    },
肖超群 authored
2275
肖超群 authored
2276
2277
2278
2279
    handleDragMoveStart(event) {
      this.dragging = true
      this.$refs.scrollView.style.overflow = 'hidden'
    },
肖超群 authored
2280
肖超群 authored
2281
2282
2283
2284
    /** 拖动结束,交换inputValue中的值 */
    handleDragMoveEnd(event) {
      this.dragging = false
      this.$refs.scrollView.style.overflow = 'auto'
肖超群 authored
2285
肖超群 authored
2286
      let {oldIndex, newIndex, item: {dataset: {idx: dataIdx}}} = event
肖超群 authored
2287
肖超群 authored
2288
2289
2290
2291
      // 由于动态显示隐藏行导致index有误差,需要算出真实的index
      let diff = Number.parseInt(dataIdx) - oldIndex
      oldIndex += diff
      newIndex += diff
肖超群 authored
2292
肖超群 authored
2293
2294
2295
      this.rowResort(oldIndex, newIndex)
      this.emitDragged(oldIndex, newIndex)
    },
肖超群 authored
2296
肖超群 authored
2297
2298
2299
2300
2301
2302
2303
2304
2305
    /** 行重新排序 */
    rowResort(oldIndex, newIndex) {
      const sort = (array) => {
        // 存储旧数据,并删除旧项目
        let temp = array[oldIndex]
        array.splice(oldIndex, 1)
        // 向新项目里添加旧数据
        array.splice(newIndex, 0, temp)
      }
肖超群 authored
2306
肖超群 authored
2307
2308
      sort(this.rows)
      sort(this.inputValues)
肖超群 authored
2309
肖超群 authored
2310
      this.recalcSortNumber()
肖超群 authored
2311
肖超群 authored
2312
2313
      this.forceUpdateFormValues()
    },
肖超群 authored
2314
肖超群 authored
2315
2316
2317
2318
2319
2320
2321
    /** 重新计算排序字段的数值 */
    recalcSortNumber() {
      if (this.dragSort) {
        // 重置排序字段
        this.inputValues.forEach((val, idx) => val[this.dragSortKey] = (idx + 1))
      }
    },
肖超群 authored
2322
肖超群 authored
2323
2324
2325
2326
2327
2328
2329
2330
    /** 当前行向上移一位 */
    _handleRowMoveUp(rowIndex) {
      if (rowIndex > 0) {
        let newIndex = rowIndex - 1
        this.rowResort(rowIndex, newIndex)
        this.emitDragged(rowIndex, newIndex)
      }
    },
肖超群 authored
2331
肖超群 authored
2332
2333
2334
2335
2336
2337
2338
2339
    /** 当前行向下移一位 */
    _handleRowMoveDown(rowIndex) {
      if (rowIndex < (this.rows.length - 1)) {
        let newIndex = rowIndex + 1
        this.rowResort(rowIndex, newIndex)
        this.emitDragged(rowIndex, newIndex)
      }
    },
肖超群 authored
2340
肖超群 authored
2341
2342
2343
2344
2345
    /** 在当前行下面插入一行 */
    _handleRowInsertDown(rowIndex) {
      let insertIndex = (rowIndex + 1)
      this.insert(insertIndex)
    },
肖超群 authored
2346
肖超群 authored
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
    /* --- common function begin --- */

    /** input事件 */
    handleInputCommono(target, index, row, column) {
      let oldValue = this.inputValues[index][column.key] || ''
      let {value, dataset, selectionStart} = target
      let type = FormTypes.input
      let change = true
      if (`${dataset.inputNumber}` === 'true') {
        type = FormTypes.inputNumber
        // 判断输入的值是否匹配数字正则表达式,不匹配就还原
        if (!/^-?\d+\.?\d*$/.test(value) && (value !== '' && value !== '-')) {
          change = false
          value = oldValue
          target.value = value
          if (typeof selectionStart === 'number') {
            target.selectionStart = selectionStart - 1
            target.selectionEnd = selectionStart - 1
肖超群 authored
2365
2366
          }
        }
肖超群 authored
2367
2368
2369
2370
2371
      }
      // 存储输入的值
      this.inputValues[index][column.key] = value
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'input')
肖超群 authored
2372
肖超群 authored
2373
2374
2375
      if (type === FormTypes.inputNumber) {
        this.recalcOneStatisticsColumn(column.key)
      }
肖超群 authored
2376
肖超群 authored
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
      // 触发valueChange 事件
      if (change) {
        this.elemValueChange(type, row, column, value)
      }
    },
    /** slot Change */
    handleChangeSlotCommon(value, id, row, column) {
      this.slotValues = this.bindValuesChange(value, id, 'slotValues')
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.slot, row, column, value)
    },
    handleBlurCommono(target, index, row, column) {
      let {value, dataset} = target
      if (dataset && `${dataset.inputNumber}` === 'true') {
        // 判断输入的值是否匹配数字正则表达式,不匹配就置空
        if (!/^-?\d+\.?\d*$/.test(value)) {
          value = ''
        } else {
          value = Number.parseFloat(value)
肖超群 authored
2398
        }
肖超群 authored
2399
2400
2401
2402
        target.value = value
      }
      //update--begin--autor:lvdandan-----date:20201126------for:LOWCOD-1088 JEditableTable输入校验提示框位置偏移 #2005
      setTimeout(() => {
肖超群 authored
2403
        // 做单个表单验证
肖超群 authored
2404
2405
2406
2407
2408
2409
2410
        this.validateOneInput(value, row, column, this.notPassedIds, true, 'blur')
      }, 100)
      //update--end--autor:lvdandan-----date:20201126------for:LOWCOD-1088 JEditableTable输入校验提示框位置偏移 #2005
    },
    handleChangeCheckboxCommon(event, row, column) {
      let {id, checked} = event.target
      this.checkboxValues = this.bindValuesChange(checked, id, 'checkboxValues')
肖超群 authored
2411
肖超群 authored
2412
2413
2414
2415
2416
2417
2418
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.checkbox, row, column, checked)
    },
    handleChangeSelectCommon(value, id, row, column) {
      this.selectValues = this.bindValuesChange(value, id, 'selectValues')
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
肖超群 authored
2419
肖超群 authored
2420
2421
2422
2423
2424
2425
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.select, row, column, value)
    },
    handleChangeJDateCommon(value, id, row, column, showTime) {
      this.jdateValues = this.bindValuesChange(value, id, 'jdateValues')
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
肖超群 authored
2426
肖超群 authored
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
      // 触发valueChange 事件
      this.elemValueChange(column.type, row, column, value)
    },
    //部门组件值改变
    handleChangeDepartCommon(value, id, row, column) {
      this.departCompValues = this.bindValuesChange(value, id, 'departCompValues')
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.sel_depart, row, column, value)
    },
    //用户组件值改变
    handleChangeUserCommon(value, id, row, column) {
      this.userCompValues = this.bindValuesChange(value, id, 'userCompValues')
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.sel_user, row, column, value)
    },
    handleChangeJInputPopCommon(value, id, row, column) {
      this.jInputPopValues = this.bindValuesChange(value, id, 'jInputPopValues')
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.input_pop, row, column, value)
    },
    handleChangeUpload(info, id, row, column) {
      let {file} = info
      let value = {
        name: file.name,
        type: file.type,
        size: file.size,
        status: file.status,
        percent: file.percent
      }
      if (column.responseName && file.response) {
        value['responseName'] = file.response[column.responseName]
      }
      if (file.status === 'done') {
        if (typeof file.response.success === 'boolean') {
          // 如果文件上传,被拦截器拦下,还会返回最外层的status = done
          // 但是内部的success会返回false并携带异常信息
          // 整个上传操作还是失败的
          // https://github.com/zhangdaiscott/jeecg-boot/issues/2691
          if (file.response.success) {
肖超群 authored
2470
            value['path'] = file.response[column.responseName]
肖超群 authored
2471
2472
2473
          } else {
            value['status'] = 'error'
            value['message'] = file.response.message || '未知错误'
肖超群 authored
2474
          }
肖超群 authored
2475
2476
2477
        } else {
          // 考虑到如果设置action上传路径为非jeecg-boot后台,可能不会返回 success 属性的情况,就默认为成功
          value['path'] = file.response[column.responseName]
肖超群 authored
2478
        }
肖超群 authored
2479
2480
2481
2482
      } else if (file.status === 'error') {
        value['message'] = file.response.message || '未知错误'
      }
      this.uploadValues = this.bindValuesChange(value, id, 'uploadValues')
肖超群 authored
2483
肖超群 authored
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
      // 触发valueChange 事件
      this.elemValueChange(column.type, row, column, value)
    },
    handleMoreOperation(id, flag, column) {
      //update-begin-author:wangshuai date:20201021 for:LOWCOD-969 判断传过来的字段是否存在number,用于控制上传文件
      if (column.number) {
        this.number = column.number;
      } else {
        this.number = 0;
      }
      //update-end-author:wangshuai date:20201021 for:LOWCOD-969 判断传过来的字段是否存在number,用于控制上传文件
      if (column && column.fieldExtendJson) {
        let json = JSON.parse(column.fieldExtendJson);
        this.number = json.uploadnum ? json.uploadnum : 0;
      }
      //console.log("this.uploadValues[id]",this.uploadValues[id])
      let path = ''
      if (this.uploadValues && this.uploadValues[id]) {
        path = this.uploadValues[id].path
      }
      this.$refs.filePop.show(id, path, flag)
    },
    handleFileSuccess(obj) {
      if (obj.id) {
        this.uploadValues = this.bindValuesChange(obj, obj.id, 'uploadValues')
      }
    },
    handleClickTableRow(event) {
      let {target} = event
      if (target.className === 'td' || target.className === 'tr') {
        // 清空编辑状态
        this.currentEditRows = {}
      }
    },
    // 点击后编辑当前行
    handleEditRow(row, col) {
      if (this.alwaysEdit) {
        return
      }
      // 将点击的组件置为可编辑并还原其他组件的编辑状态
      this.currentEditRows = {
        [row.id]: {
          [col.key]: true
肖超群 authored
2527
        }
肖超群 authored
2528
2529
2530
2531
2532
2533
2534
2535
      }
      if (col.type === FormTypes.input || col.type === FormTypes.inputNumber) {
        this.$nextTick(() => {
          this.forceUpdateFormValues()
          // 自动获取焦点
          let el = document.getElementById(`${col.key}${row.id}`)
          if (el) {
            el.focus()
肖超群 authored
2536
          }
肖超群 authored
2537
2538
2539
        })
      }
    },
肖超群 authored
2540
肖超群 authored
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
    /** 添加按钮设置保存为默认值 */
    onAddButtonSettingsSave() {
      let obj = {
        addRowNum: this.settings.addRowNum,
        addIndex: this.settings.addIndex,
        addScrollToBottom: this.settings.addScrollToBottom,
      }
      this.$ls.set('jet-add-btn-settings', obj)
      this.$message.success('保存成功')
    },
    /** 获取保存的添加按钮默认值 */
    getSavedAddButtonSettings() {
      let obj = this.$ls.get('jet-add-btn-settings')
      if (obj) {
        Object.assign(this.settings, obj)
      }
    },
肖超群 authored
2558
肖超群 authored
2559
2560
2561
2562
2563
    /** 记录用到数据绑定的组件的值 */
    bindValuesChange(value, id, key) {
      this.$set(this[key], id, value)
      return this[key]
    },
肖超群 authored
2564
肖超群 authored
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
    /** value 触发valueChange事件 */
    elemValueChange(type, rowSource, columnSource, value) {
      let column = Object.assign({}, columnSource)
      // 将caseId去除
      let row = Object.assign({}, rowSource)
      row.id = this.getCleanId(row.id)
      // 获取整行的数据
      let {values} = this.getValuesSync({validate: false, rowIds: [row.id]})
      if (values.length > 0) {
        Object.assign(row, values[0])
      }
      this.$emit('valueChange', {type, row, column, value, target: this})
    },
肖超群 authored
2578
肖超群 authored
2579
2580
2581
2582
2583
2584
    /** 获取干净的ID(不包含任何杂质的ID) */
    getCleanId(id) {
      id = this.removeCaseId(id)
      id = this.removeTempId(id)
      return id
    },
肖超群 authored
2585
肖超群 authored
2586
2587
2588
2589
    /** 判断某个ID是否包含了caseId */
    hasCaseId(id) {
      return id && id.startsWith(this.caseId)
    },
肖超群 authored
2590
肖超群 authored
2591
2592
2593
2594
2595
2596
2597
    /** 将caseId去除 */
    removeCaseId(id) {
      if (this.hasCaseId(id)) {
        return id.substring(this.caseId.length, id.length)
      }
      return id
    },
肖超群 authored
2598
肖超群 authored
2599
2600
2601
2602
    // 判断 id 是否是临时Id
    isTempId(id) {
      return (id || '').endsWith(this.tempId)
    },
肖超群 authored
2603
肖超群 authored
2604
2605
2606
2607
2608
2609
2610
    /** 将tempId去除 */
    removeTempId(id) {
      if (this.isTempId(id)) {
        return id.substring(0, id.length - this.tempId.length)
      }
      return id;
    },
肖超群 authored
2611
肖超群 authored
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
    handleClickDelFile(id) {
      this.uploadValues[id] = null
    },
    handleClickDownloadFile(id) {
      let {path} = this.uploadValues[id] || {}
      if (path) {
        let url = getFileAccessHttpUrl(path)
        window.open(url)
      }
    },
    handleClickDownFileByUrl(id) {
      let {url, path} = this.uploadValues[id] || {}
      if (!url || url.length === 0) {
        if (path && path.length > 0) {
          url = getFileAccessHttpUrl(path.split(',')[0])
肖超群 authored
2627
        }
肖超群 authored
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
      }
      if (url) {
        window.open(url)
      }
    },
    handleClickShowImageError(id) {
      let currUploadObj = this.uploadValues[id] || null
      if (currUploadObj && currUploadObj['message']) {
        this.$error({title: '上传出错', content: '错误信息:' + currUploadObj['message'], maskClosable: true})
      }
    },
肖超群 authored
2639
肖超群 authored
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
    /** 加载数据字典并合并到 options */
    _loadDictConcatToOptions(column) {
      initDictOptions(column.dictCode).then((res) => {
        if (res.success) {
          let newOptions = (column.options || [])// .concat(res.result)
          res.result.forEach(item => {
            // 过滤重复数据
            for (let option of newOptions) if (option.value === item.value) return
            newOptions.push(item)
          })
          this.$set(column, 'options', newOptions)
        } else {
          console.group(`JEditableTable 查询字典(${column.dictCode})发生异常`)
          console.log(res.message)
          console.groupEnd()
        }
      })
    },
肖超群 authored
2658
肖超群 authored
2659
    /* --- common function end --- */
肖超群 authored
2660
肖超群 authored
2661
    /* --- 以下是辅助方法,多用于动态构造页面中的数据 --- */
肖超群 authored
2662
肖超群 authored
2663
2664
2665
2666
2667
2668
    /** 辅助方法:打印日志 */
    log() {
      if (this.$attrs.logger) {
        console.log.apply(null, arguments)
      }
    },
肖超群 authored
2669
肖超群 authored
2670
2671
2672
    getVM() {
      return this
    },
肖超群 authored
2673
肖超群 authored
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
    /** 辅助方法:动态构造Tooltip的Props,防止出现不消失的情况 */
    buildTooltipProps(row, col, id) {
      let {notPassedIds, tooltips} = this
      let props = {
        title: (tooltips[id] || {}).title,
        placement: 'top',
        autoAdjustOverflow: true,
        getPopupContainer: this.getParentContainer,
        class: {
          'j-check-failed': false
        },
      }
      let isCheckFailed = notPassedIds.includes(id)
      if (isCheckFailed) {
        props.class['j-check-failed'] = true
      } else {
        props['visible'] = false
      }
      return props
    },
肖超群 authored
2694
肖超群 authored
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
    /** 辅助方法:指定a-select 和 j-data 的父容器 */
    getParentContainer(node) {
      let element = (() => {
        // nodeType 8	: Comment	: 注释
        if (this.$el && this.$el.nodeType !== 8) {
          return this.$el
        }
        let doc = document.getElementById(this.caseId + 'inputTable')
        if (doc != null) {
          return doc
        }
        return node.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode
      })()

      // 递归判断是否带有 overflow: hidden;的父元素
      const ifParent = (child) => {
        let currentOverflow = null
        if (child['currentStyle']) {
          currentOverflow = child['currentStyle']['overflow']
        } else if (window.getComputedStyle) {
          currentOverflow = window.getComputedStyle(child)['overflow']
        }
        if (currentOverflow != null) {
          if (currentOverflow === 'hidden') {
            // 找到了带有 hidden 的标签,判断它的父级是否还有 hidden,直到遇到完全没有 hidden 或 body 的时候才停止递归
            let temp = ifParent(child.parentNode)
            return temp != null ? temp : child.parentNode
          } else
肖超群 authored
2723
            // 当前标签没有 hidden ,如果有父级并且父级不是 body 的话就继续递归判断父级
肖超群 authored
2724
2725
          if (child.parentNode && child.parentNode.tagName.toLocaleLowerCase() !== 'body') {
            return ifParent(child.parentNode)
肖超群 authored
2726
          } else {
肖超群 authored
2727
2728
            // 直到 body 都没有遇到有 hidden 的标签
            return null
肖超群 authored
2729
          }
肖超群 authored
2730
2731
        } else {
          return child
肖超群 authored
2732
        }
肖超群 authored
2733
      }
肖超群 authored
2734
肖超群 authored
2735
2736
2737
      let temp = ifParent(element)
      return (temp != null) ? temp : element
    },
肖超群 authored
2738
肖超群 authored
2739
2740
2741
2742
2743
2744
2745
2746
2747
    /** 辅助方法:替换${...}变量 */
    replaceProps(col, value) {
      if (value && typeof value === 'string') {
        value = value.replace(/\${title}/g, col.title)
        value = value.replace(/\${key}/g, col.key)
        value = value.replace(/\${defaultValue}/g, col.defaultValue)
      }
      return value
    },
肖超群 authored
2748
肖超群 authored
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
    /** view辅助方法:构建 tr style */
    buildTrStyle(index) {
      return {
        'top': `${rowHeight * index}px`
      }
    },
    /** view辅助方法:构建 td style */
    buildTdStyle(col) {
      const isEmptyWidth = (column) => (column.type === FormTypes.hidden || column.width === '0px' || column.width === '0' || column.width === 0)

      let style = {}
      // 计算宽度
      if (col.width) {
        style['width'] = col.width
      } else if (this.columns) {
        style['width'] = `${(100 - 4 * 2) / (this.columns.filter(column => !isEmptyWidth(column))).length}%`
      } else {
        style['width'] = '120px'
      }
      //update-begin-author:lvdandan date:20201116 for:LOWCOD-984 默认风格功能测试附表样式问题 日期时间控件长度太大
      //如果是时间控件设为200px
      if (col.type === FormTypes.datetime) {
        style['width'] = '200px'
      }
      if (col.type === FormTypes.sel_user && !col.width) {
        style['width'] = '220px'
      }
      if (col.type === FormTypes.sel_depart && !col.width) {
        style['width'] = '160px'
      }
      //update-end-author:lvdandan date:20201116 for:LOWCOD-984 默认风格功能测试附表样式问题 日期时间控件长度太大

      // checkbox 居中显示
      let isCheckbox = col.type === FormTypes.checkbox
      if (isCheckbox) {
        style['align-items'] = 'center'
        style['text-align'] = 'center'
        style['padding-left'] = '0'
        style['padding-right'] = '0'
      }
      if (isEmptyWidth(col)) {
        style['padding-left'] = '0'
        style['padding-right'] = '0'
      }
      return style
    },
    /** view辅助方法:构造props */
    buildProps(row, col) {
      let props = {}
      // 解析props
      if (typeof col.props === 'object') {
        for (let prop in col.props) {
          if (col.props.hasOwnProperty(prop)) {
            props[prop] = this.replaceProps(col, col.props[prop])
肖超群 authored
2803
2804
          }
        }
肖超群 authored
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
      }
      // 判断select是否允许输入
      if (col.type === FormTypes.select && (col.allowInput === true || col.allowSearch === true)) {
        props['showSearch'] = true
      }
      if (col.type === FormTypes.sel_depart || col.type === FormTypes.sel_user) {
        let {storeField, textField} = this.getStoreAndTextField(col)
        props['store'] = storeField
        props['text'] = textField
      }
肖超群 authored
2815
肖超群 authored
2816
2817
      // 判断是否是禁用的列
      props['disabled'] = (typeof col['disabled'] === 'boolean' ? col['disabled'] : props['disabled'])
肖超群 authored
2818
肖超群 authored
2819
2820
2821
2822
      // 判断是否为禁用的行
      if (props['disabled'] !== true) {
        props['disabled'] = ((this.disabledRowIds || []).indexOf(row.id) !== -1)
      }
肖超群 authored
2823
肖超群 authored
2824
2825
2826
2827
      // 判断是否禁用全部组件
      if (this.disabled === true) {
        props['disabled'] = true
      }
肖超群 authored
2828
肖超群 authored
2829
2830
      return props
    },
肖超群 authored
2831
肖超群 authored
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
    /**获取部门选择 、用户选择的存储字段、展示字段*/
    getStoreAndTextField(col) {
      let storeField = '', textField = ''
      if (col.type === FormTypes.sel_depart) {
        storeField = 'id'
        textField = 'departName'
      } else if (col.type === FormTypes.sel_user) {
        storeField = 'username'
        textField = 'realname'
      }
      if (col.fieldExtendJson) {
        // online逻辑
        let tempJson = JSON.parse(col.fieldExtendJson)
        if (tempJson) {
          if (tempJson.store) {
            storeField = tempJson.store
肖超群 authored
2848
          }
肖超群 authored
2849
2850
          if (tempJson.text) {
            textField = tempJson.text
肖超群 authored
2851
2852
          }
        }
肖超群 authored
2853
2854
2855
2856
      } else {
        // 实际开发逻辑
        if (col.store) {
          storeField = col.store
肖超群 authored
2857
        }
肖超群 authored
2858
2859
        if (col.text) {
          textField = col.text
肖超群 authored
2860
        }
肖超群 authored
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
      }
      return {
        storeField,
        textField
      }
    },

    /** 辅助方法:防止过快点击,如果点击过快的话就返回 true */
    checkTooFastClick(key = 'default', ms = 300) {
      let nowTime = Date.now()
      let lastTime = this.lastPushTimeMap.get(key)
      if (!lastTime) {
        lastTime = nowTime
肖超群 authored
2874
2875
        this.lastPushTimeMap.set(key, nowTime)
        return false
肖超群 authored
2876
2877
2878
2879
2880
2881
2882
2883
2884
      }
      let diffTime = nowTime - lastTime
      if (diffTime <= ms) {
        this.$message.warn('你点击的太快了,请慢点点击!')
        return true
      }
      this.lastPushTimeMap.set(key, nowTime)
      return false
    },
肖超群 authored
2885
肖超群 authored
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
    /** upload 辅助方法:获取 headers */
    uploadGetHeaders(row, column) {
      let headers = {}
      if (column.token === true) {
        headers['X-Access-Token'] = this.accessToken
      }
      return headers
    },
    /** 上传请求地址 */
    getUploadAction(value) {
      if (!value) {
        return window._CONFIG['domianURL'] + '/sys/common/upload'
      } else {
        return value
      }
    },
    /** 预览图片地址 */
    getCellImageView(id) {
      let currUploadObj = this.uploadValues[id] || null
      if (currUploadObj) {
        if (currUploadObj['url']) {
          return currUploadObj['url'];
        } else if (currUploadObj['path']) {
          let readpath = currUploadObj['path'].split(',')[0]
          return getFileAccessHttpUrl(readpath)
肖超群 authored
2911
        }
肖超群 authored
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
      }
      return ''
    },
    /** popup回调 */
    popupCallback(value, others, id, row, column, index) {
      // 存储输入的值
      let popupValue = value
      if (others) {
        let rowKey = this.getCleanId(row.id)
        let setValueItem = {rowKey, values: {}}
        Object.keys(others).forEach(key => {
          // 当前列直接赋值,其他列通过setValues赋值
          if (key === column.key) {
            popupValue = others[key]
          } else {
            setValueItem.values[key] = others[key]
肖超群 authored
2928
          }
肖超群 authored
2929
2930
2931
        })
        if (Object.keys(setValueItem).length > 0) {
          this.setValues([setValueItem])
肖超群 authored
2932
        }
肖超群 authored
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
      }
      this.setOneValue(this.popupValues, id, popupValue)
      // 做单个表单验证
      this.validateOneInput(popupValue, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange('input', row, column, value)
    },
    /** popup输入框回显 */
    getPopupValue(id) {
      return this.popupValues[id]
    },
    handleRadioChange(value, id, row, column) {
      this.radioValues = this.bindValuesChange(value, id, 'radioValues')
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.radio, row, column, value)
    },
    handleMultiSelectChange(value, id, row, column) {
      this.multiSelectValues = this.bindValuesChange(value, id, 'multiSelectValues')
      // 做单个表单验证
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      // 触发valueChange 事件
      this.elemValueChange(FormTypes.list_multi, row, column, value)
    },
    handleSearchSelectChange(value, id, row, column) {
      this.searchSelectValues = this.bindValuesChange(value, id, 'searchSelectValues')
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      this.elemValueChange(FormTypes.sel_search, row, column, value)
    },
    handleSearchSelectAsyncChange(value, id, row, column) {
      this.searchSelectAsyncValues = this.bindValuesChange(value, id, 'searchSelectAsyncValues')
      this.validateOneInput(value, row, column, this.notPassedIds, true, 'change')
      this.elemValueChange(FormTypes.sel_search_async, row, column, value)
    },
    filterOption(input, option) {
      return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
    },
    getEllipsisWord(content, len) {
      if (!content || content.length === 0) {
肖超群 authored
2973
        return ''
肖超群 authored
2974
2975
2976
2977
2978
2979
      }
      if (content.length > len) {
        return content.substr(0, len)
      }
      return content;
    },
肖超群 authored
2980
肖超群 authored
2981
    /* --------------------------- 2020年5月18日 默认span模式 ------------------------------ */
肖超群 authored
2982
肖超群 authored
2983
2984
2985
2986
2987
    /** 获取Select等组件翻译后的文本 */
    getSelectTranslateText(value, row, col) {
      // 翻译支持单选和多选(数组、逗号分割)
      return filterDictText(col.options, value)
    },
肖超群 authored
2988
肖超群 authored
2989
2990
2991
2992
2993
2994
2995
2996
    // 判定当前行是否是正在编辑的
    isEditRow(row, col) {
      if (this.alwaysEdit) {
        return true
      }
      let current = this.currentEditRows[row.id]
      return !!(current && current[col.key] === true)
    },
肖超群 authored
2997
肖超群 authored
2998
    /* ---- 事件监听 ---- */
肖超群 authored
2999
肖超群 authored
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
    // 鼠标弹起事件,用于清空输入状态
    handleMouseup(event) {
      if (this.alwaysEdit || Object.keys(this.currentEditRows).length === 0) {
        return
      }
      // console.log(this.caseId + 'handleMouseup: ', event)
      let {target} = event
      if (!target) {
        return
      }
      let className = target.className || ''
      if (typeof className === 'string') {
        // 点击的标签是span
        if (className.includes('j-td-span') && className.includes('no-edit')) {
肖超群 authored
3014
3015
          return
        }
肖超群 authored
3016
3017
        // 点击的标签是下拉
        if (className.includes('ant-select-dropdown-menu-item')) {
肖超群 authored
3018
3019
          return
        }
肖超群 authored
3020
      }
肖超群 authored
3021
肖超群 authored
3022
3023
3024
3025
3026
3027
      // 事件冒泡路径
      let path = getEventPath(event)
      for (let p of path) {
        // 如果点击的是 tr 就不处理(tr单独处理)
        if ((p.id || '').startsWith(`${this.caseId}tbody-tr`)) {
          return
肖超群 authored
3028
        }
肖超群 authored
3029
3030
        let pClassName = p.className || ''
        pClassName = typeof pClassName === 'string' ? pClassName : pClassName.toString()
肖超群 authored
3031
肖超群 authored
3032
3033
3034
3035
3036
        /* --- 特殊处理以下组件,点击以下标签时不清空编辑状态 --- */

        // 点击的标签是JInputPop
        if (pClassName.includes('j-input-pop')) {
          return
肖超群 authored
3037
        }
肖超群 authored
3038
3039
3040
        // 点击的标签是JPopup的弹出层
        if (pClassName.includes('j-popup-modal')) {
          return
肖超群 authored
3041
        }
肖超群 authored
3042
3043
3044
        // 点击的标签是日期选择器的弹出层
        if (pClassName.includes('j-date-picker') || pClassName.includes('ant-calendar-picker-container')) {
          return
肖超群 authored
3045
        }
肖超群 authored
3046
肖超群 authored
3047
      }
肖超群 authored
3048
3049
3050
      // 清空编辑状态
      this.currentEditRows = {}
    },
肖超群 authored
3051
肖超群 authored
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
    // 添加事件监听
    addEventListener() {
      window.addEventListener('mouseup', this.handleMouseup)
    },
    // 移除事件监听
    removeEventListener() {
      window.removeEventListener('mouseup', this.handleMouseup)
    },
    /* --------------------------- 2020年5月18日 默认span模式 ------------------------------ */

    //获取没有授权的按钮编码
    loadExcludeCode() {
      if (!this.authPre || this.authPre.length == 0) {
        this.excludeCode = []
      } else {
        let pre = this.authPre
        if (!pre.endsWith(':')) {
          pre += ':'
        }
        this.excludeCode = getNoAuthCols(pre)
      }
    },
    //判断button是否显示
    buttonPermission(code) {
      if (!this.excludeCode || this.excludeCode.length == 0) {
        return true
      } else {
        return this.excludeCode.indexOf(code) < 0
      }
肖超群 authored
3081
    },
肖超群 authored
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
    // 判断用户、部门组件是否多选
    isMultipleSelect(column) {
      let jsonStr = column.fieldExtendJson
      if (jsonStr) {
        // online
        let config = JSON.parse(jsonStr)
        if (config && config['multiSelect'] == false) {
          return false
        }
      } else if (column.multi == false) {
        // 实际开发
        return false
      }
      return true;
肖超群 authored
3096
3097
    }
肖超群 authored
3098
3099
3100
3101
  },
  beforeDestroy() {
    this.removeEventListener()
    this.destroyCleanGroupRequest = true
肖超群 authored
3102
  }
肖超群 authored
3103
3104

}
肖超群 authored
3105
3106
3107
3108
</script>

<style lang="less" scoped>
肖超群 authored
3109
3110
.action-button {
  margin-bottom: 8px;
肖超群 authored
3111
肖超群 authored
3112
  .gap {
谭毅彬 authored
3113
    padding-left: 0px;
肖超群 authored
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
  }

}

/* 设定边框参数 */
@borderColor: #e8e8e8;
@border: 1px solid @borderColor;
/* tr & td 之间的间距 */
@spacing: 8px;

.input-table {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  border: @border;

  .thead, .tbody {

    .tr, .td {
      display: flex;
肖超群 authored
3135
3136
    }
肖超群 authored
3137
    .td {
肖超群 authored
3138
肖超群 authored
3139
3140
3141
3142
      /*border-right: 1px solid red;*/
      /*color: white;*/
      /*background-color: black;*/
      /*margin-right: @spacing !important;*/
肖超群 authored
3143
肖超群 authored
3144
3145
      padding-left: @spacing;
      flex-direction: column;
肖超群 authored
3146
肖超群 authored
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
      &.td-cb, &.td-num {
        width: 45px;
        min-width: 45px;
        max-width: 50px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        align-items: center;
      }
肖超群 authored
3157
肖超群 authored
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
      &.td-ds {
        width: 30px;
        min-width: 30px;
        max-width: 35px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        align-items: center;

        .td-ds-icons {
          position: relative;
          cursor: move;
          width: 100%;
          /*padding: 25% 0;*/
          height: 100%;

          .anticon-align-left,
          .anticon-align-right {
            position: absolute;
            top: 30%;
肖超群 authored
3179
3180
          }
肖超群 authored
3181
3182
3183
          .anticon-align-left {
            left: 25%;
          }
肖超群 authored
3184
肖超群 authored
3185
3186
3187
          .anticon-align-right {
            right: 25%;
          }
肖超群 authored
3188
3189
        }
肖超群 authored
3190
肖超群 authored
3191
3192
3193
3194
      }

    }
肖超群 authored
3195
  }
肖超群 authored
3196
肖超群 authored
3197
3198
3199
3200
  .thead {
    overflow-y: scroll;
    overflow-x: hidden;
    border-bottom: @border;
肖超群 authored
3201
肖超群 authored
3202
    /** 隐藏thead的滑块   */
肖超群 authored
3203
肖超群 authored
3204
3205
3206
3207
    &::-webkit-scrollbar-thumb {
      box-shadow: none !important;
      background-color: transparent !important;
    }
肖超群 authored
3208
肖超群 authored
3209
3210
3211
3212
    .tr {
      min-width: 100%;
      overflow-y: scroll;
    }
肖超群 authored
3213
肖超群 authored
3214
3215
3216
3217
    .td {
      /*flex: 1;*/
      padding: 8px @spacing;
      justify-content: center;
肖超群 authored
3218
3219
    }
肖超群 authored
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
  }

  .tbody {
    position: relative;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 61px;
    /*max-height: 400px;*/
    min-width: 100%;

    .tr-nodata {
      color: #999;
      line-height: 61px;
      text-align: center;
    }

    .tr {
      /*line-height: 50px;*/

      border-bottom: @border;
      transition: background-color 300ms;
      width: 100%;
      height: 61px;
      overflow: hidden;
      position: absolute;
肖超群 authored
3247
      left: 0;
肖超群 authored
3248
      z-index: 10;
肖超群 authored
3249
肖超群 authored
3250
3251
      &.tr-checked {
        background-color: #fafafa;
肖超群 authored
3252
3253
      }
肖超群 authored
3254
3255
3256
      &:hover {
        background-color: #E6F7FF;
      }
肖超群 authored
3257
肖超群 authored
3258
    }
肖超群 authored
3259
肖超群 authored
3260
3261
3262
3263
3264
    .tr-expand {
      position: relative;
      z-index: 9;
      background-color: white;
    }
肖超群 authored
3265
肖超群 authored
3266
3267
3268
3269
    .td {
      /*flex: 1;*/
      padding: 14px @spacing 14px 0;
      justify-content: center;
肖超群 authored
3270
肖超群 authored
3271
3272
      &:last-child {
        padding-right: @spacing;
肖超群 authored
3273
3274
      }
肖超群 authored
3275
3276
3277
3278
3279
      input {
        font-variant: tabular-nums;
        box-sizing: border-box;
        margin: 0;
        list-style: none;
肖超群 authored
3280
        position: relative;
肖超群 authored
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
        display: inline-block;
        padding: 4px 11px;
        width: 100%;
        height: 32px;
        font-size: 14px;
        line-height: 1.5;
        color: rgba(0, 0, 0, 0.65);
        background-color: #fff;
        border: 1px solid #d9d9d9;
        border-radius: 4px;
        transition: all 0.3s;
        outline: none;
肖超群 authored
3293
肖超群 authored
3294
3295
3296
        &:hover {
          border-color: #4D90FE
        }
肖超群 authored
3297
肖超群 authored
3298
3299
3300
3301
        &:focus {
          border-color: #40a9ff;
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          border-right-width: 1px !important;
肖超群 authored
3302
3303
        }
肖超群 authored
3304
3305
3306
3307
3308
        &:disabled {
          color: rgba(0, 0, 0, 0.25);
          background: #f5f5f5;
          cursor: not-allowed;
        }
肖超群 authored
3309
肖超群 authored
3310
        /* 设置placeholder的颜色 */
肖超群 authored
3311
肖超群 authored
3312
3313
3314
        &::-webkit-input-placeholder { /* WebKit browsers */
          color: #ccc;
        }
肖超群 authored
3315
肖超群 authored
3316
3317
3318
        &:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
          color: #ccc;
        }
肖超群 authored
3319
肖超群 authored
3320
3321
3322
        &::-moz-placeholder { /* Mozilla Firefox 19+ */
          color: #ccc;
        }
肖超群 authored
3323
肖超群 authored
3324
3325
3326
        &:-ms-input-placeholder { /* Internet Explorer 10+ */
          color: #ccc;
        }
肖超群 authored
3327
肖超群 authored
3328
      }
肖超群 authored
3329
肖超群 authored
3330
3331
3332
3333
      .j-editable-image {
        height: 32px;
        max-width: 100px !important;
        cursor: pointer;
肖超群 authored
3334
肖超群 authored
3335
3336
3337
        &:hover {
          opacity: 0.8;
        }
肖超群 authored
3338
肖超群 authored
3339
3340
        &:active {
          opacity: 0.6;
肖超群 authored
3341
3342
        }
肖超群 authored
3343
      }
肖超群 authored
3344
肖超群 authored
3345
      /* --------------------------- 2020年5月18日 begin 默认span模式 ------------------------------ */
肖超群 authored
3346
肖超群 authored
3347
3348
      label {
        height: 32px;
肖超群 authored
3349
肖超群 authored
3350
3351
        &.ant-checkbox-wrapper {
          height: auto;
肖超群 authored
3352
        }
肖超群 authored
3353
      }
肖超群 authored
3354
肖超群 authored
3355
3356
3357
3358
3359
      .comp-normal {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
肖超群 authored
3360
肖超群 authored
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
      .j-td-span {
        position: relative;
        padding: 4px 11px;
        border: 1px solid transparent;
        display: inline-block;
        width: 100%;
        max-width: 100%;
        height: 32px;
        cursor: text;
        transition: all 0.3s;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 1.5;
        color: rgba(0, 0, 0, 0.65);
        border-radius: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
肖超群 authored
3379
肖超群 authored
3380
3381
        &:hover {
          background-color: white;
肖超群 authored
3382
3383
        }
肖超群 authored
3384
3385
        &.disabled {
          cursor: not-allowed;
肖超群 authored
3386
3387

          &:hover {
肖超群 authored
3388
3389
            color: rgba(0, 0, 0, 0.25);
            background-color: #F5F5F5;
肖超群 authored
3390
3391
3392
          }
        }
肖超群 authored
3393
      }
肖超群 authored
3394
肖超群 authored
3395
      /* --------------------------- 2020年5月18日 end 默认span模式 ------------------------------ */
肖超群 authored
3396
肖超群 authored
3397
      /* --------------------------- 2020年5月28日 begin 新增校验未通过的样式 ------------------------------ */
肖超群 authored
3398
肖超群 authored
3399
3400
      .j-check-failed.j-td-span {
        background-color: rgba(255, 0, 0, 0.05);
肖超群 authored
3401
肖超群 authored
3402
3403
        &:hover {
          background-color: rgba(255, 0, 0, 0.1);
肖超群 authored
3404
        }
肖超群 authored
3405
      }
肖超群 authored
3406
肖超群 authored
3407
3408
3409
3410
3411
3412
3413
      .j-check-failed.j-td-span,
      input.j-check-failed,
      .j-check-failed /deep/ input,
      .ant-select.j-check-failed /deep/ .ant-select-selection,
      .ant-upload.j-check-failed /deep/ .ant-btn {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
肖超群 authored
3414
3415
      }
肖超群 authored
3416
      /* --------------------------- 2020年5月28日 end 新增校验未通过的样式 ------------------------------ */
肖超群 authored
3417
3418
3419

    }
肖超群 authored
3420
  }
肖超群 authored
3421
肖超群 authored
3422
3423
3424
3425
  .scroll-view {
    overflow: auto;
    overflow-y: scroll;
  }
肖超群 authored
3426
肖超群 authored
3427
3428
3429
  .thead, .thead .tr, .scroll-view {
    @scrollBarSize: 6px;
    /* 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
肖超群 authored
3430
肖超群 authored
3431
3432
3433
3434
3435
    &::-webkit-scrollbar {
      width: @scrollBarSize;
      height: @scrollBarSize;
      background-color: transparent;
    }
肖超群 authored
3436
肖超群 authored
3437
    /* 定义滚动条轨道 */
肖超群 authored
3438
肖超群 authored
3439
3440
3441
    &::-webkit-scrollbar-track {
      background-color: #f0f0f0;
    }
肖超群 authored
3442
肖超群 authored
3443
    /* 定义滑块 */
肖超群 authored
3444
肖超群 authored
3445
3446
3447
3448
3449
3450
    &::-webkit-scrollbar-thumb {
      background-color: #eee;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

      &:hover {
        background-color: #bbb;
肖超群 authored
3451
3452
      }
肖超群 authored
3453
3454
3455
      &:active {
        background-color: #888;
      }
肖超群 authored
3456
3457
    }
肖超群 authored
3458
  }
肖超群 authored
3459
肖超群 authored
3460
  .thead .tr {
肖超群 authored
3461
肖超群 authored
3462
3463
    &::-webkit-scrollbar-track {
      background-color: transparent;
肖超群 authored
3464
3465
    }
肖超群 authored
3466
3467
3468
3469
3470
3471
3472
3473
3474
    /* IE模式下隐藏 */
    -ms-overflow-style: none;
    -ms-scroll-chaining: chained;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
肖超群 authored
3475
3476
  }
肖超群 authored
3477
3478
}
肖超群 authored
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
</style>
<style lang="less">
// 新增按钮配置气泡的样式
.j-add-btn-settings {
  width: 240px;

  .ant-form {
    .ant-form-item {
      margin-bottom: 0;

      .ant-input-number {
        width: 100%;
      }
    }
  }
}
</style>