Patent search ap:("Mitsubishi Electric Corp" OR "Mitsubishi Electric Home Appliance Co Ltd" OR "三菱電機ホーム機器株式会社" OR "三菱電機株式会社") AND inv:"OSAWA RITSUKO" Page 1 (2025)

Search Results

3 records (took 0.25 seconds)

'; if (result.success) { $.each(eval(result.message), function(n, item) { // ... 创建历史记录项的 HTML ... content += '' + item.keywords + ''; }); $("#historyList").html(content); // 更新历史记录列表 } else { $("#historyList").html('

没有任何数据

'); } $("#customSuggestions").removeClass("d-none"); // 显示下拉列表 });}$('input[data-role="suggest"]').suggestSearch(); // 重置模态框内容 $('#tool-save-keyword').on('hidden.bs.modal', function (e) { $('.alert').hide(); $('input[name=saveKeywordName]').val(""); // 其他需要重置的内容 });});$('.-save-ss-tool').click(function () { // 隐藏Bootstrap 5的警告消息 $('#tool-save-keyword .alert').hide(); $('#save-keyword-submit').show(); $('input[name=saveKeywordName]').val(""); var q = $('input[id=q]').val() || ""; var ds = "all" || 'cn'; // 假设这是服务端渲染的变量 var fc = $('input[name=fc]').val() || ""; var q2 = $('input[name=q2]').val() || ""; jQuery.ajax({ url: "/search/filter", type: "POST", dataType: "JSON", data: { ds: ds, fc: fc, q: q, q2: q2 }, success: function (data) { if (data.success) { $('#tool-save-keyword-value').text(data.message); // 显示Bootstrap 5的成功消息 $('#tool-save-keyword .alert-success').show(); } else { // 显示Bootstrap 5的错误消息 $('#tool-save-keyword .alert-danger').show(); } // 显示Bootstrap 5的模态框 var myModal = new bootstrap.Modal(document.getElementById('tool-save-keyword')); myModal.show(); } });});// 重置模态框内容$('#tool-save-keyword').on('hidden.bs.modal', function (e) { $('#tool-save-keyword .alert').hide(); $('input[name=saveKeywordName]').val(""); // 其他需要重置的内容});var saveKeywordBtn = 0;function saveKeyword(){ if (saveKeywordBtn == 1) { return; } else { saveKeywordBtn = 1; } // Hide all messages $('#tool-save-keyword .alert').hide(); var saveKeywordName = $('input[name=saveKeywordName]').val() || ""; if (saveKeywordName == "") { // Show error message $('#tool-save-keyword .alert-danger').text('请为检索式命名').removeClass("d-none"); saveKeywordBtn = 0; return; } var q = $("#q").val() || ""; var fc = $('input[name=fc]').val() || ""; var q2 = $('input[name=q2]').val() || ""; jQuery.ajax({ url: "/user/search_strategy", type: "POST", dataType: "JSON", data: { name: saveKeywordName, fc: fc, value: q, value2: q2 }, success: function(data) { if (data.success) { // Show success message $('#tool-save-keyword .alert-success').removeClass("d-none"); $('#tool-save-keyword .alert-success').show(); $('#save-keyword-submit').hide(); $('#tool-keyword-submit').hide(); } else { // Show error message $('#tool-save-keyword .alert-danger').text('保存失败').show(); } saveKeywordBtn = 0; } });}//-------------------

下载著录项

取消

下载
自定义模板数据

取消 提交

PDF全文下载

条(最多9999条)

取消 提交

下载著录项

` } return ctx; } function update_checklist(item,isadd){ if(isadd){ checkList.push(item); } else { var index = checkList.indexOf(item); if (index !== -1) { checkList.splice(index, 1); } } var html = ''; for(var chk of checkList){ html += ` `+ cfg_down_dict[chk] +``; } $("#sort_tags").html(html); $("#sort_tags .btn-close").on("click",function(){ var code = $(this).attr('data-code'); update_checklist(code,false); $('.form-selectgroup input[value="'+code+'"]').attr('checked',false) }) } function show_down_cfg(data) { const cates = Object.keys(data); //alert(JSON.stringify(cates)); var html = ''; $('#download_cfg_content .modal-body').remove(); for (var cate of cates) { var items = data[cate]; var context = ''; var cate_name = getCategoryName(cate); var ctx = get_cate_ctx(items); html += `

`+ ctx + `

