,cols: [[ //表头
{type: 'checkbox', fixed: 'left'}
,{field: 'id', title: 'id', width:140,hide:true}
,{field: 'loginid', title: '用户名', width:'10%'}
,{field: 'name', title: '姓名', width:'10%'}
,{field: 'sex', title: '性别', width:'10%'}
,{field: 'phone', title: '电话', width:'10%'}
,{
field: 'taskNature',
title: '状态',
width:170,
align:'center',
templet: function (d) {
return `<select name="ac" lay-verify="required" lay-filter="stateSelect">
<option value="0" ${d.taskNature == 0 ? "selected":""}>未完成</option>
<option value="1" ${d.taskNature == 1 ? "selected":""}>已完成</option>
</select>`;
}
}
,{field: 'record', title: '回访记录', width:'50%',edit:'text'}
]]
form.on('select(stateSelect)', function (data) {//获取当前行tr对象
//拿到当前行的ID
//拿到当前行的值
})
监听下拉框如何拿到 对应行的ID?