{
					title:'选择',
					key:'pic',

						render: (h, params) => {
							return h('Select', {
										props: {
											value: params.row.applyResult,
										},
										style: {
											width: "100%"
										},
										on: {
											'on-change': (event) => {
												console.log(event)
												console.log(this.data2[params.index].age)

											}
										},
									},
									[
										h('Option', {
											props: {
												value: '1'
											}
										}, '选择1'),
										h('Option', {
											props: {
												value: '2'
											}
										}, '选择2')
									]);
						}
					},

  iview列表中添加下拉框

 

相关文章:

  • 2022-12-23
  • 2021-05-01
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-03-07
  • 2022-12-23
  • 2021-12-04
猜你喜欢
  • 2022-02-22
  • 2022-12-23
相关资源
相似解决方案