Skip to content

Commit 56c82cb

Browse files
committedJan 21, 2025
fix:解决下拉选择表格组件,开启查询条件后,内层下拉框关闭影响外层el-select下拉框
1 parent 005b36b commit 56c82cb

File tree

7 files changed

+375
-76
lines changed

7 files changed

+375
-76
lines changed
 

‎.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
'no-tabs': 'off',
1313
'eqeqeq': 'off',
1414
'no-unused-vars': 'off',
15+
camelcase: 'off', // 全局取消检测骆驼式变量名
1516
'no-unused-expressions': 'off'
1617
},
1718
parserOptions: {

‎docs/.vuepress/components/docsComponents/TSelectTable/isShowQuery.vue

+56-38
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
@radioChange="radioChange"
1010
:tableWidth="1000"
1111
isShowQuery
12+
multiple
1213
:opts="opts"
1314
@submit="conditionEnter"
1415
></t-select-table>
@@ -17,6 +18,7 @@
1718
</template>
1819

1920
<script>
21+
import selectData from './selectData.json'
2022
const ADDRESS_TYPES = [
2123
{
2224
label: '前纺一车间',
@@ -69,11 +71,13 @@ export default {
6971
{ label: '单位111', width: '110px', prop: 'unitName' },
7072
],
7173
},
74+
workshopNumList: [],
7275
queryData: {
7376
likeCargoNo: null,
7477
likeBookNo: null,
7578
likeTransportNo: null,
7679
workshopNum: null,
80+
workshopNum1: null,
7781
date: null,
7882
date1: null,
7983
date2: null,
@@ -84,6 +88,16 @@ export default {
8488
computed: {
8589
opts() {
8690
return {
91+
likeTransportNo: {
92+
label: '运单编号',
93+
comp: 'el-input',
94+
span: 2
95+
},
96+
likeCargoName: {
97+
label: '货品名称',
98+
comp: 'el-input',
99+
span: 2
100+
},
87101
likeCargoNo: {
88102
label: '货源编号',
89103
comp: 't-select',
@@ -110,36 +124,35 @@ export default {
110124
}
111125
},
112126
workshopNum: {
113-
label: '车间',
114-
comp: 'el-select',
115-
changeEvent: 'change',
127+
label: "t-select单选",
128+
comp: "t-select",
129+
span: 2,
130+
bind: {
131+
optionSource: this.workshopNumList,
132+
valueKey: "materialCode",
133+
labelKey: "materialName",
134+
},
135+
event: {
136+
change: (val) => {
137+
console.log('change---车间-单选', val)
138+
}
139+
}
140+
},
141+
workshopNum1: {
142+
label: "t-select多选",
143+
comp: "t-select",
116144
span: 2,
117-
child: [
118-
{
119-
comp: 'el-option',
120-
value: 'W1',
121-
bind: {
122-
label: '前纺一车间',
123-
key: 'W1'
124-
}
125-
},
126-
{
127-
comp: 'el-option',
128-
value: 'W2',
129-
bind: {
130-
label: '前纺二车间',
131-
key: 'W2'
132-
}
133-
},
134-
{
135-
comp: 'el-option',
136-
value: 'W3',
137-
bind: {
138-
label: '前纺三车间',
139-
key: 'W3'
140-
}
145+
bind: {
146+
multiple: true,
147+
optionSource: this.workshopNumList,
148+
valueKey: "materialCode",
149+
labelKey: "materialName",
150+
},
151+
event: {
152+
change: (val) => {
153+
console.log('change---车间-多选', val)
141154
}
142-
]
155+
}
143156
},
144157
likeBookNo: {
145158
labelRender: () => {
@@ -161,26 +174,31 @@ export default {
161174
type: 'daterange',
162175
}
163176
},
164-
likeTransportNo: {
165-
label: '运单编号',
166-
comp: 'el-input',
167-
span: 2
168-
},
169-
likeCargoName: {
170-
label: '货品名称',
171-
comp: 'el-input',
172-
span: 2
173-
},
177+
174178
}
175179
},
176180
},
181+
mounted() {
182+
this.getData()
183+
},
177184
methods: {
185+
async getData() {
186+
const res = await selectData
187+
if (res.success) {
188+
// console.log('获取品名下拉数据', res.data)
189+
this.workshopNumList = res.data
190+
}
191+
},
178192
// 单选
179193
radioChange(row) {
180194
console.log('传给后台的值', row)
181195
},
182196
conditionEnter(data) {
183197
console.log('点击搜索查询', data)
198+
},
199+
// 车间编号
200+
change(formData) {
201+
console.log('车间编号--change事件触发', formData)
184202
}
185203
}
186204
}

‎docs/.vuepress/components/docsComponents/TSelectTable/isShowQuerySpan.vue

+6-5
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ export default {
7979
computed: {
8080
opts() {
8181
return {
82+
likeTransportNo: {
83+
label: '运单编号',
84+
comp: 'el-input',
85+
span: 4
86+
},
8287
likeCargoNo: {
8388
label: '货源编号',
8489
comp: 't-select',
@@ -99,11 +104,7 @@ export default {
99104
comp: 'el-input',
100105
span: 4
101106
},
102-
likeTransportNo: {
103-
label: '运单编号',
104-
comp: 'el-input',
105-
span: 4
106-
},
107+
107108
likeCargoName: {
108109
label: '货品名称',
109110
comp: 'el-input',

0 commit comments

Comments
 (0)
Please sign in to comment.