💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` //初始化后加工工厂 var gys = '{ "groupOp":"AND", "rules": [{ "field":"fenlei", "op":"cn", "data":"供应商"}], "groups": [] }'; $("#unit").combogrid({ delay: 500, //自动完成功能实现搜索 mode: 'remote',//开启后系统会自动传一个参数q到后台 panelWidth: 350, required: true, queryParams: { filter: gys }, //value:'fullname', editable: true, idField: 'comname', //textField: 'comname', url: '/JydUser/ashx/JydUserHandler.ashx', columns: [[ { field: 'KeyId', title: 'KeyId', width: 50 }, { field: 'comname', title: '客户', width: 120 }, { field: 'tell', title: '电话', width: 120 }, ]], limitToList: true,//只能从下拉中选择值 //reversed: true,//定义在失去焦点的时候是否恢复原始值。 onHidePanel: function () { var t = $(this).combogrid('getValue');//获取combogrid的值 var g = $(this).combogrid('grid'); // 获取数据表格对象 var r = g.datagrid('getSelected'); // 获取选择的行 console.log("选择的行是:" + r + "选择的值是:" + t); if (r == null || t != r.comname) {//没有选择或者选项不相等时清除内容 $.messager.alert('警告', '请选择,不要直接输入!'); $(this).combogrid('setValue', ''); } else { //do something... } }, onSelect: function (rowIndex, rowData) { //console.log(JSON.stringify(rowData)); console.log("设置的值是:" + rowData.KeyId); //$("#unitid").combogrid("setValue",rowData.KeyId);//给经手人设置ID $("#unitid").val(rowData.KeyId);//客户 $("#unit_man").textbox("setValue", rowData.realname);//设置联系人 $("#unit_moble").textbox("setValue", rowData.tell);//设置联系联系电话 //top.$("#connman").textbox('setValue', rowData.realname);//经手人 //top.$("#tel").textbox('setValue', rowData.tell) //alert(rowData.TrueName); } }); ```