$(document).on("input propertychange", "select[lay-search] ~ div input", function () {
if ($(this).val() == "") {
//清空原選項值
$("#Type").val('');
//清除layui選中狀態
$(this).parent().next().find(".layui-this").addClass(" layui-hide").removeClass("layui-this");
}
});