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'
},

 

相关文章:

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