`; } $('#download_cfg_content').html(html); $('.select-all').on('click', 'input', function(){ var cur_cate = $(this).attr('data-cate'); $('.form-selectgroup input').each(function(){ if($(this).attr('data-cate')== cur_cate) { this.checked =!this.checked; update_checklist( this.value, this.checked); } }); }); $('.form-selectgroup input').on('click',function(){ update_checklist( this.value, this.checked); }); } function addTemplate() { $.get("/user/download_config/config", {}, function (result) { if (result.success) { var map = $.parseJSON(result.data); show_down_cfg(map); $('#modal-select-field').modal('show'); // $('#sort_tags .tag').draggable({ containment: "#sort_tags" ,cursor: "move" // , helper: "clone", // }); $("#sort_tags").sortable(); } }); }$(document).ready(function () { var $container = $('.list_container'); var $collapseIcon = $('.collapse-icon'); var $expandIcon = $('.expand-icon'); var $moreContainerSpan = $('.more_container span'); // Function to update the more_container span text function updateMoreContainerText() { if ($container.hasClass('collapsed')) { $moreContainerSpan.text(''); } else { var count = $('.collection-patent-child li').length; $moreContainerSpan.text('已选(' + count + ')'); } } // Check if the screen width is less than or equal to 768px (mobile devices) if ($(window).width() <= 768) { $container.addClass('collapsed'); $collapseIcon.hide(); $expandIcon.show(); updateMoreContainerText(); } // Toggle collapse functionality $('.more_container').click(function () { $container.toggleClass('collapsed'); // Toggle the SVG images $collapseIcon.toggle(); $expandIcon.toggle(); // Update the more_container span text based on the state updateMoreContainerText(); }); // Delete functionality $('.collection-patent-child').on('click', '.delete', function () { $(this).closest('li').remove(); // Update the count updateMoreContainerText(); }); // Draggable functionality $('.list_container').draggable({ axis: "y", // Allow dragging only vertically containment: "window", // Contain within the window scroll: false, // Prevent window scroll during drag drag: function (event, ui) { // Limit horizontal dragging to a certain range var leftLimit = 300; var rightLimit = $(window).width() - $(this).outerWidth() - 10; if (ui.position.left < leftLimit) ui.position.left = leftLimit; if (ui.position.left > rightLimit) ui.position.left = rightLimit; } }); // Add more functionality as needed // $('#modal-download-task').modal('show'); var createPdfBtn = 0; $('#down-pdf-btn').click(function(){ if (createPdfBtn == 1) { return; } else { createPdfBtn = 1; } var scopeType = $('input[name="pdf-range-type"]:checked').val(); // alert(scopeType); createPdfBtn = 0; var ids = []; var start = -1; var end = 0; var start = $('#pdf_id_start').val(); var end = $('#pdf_id_end').val(); if(scopeType==0){ $.get('/patent/collection/record', function (result) { if (!result.success) { alert('No patent data is selected!'); createPdfBtn = 0; return false; } var data = jQuery.parseJSON(result.data); ids = $.map(data, function (d) { return d.udn; }); // alert(JSON.stringify(ids)); var params = $(".-s").serializeArray().concat([ {name: "scopeType", value: scopeType}, {name: "start", value: start}, {name: "end", value: end}, {name: "udns", value: Array.prototype.join.call(ids)}, ]); downloadPDF(params,ids.length); }); } else { // alert('start:'+start +'end '+end); if ((parseInt(end) - parseInt(start)) >= 9999) { alert('最多只能选择9999'); createPdfBtn = 0; return false; } else if (parseInt(end) < parseInt(start) || parseInt(start) <= 0) { alert('页数不正确'); createPdfBtn = 0; return false; } var params = $(".-s").serializeArray().concat([ {name: "scopeType", value: scopeType}, {name: "start", value: start}, {name: "end", value: end}, {name: "udns", value: Array.prototype.join.call(ids)}, ]); downloadPDF(params,(end-start)+1); } }); }); function downloadPDF(params,n){ var totalNums = parseInt( $("#result_total").text()); if(n>totalNums){ n = totalNums; } $.ajax({ url: "/d/get/fee", data: { }, dataType: "json", type: "post", success: function (result) { if (result.success) { var balance = result.balance; var priceF = result.price_f; var group = result.group_balance; var total = priceF*n; function fn() { showAlert('Trying to pack data for you, please wait!',3000); $.ajax({ url: "/d/pdf", data: $.param(params), dataType: "json", type: "get", success: function (result) { if (result.success) { openTaskProgressModal(result.taskId); loadTaskProgress(result.taskId); } else { var message = result.message; if (message == 'internal error') { message = 'System error, please refresh the page and try again.'; } alert(message); } } }); } var tips = ''; var idName = 'LAY_layuipro'; if(group) { prePay(balance,total,fn,tips,idName,group); }else { prePay(balance,total,fn,tips,idName); } }else{ alert(result.message); } } }); }

标准排版和图文混合 自定义显示字段
Patent search ap:("Mitsubishi Electric Corp" OR "Mitsubishi Electric Home Appliance Co Ltd" OR "三菱電機ホーム機器株式会社" OR "三菱電機株式会社") AND inv:"OSAWA RITSUKO" Page  1 (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Lidia Grady

Last Updated:

Views: 5903

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Lidia Grady

Birthday: 1992-01-22

Address: Suite 493 356 Dale Fall, New Wanda, RI 52485

Phone: +29914464387516

Job: Customer Engineer

Hobby: Cryptography, Writing, Dowsing, Stand-up comedy, Calligraphy, Web surfing, Ghost hunting

Introduction: My name is Lidia Grady, I am a thankful, fine, glamorous, lucky, lively, pleasant, shiny person who loves writing and wants to share my knowledge and understanding with you.