4424f41c
monkeyhouyi
网信执法、清单管理静态页面
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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
|
<template>
<div class="columnDesign-container">
<div class="main-board">
<div class="sort-box">
<h4 class="cap">排序查询</h4>
<el-table :data="columnData.sortList" class="NCC-common-table" ref="dragTableSort"
:row-key="row=>row.prop">
<el-table-column align="center" label="拖动" width="50">
<template>
<i class="drag-handler icon-ym icon-ym-darg" style="cursor: move;font-size:20px"
title='点击拖动' />
</template>
</el-table-column>
<el-table-column prop="label" label="列名" />
<el-table-column prop="prop" label="字段" />
</el-table>
</div>
<el-divider></el-divider>
<div class="search-box">
<h4 class="cap">查询条件</h4>
<el-table :data="columnData.searchList" class="NCC-common-table" ref="dragTableSearch"
:row-key="row=>row.prop">
<el-table-column align="center" label="拖动" width="50">
<template>
<i class="drag-handler icon-ym icon-ym-darg" style="cursor: move;font-size:20px"
title='点击拖动' />
</template>
</el-table-column>
<el-table-column prop="label" label="列名" />
<el-table-column prop="prop" label="字段" />
<el-table-column prop="searchType" label="类型">
<template slot-scope="scope">
{{scope.row.searchType===3?'范围查询':scope.row.searchType===2?'模糊查询':'等于查询'}}
</template>
</el-table-column>
</el-table>
</div>
<el-divider></el-divider>
<div class="column-box">
<h4 class="cap">列表字段</h4>
<el-table :data="columnData.columnList" class="NCC-common-table" ref="dragTable"
:row-key="row=>row.prop">
<el-table-column align="center" label="拖动" width="50">
<template>
<i class="drag-handler icon-ym icon-ym-darg" style="cursor: move;font-size:20px"
title='点击拖动' />
</template>
</el-table-column>
<el-table-column prop="label" label="列名" />
<el-table-column prop="prop" label="字段" />
</el-table>
</div>
</div>
<el-scrollbar class="right-board">
<el-tabs v-model="currentTab" class="top-tabs top-tabs_app">
<el-tab-pane label="排序字段" name="sort" />
<el-tab-pane label="查询字段" name="search" />
<el-tab-pane label="列表字段" name="field" />
<el-tab-pane label="列表属性" name="column" />
</el-tabs>
<div class="field-box">
<div v-show="currentTab==='sort'">
<el-table :data="sortOptions" class="NCC-common-table"
@selection-change="sortSelectionChange" ref="sortTable">
<el-table-column prop="label" label="排序字段" />
<el-table-column type="selection" width="55" align="center" />
</el-table>
</div>
<div v-show="currentTab==='search'">
<el-table :data="searchOptions" class="NCC-common-table"
@selection-change="searchSelectionChange" ref="searchTable">
<el-table-column prop="label" label="查询字段" />
<el-table-column type="selection" width="55" align="center" />
</el-table>
</div>
<div class="columnList" v-show="currentTab==='field'">
<el-table :data="columnOptions" class="NCC-common-table"
@selection-change="columnSelectionChange" ref="columnTable">
<el-table-column prop="label" label="列表字段" />
<el-table-column type="selection" width="55" align="center" />
</el-table>
</div>
<div class="setting-box" v-show="currentTab==='column'">
<el-form :model="columnData" label-width="80px">
<el-divider>排序设置</el-divider>
<el-form-item label="排序字段">
<el-select v-model="columnData.defaultSidx" placeholder="请选择排序字段">
<el-option :label="item.__config__.label" :value="item.__vModel__"
v-for="(item, i) in list" :key="i"></el-option>
</el-select>
</el-form-item>
<el-form-item label="排序类型">
<el-select v-model="columnData.sort" placeholder="请选择排序类型">
<el-option label="升序" value="asc"></el-option>
<el-option label="降序" value="desc"></el-option>
</el-select>
</el-form-item>
<el-divider>分页设置</el-divider>
<el-form-item label="列表分页">
<el-switch v-model="columnData.hasPage"></el-switch>
</el-form-item>
<el-form-item label="分页条数">
<el-radio-group v-model="columnData.pageSize">
<el-radio-button :label="20">20条</el-radio-button>
<el-radio-button :label="50">50条</el-radio-button>
<el-radio-button :label="100">100条</el-radio-button>
<el-radio-button :label="500">500条</el-radio-button>
</el-radio-group>
</el-form-item>
</el-form>
</div>
</div>
</el-scrollbar>
</div>
</template>
<script>
import Sortable from 'sortablejs'
import { getDrawingList } from '@/components/Generator/utils/db'
import { deepClone } from '@/utils'
import { noColumnShowList, noSearchList, useInputList, useDateList } from '@/components/Generator/generator/comConfig'
const getSearchType = item => {
const nccKey = item.__config__.nccKey
// 等于-1 模糊-2 范围-3
const fuzzyList = [...useInputList]
const RangeList = [...useDateList, 'time', 'date', 'numInput', 'calculate']
if (RangeList.includes(nccKey)) return 3
if (fuzzyList.includes(nccKey)) return 2
return 1
}
const defaultColumnData = {
searchList: [], // 查询条件
columnList: [], // 字段列表
sortList: [], // 排序列表
// type: 1, //列表类型
defaultSidx: '', // 默认排序字段
sort: 'desc', // 排序类型
hasPage: true, // 列表分页
pageSize: 20, // 分页条数
}
export default {
name: 'columnDesign',
props: {
conf: {
type: Object,
default: () => { }
},
},
data() {
return {
currentTab: 'column',
alignOptions: ['left', 'center', 'right'],
list: [],
columnData: JSON.parse(JSON.stringify(defaultColumnData)),
columnOptions: [],
searchOptions: [],
sortOptions: [],
sortList: []
}
},
created() {
let list = []
const loop = (data, parent) => {
if (!data) return
if (data.__config__ && data.__config__.nccKey !== 'table' && data.__config__.children && Array.isArray(data.__config__.children)) {
loop(data.__config__.children, data)
}
if (Array.isArray(data)) data.forEach(d => loop(d, parent))
if (data.__config__ && data.__config__.nccKey) {
if (data.__config__.layout === "colFormItem" && data.__vModel__) {
list.push(data)
}
}
}
loop(getDrawingList())
this.list = list
let options = list.filter(o => noColumnShowList.indexOf(o.__config__.nccKey) < 0)
let searchOptions = list.filter(o => noSearchList.indexOf(o.__config__.nccKey) < 0)
this.columnOptions = options.map(o => ({
label: o.__config__.label,
prop: o.__vModel__
}));
this.searchOptions = searchOptions.map(o => ({
label: o.__config__.label,
prop: o.__vModel__,
nccKey: o.__config__.nccKey,
searchType: getSearchType(o),
...o
}));
this.sortOptions = options.map(o => ({
label: o.__config__.label,
prop: o.__vModel__
}));
if (typeof this.conf === 'object' && this.conf !== null) {
this.columnData = Object.assign({}, defaultColumnData, this.conf)
}
},
mounted() {
this.setSort()
this.$nextTick(() => {
this.setListValue(this.columnData.columnList, this.columnOptions, 'column')
this.setListValue(this.columnData.searchList, this.searchOptions, 'search')
this.setListValue(this.columnData.sortList, this.sortOptions, 'sort')
})
},
methods: {
setListValue(replacedData, data, type) {
const key = 'prop'
let res = []
outer: for (let i = 0; i < replacedData.length; i++) {
inter: for (let ii = 0; ii < data.length; ii++) {
if (replacedData[i][key] === data[ii][key]) {
res.push(data[ii])
break inter
}
}
}
res.forEach(row => {
this.$refs[type + 'Table'].toggleRowSelection(row, true)
})
},
/**
* 供父组件使用 获取列表JSON
*/
getData() {
return new Promise((resolve, reject) => {
if (!this.columnData.columnList.length) {
reject({ msg: '列表字段不允许为空', target: 2 })
return
}
resolve({ columnData: this.columnData, target: 2 })
})
},
setSort() {
const el = this.$refs.dragTable.$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0]
this.sortable = Sortable.create(el, {
ghostClass: 'sortable-ghost', // Class name for the drop placeholder,
setData: function (dataTransfer) {
dataTransfer.setData('Text', '')
},
onEnd: evt => {
const targetRow = this.columnData.columnList.splice(evt.oldIndex, 1)[0]
this.columnData.columnList.splice(evt.newIndex, 0, targetRow)
},
handle: '.drag-handler',
})
const el1 = this.$refs.dragTableSort.$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0]
Sortable.create(el1, {
ghostClass: 'sortable-ghost', // Class name for the drop placeholder,
setData: function (dataTransfer) {
dataTransfer.setData('Text', '')
},
onEnd: evt => {
const targetRow = this.columnData.sortList.splice(evt.oldIndex, 1)[0]
this.columnData.sortList.splice(evt.newIndex, 0, targetRow)
},
handle: '.drag-handler',
})
const el2 = this.$refs.dragTableSearch.$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0]
Sortable.create(el2, {
ghostClass: 'sortable-ghost', // Class name for the drop placeholder,
setData: function (dataTransfer) {
dataTransfer.setData('Text', '')
},
onEnd: evt => {
const targetRow = this.columnData.searchList.splice(evt.oldIndex, 1)[0]
this.columnData.searchList.splice(evt.newIndex, 0, targetRow)
},
handle: '.drag-handler',
})
},
sortSelectionChange(val) {
this.$set(this.columnData, 'sortList', val)
},
searchSelectionChange(val) {
this.$set(this.columnData, 'searchList', val)
},
columnSelectionChange(val) {
this.$set(this.columnData, 'columnList', val)
}
}
}
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>
|