Table表中添加下拉框---------------------------------------------
{ title: '告警方式', key: 'alarmMethod', width: 300, render: (h, params) => { var alarmModeChild = this.alarmModeChild; return h('Select', { props: { value: alarmModeChild, }, style: { width: "50%" }, on: { 'on-change': (value) => { // console.log(value) } }, }, [ h('Option', { props: { value: 'shortMessage.' } }, '短信'), h('Option', { props: { value: 'WeChat' } }, '微信') ]); }, align: 'center' },