jQuery(document).ready(function($) { // Tab切换 $('.som-tab-btn').click(function() { var tab = $(this).data('tab'); $('.som-tab-btn').removeClass('active'); $(this).addClass('active'); $('.som-tab-content').removeClass('active'); $('#' + tab + '-tab').addClass('active'); if (tab === 'processes') { loadProcesses(); } else if (tab === 'disk') { loadDiskInfo(); } }); // 刷新按钮 $('#som-refresh-processes').click(function() { loadProcesses(); }); // 加载进程列表 function loadProcesses() { var $list = $('#som-process-list'); var $status = $('.som-status'); $list.html('
加载中...
'); $status.html('刷新中...').css('color', '#666'); $.ajax({ url: som_ajax.ajax_url, type: 'POST', data: { action: 'som_get_processes', nonce: som_ajax.nonce }, timeout: 30000, success: function(response) { if (response.success) { displayProcesses(response.data); $status.html('✓ 更新成功 ' + new Date().toLocaleTimeString()).css('color', '#46b450'); setTimeout(function() { $status.fadeOut('slow', function() { $(this).text('').show(); }); }, 2000); } else { var errorMsg = response.data && response.data.message ? response.data.message : '加载失败'; $list.html('
❌ ' + errorMsg + '

可能的原因:
1. 服务器禁用了系统函数
2. 权限不足
3. 请检查PHP配置
'); $status.html('❌ 加载失败').css('color', '#dc3232'); } }, error: function(xhr, status, error) { console.log('AJAX Error:', status, error); $list.html('
❌ 请求失败:' + status + '
请检查网络连接或刷新页面重试
'); $status.html('❌ 请求失败').css('color', '#dc3232'); } }); } // 显示进程列表 function displayProcesses(processes) { if (!processes || processes.length === 0) { $('#som-process-list').html('
没有找到进程或无法获取进程列表
'); return; } var html = ''; html += ''; html += ''; html += ''; var displayed = 0; $.each(processes, function(i, proc) { // 过滤掉一些系统进程 if (proc.command && proc.command.length > 0 && proc.pid && proc.pid != '0') { var cpuClass = ''; if (proc.cpu !== 'N/A') { var cpuVal = parseFloat(proc.cpu); if (cpuVal > 50) { cpuClass = 'cpu-high'; } else if (cpuVal > 20) { cpuClass = 'cpu-medium'; } } html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; html += ''; displayed++; if (displayed >= 50) return false; // 限制显示数量 } }); if (displayed === 0) { html += ''; } html += ''; $('#som-process-list').html(html); // 绑定终止进程事件 $('.som-kill-btn').click(function(e) { e.preventDefault(); var pid = $(this).data('pid'); if (confirm('确定要终止进程 ' + pid + ' 吗?\n\n警告:终止系统关键进程可能导致服务器不稳定!')) { killProcess(pid); } }); } // 终止进程 function killProcess(pid) { var $btn = $('.som-kill-btn[data-pid="' + pid + '"]'); var originalText = $btn.text(); $btn.text('处理中...').prop('disabled', true); $.ajax({ url: som_ajax.ajax_url, type: 'POST', data: { action: 'som_kill_process', nonce: som_ajax.nonce, pid: pid }, success: function(response) { if (response.success) { alert('✓ ' + response.data); loadProcesses(); // 刷新列表 } else { alert('✗ ' + response.data); $btn.text(originalText).prop('disabled', false); } }, error: function() { alert('✗ 请求失败,请重试'); $btn.text(originalText).prop('disabled', false); } }); } // 加载磁盘信息 function loadDiskInfo() { $('#som-disk-info').html('
加载中...
'); $.ajax({ url: som_ajax.ajax_url, type: 'POST', data: { action: 'som_get_disk_usage', nonce: som_ajax.nonce }, timeout: 30000, success: function(response) { if (response.success) { displayDiskInfo(response.data); } else { $('#som-disk-info').html('
❌ ' + (response.data || '加载失败') + '
'); } }, error: function(xhr, status, error) { console.log('AJAX Error:', status, error); $('#som-disk-info').html('
❌ 请求失败:' + status + '
请刷新页面重试
'); } }); } // 显示磁盘信息 function displayDiskInfo(data) { var warningClass = data.used_percent > 80 ? 'warning' : ''; var html = '
'; html += '
'; html += '
' + data.total + '
'; html += '
' + data.used + '
'; html += '
' + data.free + '
'; html += '
'; html += '
'; html += '
'; html += data.used_percent + '%'; html += '
'; if (data.directories && Object.keys(data.directories).length > 0) { html += '
'; html += '

主要目录大小

'; $.each(data.directories, function(name, size) { var sizeFormatted = formatBytes(size); html += '
'; html += '' + escapeHtml(name) + ''; html += '' + sizeFormatted + ''; html += '
'; }); html += '
'; } html += '
'; $('#som-disk-info').html(html); } // 清理功能 $('.som-cleanup-btn').click(function() { var type = $(this).data('type'); var $btn = $(this); var originalText = $btn.text(); var $result = $('#som-cleanup-result'); $btn.prop('disabled', true).text('清理中...'); $result.html('
正在清理,请稍候...
'); $.ajax({ url: som_ajax.ajax_url, type: 'POST', data: { action: 'som_cleanup_disk', nonce: som_ajax.nonce, type: type }, timeout: 60000, success: function(response) { if (response.success) { var message = '✓ ' + response.data.message; if (response.data.details && response.data.details.length > 0) { message += '

详细:
' + response.data.details.join('
'); } $result.html('
' + message + '
'); loadDiskInfo(); // 刷新磁盘信息 } else { $result.html('
✗ ' + (response.data || '清理失败') + '
'); } setTimeout(function() { $result.fadeOut('slow', function() { $(this).empty().show(); }); }, 5000); }, error: function(xhr, status, error) { $result.html('
✗ 请求失败:' + status + '
请重试
'); }, complete: function() { $btn.prop('disabled', false).text(originalText); } }); }); // 辅助函数 function escapeHtml(text) { if (!text) return ''; var div = document.createElement('div'); div.appendChild(document.createTextNode(String(text))); return div.innerHTML; } function formatBytes(bytes) { if (bytes === 0) return '0 B'; var k = 1024; var sizes = ['B', 'KB', 'MB', 'GB']; var i = Math.floor(Math.log(bytes) / Math.log(k)); return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]; } // 初始加载 loadProcesses(); });SR系列径向锁紧螺母 – 螺母网

SAK SR系列径向锁紧螺母

SR系列径向锁紧螺母

SR系列带锁紧销的精密锁紧螺母为径向三点式锁定,其厚度较薄,适用于螺母厚度空间受到一定限制,且无法使用其他系列产品的安装环境。本产品M6~M65规格有三槽、四槽两种外型结构,仅供自制扳手操作时按需选择,使用效果无差异。

  • 本体材质:42CrMo锻件
  • 表面处理:非工作面喷砂发黑
  • 调质硬度:HRC28°~32°
  • 螺纹精度:ISO-4H精密车削
  • 平面偏摆:精车0.002~0.005mm(默认);研磨0.002mm

SR系列径向锁紧螺母

PID用户进程名称CPU占用率内存占用操作
' + escapeHtml(String(proc.pid)) + '' + escapeHtml(proc.user || 'N/A') + '' + escapeHtml(proc.command.substring(0, 60)) + '' + escapeHtml(String(proc.cpu)) + '%' + escapeHtml(String(proc.mem)) + '终止
没有找到有效的进程
零件型号外径
D [mm]
厚度
h [mm]
凸台
d [mm]
槽数×槽宽
n×g [mm]
槽深
t [mm]
紧定螺钉
n-M
螺钉拧紧力矩
[Nm]
轴向载荷
[kN]
重量
[kg]
SR-M5×0.5P168114×322-M43.5170.01
SR-M6×0.5P168114×322-M43.5170.01
SR-M8×0.75P168114×322-M43.5230.008
SR-M8×1.0P168114×322-M43.5230.008
SR-M9×0.75P188134×322-M43.5310.01
SR-M10×0.75P188134×322-M43.5310.01
SR-M10×1.0P188134×322-M43.5310.01
SR-M12×1.0P20(22)816(18)4×322-M43.5380.012(0.015)
SR-M12×1.25P20(22)816(18)4×322-M43.5380.012(0.015)
SR-M14×1.5P258204×322-M43.5500.02
SR-M15×1.0P258204×322-M43.5500.019
SR-M16×1.5P2810234×422-M54.5570.03
SR-M17×1.0P2810234×422-M54.5570.028
SR-M18×1.5P3010254×422-M54.5620.034
SR-M20×1.0P3210274×423-M54.5690.035
SR-M20×1.5P3210274×423-M54.5690.036
SR-M22×1.5P3510304×423-M54.5810.044
SR-M24×1.5P3812334×523-M68900.06
SR-M25×1.5P3812334×523-M68900.056
SR-M27×1.5P4212374×523-M68980.073
SR-M30×1.0P4512404×523-M681120.068
SR-M30×1.5P4512404×523-M681120.068
SR-M33×1.5P5212464×62.53-M681340.074
SR-M35×1.5P5212464×62.53-M681340.116
SR-M36×1.5P5212464×62.53-M681430.132
SR-M38×1.5P5814524×62.53-M681570.154
SR-M39×1.5P5814524×62.53-M681570.154
SR-M40×1.5P5814524×62.53-M681570.146
SR-M42×1.5P6214564×62.53-M681760.172
SR-M45×1.5P6514594×62.53-M681810.183
SR-M48×1.5P6814624×62.53-M681930.196
SR-M50×1.5P7014644×62.53-M8182050.199
SR-M50×2.0P7014644×62.53-M8182050.199
SR-M52×1.5P7316664×833-M8182130.251
SR-M55×2.0P7516684×833-M8182290.246
SR-M56×1.5P7516684×833-M8182400.241
SR-M56×2.0P7516684×833-M8182400.241
SR-M60×1.5P8016734×833-M8182400.265
SR-M60×2.0P8016734×833-M8182550.266
SR-M62×2.0P8316764×833-M8182550.266
SR-M64×1.5P8516784×833-M8182800.303
SR-M64×2.0P8516784×833-M8182800.303
SR-M65×2.0P8516784×833-M8182800.29
SR-M68×2.0P9218844×83.53-M8183050.412
SR-M70×2.0P9218844×83.53-M8183050.382
SR-M72×2.0P9418864×83.53-M8183200.393
SR-M75×2.0P9818904×83.53-M8183310.429
SR-M76×2.0P10018924×83.53-M8183420.461
SR-M80×2.0P10518964×83.53-M8183550.5
SR-M85×2.0P110181024×83.53-M8183850.53
SR-M90×2.0P120201084×1043-M8184100.724
SR-M95×2.0P125201134×1043-M8184500.79
SR-M100×2.0P130201184×1043-M8184650.826
SR-M105×2.0P140221254×1253-M10354951.081
SR-M110×2.0P145221324×1253-M10355201.147
SR-M115×2.0P150221374×1253-M10355501.227
SR-M120×2.0P155241424×1253-M10355801.375
SR-M125×2.0P160241474×1253-M10356101.389
SR-M130×2.0P165241524×1253-M10356301.476
SR-M130×3.0P165241524×1253-M10356301.476
SR-M135×2.0P175261604×1463-M10356701.912
SR-M140×2.0P178261654×1463-M12606901.892
SR-M145×2.0P190261754×1463-M12607202.36
SR-M150×2.0P195261804×1463-M12607502.436
SR-M155×3.0P200281804×1673-M12608302.685
SR-M160×3.0P210281904×1673-M12609803.18
SR-M165×3.0P210281904×1673-M126010302.814
SR-M170×3.0P220282004×1673-M126011303.12
SR-M180×3.0P230302054×1883-M126013003.642
SR-M190×3.0P240302154×1883-M126014703.885
SR-M195×3.0P240302154×1883-M126014703.7
SR-M200×3.0P250322254×1883-M126016004.326
SR-M210×3.0P260322404×1883-M126020004.63
SR-M220×3.0P270322504×1883-M126020504.85
SR-M230×3.0P280342584×2093-M126021004.985
SR-M240×3.0P290342684×2093-M126022005.4
SR-M250×3.0P300342784×2093-M126023005.83
SR-M260×4.0P310342884×22103-M1410024005.16
SR-M270×4.0P320342984×22103-M1410025005.5
SR-M280×4.0P330343086×22103-M1410026506.107
SR-M290×4.0P340363156×24113-M1410027006.613
SR-M300×4.0P350363256×24113-M1410028007.148
SR-M310×4.0P365363406×24123-M14100__
SR-M320×4.0P375363506×24123-M14100__
SR-M330×4.0P385363606×24123-M14100__
SR-M340×4.0P395363706×24123-M14100__
SR-M350×4.0P405363806×24123-M14100__
SR-M360×4.0P415383886×26133-M16150__
SR-M370×4.0P425383986×26133-M16150__
SR-M380×4.0P435384086×26133-M16150__
SR-M390×4.0P445384186×26133-M16150__
SR-M400×4.0P465384386×30133-M16150__
SR-M410×4.0P475404446×30153-M16150__
SR-M420×4.0P485404546×30153-M16150__
SR-M430×4.0P495404646×30153-M16150__
SR-M440×4.0P505404746×30153-M16150__
SR-M450×4.0P515404846×30153-M16150__
下载权限
查看
  • 免费下载
    评论并刷新后下载
    登录后下载
  • {{attr.name}}:
您当前的等级为
登录后免费下载登录 小黑屋反思中,不准下载! 评论后刷新页面下载评论 支付以后下载 请先登录 您今天的下载次数(次)用完了,请明天再来 支付积分以后下载立即支付 支付以后下载立即支付 您当前的用户组不允许下载升级会员
您已获得下载权限 您可以每天下载资源次,今日剩余
免责声明:本网站所有资源仅供参考学习,禁止未经授权的商业用途,如因依赖从本网站获得的信息并用于商业用途造成的损失,我们对此不负任何责任。
SAKSR系列径向锁紧螺母
在线询价 ×