mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 08:58:42 +03:00
update resources
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
padding: 0px;
|
||||
border-bottom:#4479FB 1px solid;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content:space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
.BannerBtns
|
||||
{
|
||||
float: right;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@@ -49,10 +49,35 @@
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.PrinterBlock img
|
||||
.PImg
|
||||
{
|
||||
position:relative;
|
||||
background-color: #EEEEEE;
|
||||
width:160px;
|
||||
height: 160px;
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
.ModelCheckBox
|
||||
{
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
cursor: pointer;
|
||||
background-image: url("../img/emptycheck.svg");
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.ModelCheckBox.ModelCheckBoxSelected
|
||||
{
|
||||
background-image: url("../img/bluecheck.svg");
|
||||
}
|
||||
|
||||
img.ModelThumbnail
|
||||
{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.PName
|
||||
@@ -63,7 +88,7 @@
|
||||
|
||||
.pNozzel
|
||||
{
|
||||
display: flex;
|
||||
display: none;
|
||||
align-items: center;
|
||||
justify-content:flex-start;
|
||||
color: #5A5A5A;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
function OnInit()
|
||||
{
|
||||
//let strInput=JSON.stringify(cData);
|
||||
//HandleStudio(strInput);
|
||||
//HandleModelList(cData);
|
||||
|
||||
TranslatePage();
|
||||
|
||||
@@ -47,6 +47,19 @@ function ShowPrinterThumb(pItem, strImg)
|
||||
$(pItem).attr('onerror',null);
|
||||
}
|
||||
|
||||
function ChooseModel( ModelName )
|
||||
{
|
||||
let ChooseItem=$(".ModelCheckBox[model='"+ModelName+"']");
|
||||
|
||||
if(ChooseItem!=null)
|
||||
{
|
||||
if( $(ChooseItem).hasClass('ModelCheckBoxSelected') )
|
||||
$(ChooseItem).removeClass('ModelCheckBoxSelected');
|
||||
else
|
||||
$(ChooseItem).addClass('ModelCheckBoxSelected');
|
||||
}
|
||||
}
|
||||
|
||||
function HandleModelList( pVal )
|
||||
{
|
||||
if( !pVal.hasOwnProperty("model") )
|
||||
@@ -78,11 +91,11 @@ function HandleModelList( pVal )
|
||||
|
||||
let HtmlNewVendor='<div class="OneVendorBlock" Vendor="'+strVendor+'">'+
|
||||
'<div class="BlockBanner">'+
|
||||
' <a>'+sVV+'</a>'+
|
||||
' <div class="BannerBtns">'+
|
||||
' <div class="SmallBtn_Green trans" tid="t11" onClick="SelectPrinterAll('+"\'"+strVendor+"\'"+')">all</div>'+
|
||||
' <div class="SmallBtn trans" tid="t12" onClick="SelectPrinterNone('+"\'"+strVendor+"\'"+')">none</div>'+
|
||||
' </div>'+
|
||||
' <a>'+sVV+'</a>'+
|
||||
'</div>'+
|
||||
'<div class="PrinterArea"> '+
|
||||
'</div>'+
|
||||
@@ -100,22 +113,18 @@ function HandleModelList( pVal )
|
||||
if( !ModelHtml.hasOwnProperty(strVendor))
|
||||
ModelHtml[strVendor]='';
|
||||
|
||||
let NozzleArray=OneModel['nozzle_diameter'].split(';');
|
||||
let HtmlNozzel='';
|
||||
for(let m=0;m<NozzleArray.length;m++)
|
||||
{
|
||||
let nNozzel=NozzleArray[m];
|
||||
HtmlNozzel+='<div class="pNozzel TextS2"><input type="checkbox" model="'+OneModel['model']+'" nozzel="'+nNozzel+'" vendor="'+strVendor+'" /><span>'+nNozzel+'</span><span class="trans" tid="t13">mm nozzle</span></div>';
|
||||
}
|
||||
|
||||
let CoverImage="../../image/printer/"+OneModel['model']+"_cover.png";
|
||||
let CoverImage2="../../../profiles/"+strVendor+"/"+OneModel['model']+"_cover.png";
|
||||
let CoverImage3=pVal['configpath']+"/system/"+strVendor+"/"+OneModel['model']+"_cover.png";
|
||||
|
||||
//alert( 'FinalCover: '+FinalCover );
|
||||
ModelHtml[strVendor]+='<div class="PrinterBlock">'+
|
||||
' <div class="PImg"><img src="'+CoverImage3+'" onerror="ShowPrinterThumb(this,\''+CoverImage2+'\')" /></div>'+
|
||||
' <div class="PName">'+OneModel['model']+'</div>'+ HtmlNozzel +'</div>';
|
||||
'<div class="PImg">'+
|
||||
'<img class="ModelThumbnail" src="'+CoverImage3+'" onerror="ShowPrinterThumb(this,\''+CoverImage2+'\')" />'+
|
||||
'<div class="ModelCheckBox" model="'+OneModel['model']+'" onClick="ChooseModel(\''+OneModel['model']+'\')"></div>'+
|
||||
'</div>'+
|
||||
' <div class="PName">'+OneModel['model']+'</div>'+
|
||||
'</div>';
|
||||
|
||||
}
|
||||
|
||||
@@ -127,7 +136,6 @@ function HandleModelList( pVal )
|
||||
|
||||
|
||||
//Update Checkbox
|
||||
$('input').prop("checked", false);
|
||||
for(let m=0;m<nTotal;m++)
|
||||
{
|
||||
let OneModel=pModel[m];
|
||||
@@ -135,27 +143,15 @@ function HandleModelList( pVal )
|
||||
let SelectList=OneModel['nozzle_selected'];
|
||||
if(SelectList!='')
|
||||
{
|
||||
SelectList=OneModel['nozzle_selected'].split(';');
|
||||
let nLen=SelectList.length;
|
||||
|
||||
for(let a=0;a<nLen;a++)
|
||||
{
|
||||
let nNozzel=SelectList[a];
|
||||
$("input[vendor='"+OneModel['vendor']+"'][model='"+OneModel['model']+"'][nozzel='"+nNozzel+"']").prop("checked", true);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$("input[vendor='"+OneModel['vendor']+"'][model='"+OneModel['model']+"']").prop("checked", false);
|
||||
ChooseModel(OneModel['model']);
|
||||
}
|
||||
}
|
||||
|
||||
let AlreadySelect=$("input:checked");
|
||||
let AlreadySelect=$(".ModelCheckBoxSelected");
|
||||
let nSelect=AlreadySelect.length;
|
||||
if(nSelect==0)
|
||||
{
|
||||
//w22
|
||||
$("input[nozzel='0.4']").prop("checked", true);
|
||||
{
|
||||
$("div.OneVendorBlock[vendor='X 4 Series'] .ModelCheckBox").addClass('ModelCheckBoxSelected');
|
||||
}
|
||||
|
||||
TranslatePage();
|
||||
@@ -164,13 +160,13 @@ function HandleModelList( pVal )
|
||||
|
||||
function SelectPrinterAll( sVendor )
|
||||
{
|
||||
$("input[vendor='"+sVendor+"']").prop("checked", true);
|
||||
$("div.OneVendorBlock[vendor='"+sVendor+"'] .ModelCheckBox").addClass('ModelCheckBoxSelected');
|
||||
}
|
||||
|
||||
|
||||
function SelectPrinterNone( sVendor )
|
||||
{
|
||||
$("input[vendor='"+sVendor+"']").prop("checked", false);
|
||||
$("div.OneVendorBlock[vendor='"+sVendor+"'] .ModelCheckBox").removeClass('ModelCheckBoxSelected');
|
||||
}
|
||||
|
||||
|
||||
@@ -187,7 +183,7 @@ function OnExit()
|
||||
{
|
||||
let ModelAll={};
|
||||
|
||||
let ModelSelect=$("input:checked");
|
||||
let ModelSelect=$(".ModelCheckBoxSelected");
|
||||
let nTotal=ModelSelect.length;
|
||||
|
||||
if( nTotal==0 )
|
||||
@@ -202,8 +198,6 @@ function OnExit()
|
||||
let OneItem=ModelSelect[n];
|
||||
|
||||
let strModel=OneItem.getAttribute("model");
|
||||
let strVendor=OneItem.getAttribute("vendor");
|
||||
let strNozzel=OneItem.getAttribute("nozzel");
|
||||
|
||||
//alert(strModel+strVendor+strNozzel);
|
||||
|
||||
@@ -214,11 +208,7 @@ function OnExit()
|
||||
ModelAll[strModel]={};
|
||||
|
||||
ModelAll[strModel]["model"]=strModel;
|
||||
ModelAll[strModel]["nozzle_diameter"]='';
|
||||
ModelAll[strModel]["vendor"]=strVendor;
|
||||
}
|
||||
|
||||
ModelAll[strModel]["nozzle_diameter"]+=ModelAll[strModel]["nozzle_diameter"]==''?strNozzel:';'+strNozzel;
|
||||
}
|
||||
|
||||
var tSend={};
|
||||
|
||||
@@ -23,37 +23,49 @@
|
||||
|
||||
<!--<div class="OneVendorBlock" Vendor="QDT">
|
||||
<div class="BlockBanner">
|
||||
<a>QDT-3DP</a>
|
||||
<div class="BannerBtns">
|
||||
<div class="SmallBtn_Green trans" onClick="SelectPrinterAll('QDT')">所有</div>
|
||||
<div class="SmallBtn trans" onClick="SelectPrinterNone('QDT')">无</div>
|
||||
</div>
|
||||
|
||||
<a>QDT-3DP</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="PrinterArea">
|
||||
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p2.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox ModelCheckBoxSelected" model="QDT-3DP-V5NORMAL" onClick="ChooseModel('QDT-3DP-V5NORMAL')"></div>
|
||||
</div>
|
||||
<div class="PName">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input id="ZZ" type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.4" vendor="QDT" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.1" vendor="QDT" />0.1mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.1" vendor="QDT" />0.1mm nozzle</div>
|
||||
</div>
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p1.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox"></div>
|
||||
</div>
|
||||
<div class="PName">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.4" vendor="QDT" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.2" vendor="QDT" />0.22mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.1" vendor="QDT" />0.1mm nozzle</div>
|
||||
</div>
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p2.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox"></div>
|
||||
</div>
|
||||
<div class="PName">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input id="ZZ" type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.4" vendor="QDT" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.1" vendor="QDT" />0.11mm nozzle</div>
|
||||
</div>
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p1.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox ModelCheckBoxSelected"></div>
|
||||
</div>
|
||||
<div class="PName">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.4" vendor="QDT" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.2" vendor="QDT" />0.22mm nozzle</div>
|
||||
@@ -66,24 +78,30 @@
|
||||
|
||||
<div class="OneVendorBlock" Vendor="QIDI">
|
||||
<div class="BlockBanner">
|
||||
<a>QIDI-3DP</a>
|
||||
<div class="BannerBtns">
|
||||
<div class="Banner-Btn" onClick="SelectPrinterAll('QIDI')">所有</div>
|
||||
<div class="Banner-Btn" onClick="SelectPrinterNone('QIDI')">无</div>
|
||||
<div class="SmallBtn_Green trans" onClick="SelectPrinterAll('QIDI')">所有</div>
|
||||
<div class="SmallBtn trans" onClick="SelectPrinterNone('QIDI')">无</div>
|
||||
</div>
|
||||
|
||||
<a>QDT-3DP</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="PrinterArea">
|
||||
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p2.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox ModelCheckBoxSelected"></div>
|
||||
</div>
|
||||
<div class="PName TextS1">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.4" vendor="QIDI" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V4NORMAL" nozzel="0.1" vendor="QIDI" />0.1mm nozzle</div>
|
||||
</div>
|
||||
<div class="PrinterBlock">
|
||||
<div class="PImg"><img src="p1.jpg" /></div>
|
||||
<div class="PImg">
|
||||
<img class="ModelThumbnail" src="p2.jpg" />
|
||||
<div class="ModelCheckBox ModelCheckBoxSelected"></div>
|
||||
</div>
|
||||
<div class="PName TextS1">QDT-3DP-V4NORMAL</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.4" vendor="QIDI" />0.4mm nozzle</div>
|
||||
<div class="pNozzel TextS2"><input type="checkbox" model="QDT-3DP-V5NORMAL" nozzel="0.2" vendor="QIDI" />0.2mm nozzle</div>
|
||||
|
||||
@@ -1,472 +0,0 @@
|
||||
var cData={
|
||||
"filament": {
|
||||
"QDT PA-CF @QDT": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "QDT PA-CF @QDT",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/QDT PA-CF @QDT.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "QDT"
|
||||
},
|
||||
"Generic ABS": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic ABS",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic ABS.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic PETG": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic PETG",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic PETG.json",
|
||||
"type": "PET",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic PLA": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic PLA",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic PLA.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic TPU": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic TPU",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic TPU.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic TPU83": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic TPU83",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic TPU83.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic TPU87": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic TPU87",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic TPU87.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic TPU90": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic TPU90",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic TPU90.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"Generic TPU95": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "Generic TPU95",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/Generic TPU95.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Unknow"
|
||||
},
|
||||
"K5 ABS @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 ABS @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 ABS @Kexcelled.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5 ASA @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 ASA @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 ASA @Kexcelled.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5 PETG @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 PETG @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 PETG @Kexcelled.json",
|
||||
"type": "PET",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5 PLA~ @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 PLA~ @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5 Silk PLA~ @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 Silk PLA~ @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 Silk PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5 Sparkle PLA @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5 Sparkle PLA @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5 Sparkle PLA @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5M PLA~ @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5M PLA~ @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5M PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5P PLA~ @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5P PLA~ @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5P PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K5T ABS @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K5T ABS @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K5T ABS @Kexcelled.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K6 PETG @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K6 PETG @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K6 PETG @Kexcelled.json",
|
||||
"type": "PET",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K6 PLA~ @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K6 PLA~ @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K6 PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K6CF PLA~ @Kexcelled ": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K6CF PLA~ @Kexcelled ",
|
||||
"selected": 0,
|
||||
"sub_path": "filament/K6CF PLA~ @Kexcelled.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K7 PC @Kexcelled ": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K7 PC @Kexcelled ",
|
||||
"selected": 0,
|
||||
"sub_path": "filament/K7 PC @Kexcelled.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K7CF PETG @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K7CF PETG @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K7CF PETG @Kexcelled.json",
|
||||
"type": "PET",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"K7CFLM PAHT @Kexcelled": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "K7CFLM PAHT @Kexcelled",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/K7CFLM PAHT @Kexcelled.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Kexcelled"
|
||||
},
|
||||
"PLA Silk with Glue @ALL": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PLA Silk with Glue @ALL",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PLA Silk with Glue @ALL.json",
|
||||
"type": "PLA",
|
||||
"vendor": "ALL"
|
||||
},
|
||||
"PLA with Glue except Silk @ALL": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PLA with Glue except Silk @ALL",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PLA with Glue except Silk @ALL.json",
|
||||
"type": "PLA",
|
||||
"vendor": "ALL"
|
||||
},
|
||||
"PolyDissolve @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyDissolve @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyDissolve @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyFlex TPU95HF @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyFlex TPU95HF @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyFlex TPU95HF @Polymaker.json",
|
||||
"type": "TPU",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite ABS @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite ABS @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite ABS @Polymaker.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite ASA @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite ASA @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite ASA @Polymaker.json",
|
||||
"type": "ABS",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite PC @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite PC @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite PC @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite PETG @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite PETG @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite PETG @Polymaker.json",
|
||||
"type": "PET",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite PLA Pro~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite PLA Pro~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite PLA Pro~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite PLA Silk~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite PLA Silk~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite PLA Silk~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyLite PLA~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyLite PLA~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyLite PLA~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMax PC @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMax PC @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMax PC @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMax PETG @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMax PETG @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMax PETG @Polymaker.json",
|
||||
"type": "PET",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMax PLA~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMax PLA~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMax PLA~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMide CoPA @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMide CoPA @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMide CoPA @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMide PA12-CF @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMide PA12-CF @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMide PA12-CF @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMide PA6-CF @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMide PA6-CF @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMide PA6-CF @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyMide PA6-GF @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyMide PA6-GF @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyMide PA6-GF @Polymaker.json",
|
||||
"type": "PA6+CF",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolySupport @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolySupport @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolySupport @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyTerra PLA~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyTerra PLA~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyTerra PLA~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"PolyWood PLA~ @Polymaker": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "PolyWood PLA~ @Polymaker",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/PolyWood PLA~ @Polymaker.json",
|
||||
"type": "PLA",
|
||||
"vendor": "Polymaker"
|
||||
},
|
||||
"eSUN ABS @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN ABS @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN ABS @eSUN.json",
|
||||
"type": "ABS",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN ABS+ @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN ABS+ @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN ABS+ @eSUN.json",
|
||||
"type": "ABS",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PETG @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PETG @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PETG @eSUN.json",
|
||||
"type": "PET",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PLA @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PLA @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PLA @eSUN.json",
|
||||
"type": "PLA",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PLA Matte~ @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PLA Matte~ @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PLA Matte~ @eSUN.json",
|
||||
"type": "PLA",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PLA ST @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PLA ST @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PLA ST @eSUN.json",
|
||||
"type": "PLA",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PLA Silk~ @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PLA Silk~ @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PLA Silk~ @eSUN.json",
|
||||
"type": "PLA",
|
||||
"vendor": "eSUN"
|
||||
},
|
||||
"eSUN PLA+~ @eSUN": {
|
||||
"models": "[QDT-3DP-V4NORMAL][QDT-3DP-V5NORMAL]",
|
||||
"name": "eSUN PLA+~ @eSUN",
|
||||
"selected": 1,
|
||||
"sub_path": "filament/eSUN PLA+~ @eSUN.json",
|
||||
"type": "PLA",
|
||||
"vendor": "eSUN"
|
||||
}
|
||||
},
|
||||
"machine": [{
|
||||
"model": "QDT-3DP-V4NORMAL",
|
||||
"name": "QIDITech QDT-3DP-001-V4-normal",
|
||||
"sub_path": "machine/QIDITech QDT-3DP-001-V4-normal.json"
|
||||
},
|
||||
{
|
||||
"model": "QDT-3DP-V5NORMAL",
|
||||
"name": "QIDITech QDT-3DP-001-V5-normal",
|
||||
"sub_path": "machine/QIDITech QDT-3DP-001-V5-normal.json"
|
||||
}
|
||||
],
|
||||
"model": [{
|
||||
"cover": "D:\\Document\\QIDI\\DevCode\\Slicer\\qidi_slicer\\build\\src\\Debug\\resources\\profiles\\QDT\\QDT-3DP-V4NORMAL_cover.png",
|
||||
"materials": "Generic PLA;PolyDissolve @Polymaker;PolyFlex TPU95HF @Polymaker;K5 Sparkle PLA @Kexcelled;Rock PLA @Polymaker;Generic TPU95;Generic TPU90;Generic TPU87;Generic TPU83;PolyMide CoPA @Polymaker;PolyMide PA6-GF @Polymaker;PolyMide PA12-CF @Polymaker;PolyMide PA6-CF @Polymaker;PolyLite ASA @Polymaker;K5 ASA @Kexcelled;K5T ABS @Kexcelled;PLA with Glue except Silk @ALL;PLA Silk with Glue @ALL;PolyTerra PLA~ @Polymaker; PolyLite PLA~ @Polymaker; PolyLite PLA Pro~ @Polymaker; PolyLite PLA Silk~ @Polymaker; PolyMax PLA~ @Polymaker; PolyWood PLA~ @Polymaker;K5 Silk PLA~ @Kexcelled;K5 PLA~ @Kexcelled;K6 PLA~ @Kexcelled;K6CF PLA~ @Kexcelled;K5M PLA~ @Kexcelled;K5P PLA~ @Kexcelled;eSUN PLA @eSUN; eSUN PLA+~ @eSUN; eSUN PLA Matte~ @eSUN; eSUN PLA Silk~ @eSUN; eSUN PLA ST @eSUN; PolyLite ABS @Polymaker; K5 ABS @Kexcelled; eSUN ABS @eSUN; eSUN ABS+ @eSUN; K5 PETG @Kexcelled; K6 PETG @Kexcelled; PolyMax PETG @Polymaker; PolyLite PETG @Polymaker; eSUN PETG @eSUN; PolySupport @Polymaker;K7CF PETG @Kexcelled;K7CFLM PAHT @Kexcelled; K7LM PAHT @Kexcelled; QDT PA-CF @QDT;K7 PC @Kexcelled; PolyLite PC @Polymaker; PolyMax PC @Polymaker;",
|
||||
"model": "QDT-3DP-V4NORMAL",
|
||||
"nozzle_diameter": "0.4;0.2",
|
||||
"nozzle_selected": "0.4",
|
||||
"sub_path": "machine/QDT-3DP-V4NORMAL.json",
|
||||
"vendor": "QDT"
|
||||
},
|
||||
{
|
||||
"cover": "D:\\Document\\QIDI\\DevCode\\Slicer\\qidi_slicer\\build\\src\\Debug\\resources\\profiles\\QDT\\QDT-3DP-V5NORMAL_cover.png",
|
||||
"materials": "Generic PLA;PolyDissolve @Polymaker;PolyFlex TPU95HF @Polymaker;K5 Sparkle PLA @Kexcelled;Rock PLA @Polymaker;Generic TPU95;Generic TPU90;Generic TPU87;Generic TPU83;PolyMide CoPA @Polymaker;PolyMide PA6-GF @Polymaker;PolyMide PA12-CF @Polymaker;PolyMide PA6-CF @Polymaker;PolyLite ASA @Polymaker;K5 ASA @Kexcelled;K5T ABS @Kexcelled;PLA with Glue except Silk @ALL;PLA Silk with Glue @ALL;PolyTerra PLA~ @Polymaker; PolyLite PLA~ @Polymaker; PolyLite PLA Pro~ @Polymaker; PolyLite PLA Silk~ @Polymaker; PolyMax PLA~ @Polymaker; PolyWood PLA~ @Polymaker;K5 Silk PLA~ @Kexcelled;K5 PLA~ @Kexcelled;K6 PLA~ @Kexcelled;K6CF PLA~ @Kexcelled;K5M PLA~ @Kexcelled;K5P PLA~ @Kexcelled;eSUN PLA @eSUN; eSUN PLA+~ @eSUN; eSUN PLA Matte~ @eSUN; eSUN PLA Silk~ @eSUN; eSUN PLA ST @eSUN; PolyLite ABS @Polymaker; K5 ABS @Kexcelled; eSUN ABS @eSUN; eSUN ABS+ @eSUN; K5 PETG @Kexcelled; K6 PETG @Kexcelled; PolyMax PETG @Polymaker; PolyLite PETG @Polymaker; eSUN PETG @eSUN; PolySupport @Polymaker;K7CF PETG @Kexcelled;K7CFLM PAHT @Kexcelled; K7LM PAHT @Kexcelled; QDT PA-CF @QDT;K7 PC @Kexcelled; PolyLite PC @Polymaker; PolyMax PC @Polymaker;",
|
||||
"model": "QDT-3DP-V5NORMAL",
|
||||
"nozzle_diameter": "0.4;0.2;0.1",
|
||||
"nozzle_selected": "0.4",
|
||||
"sub_path": "machine/QDT-3DP-V5NORMAL.json",
|
||||
"vendor": "QDT"
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
|
||||
var MData={
|
||||
"QDT-3DP-V4NORMAL": {
|
||||
"model": "QDT-3DP-V4NORMAL",
|
||||
"nozzle_diameter": "0.4",
|
||||
"vendor": "QDT"
|
||||
},
|
||||
"QDT-3DP-V5NORMAL": {
|
||||
"model": "QDT-3DP-V5NORMAL",
|
||||
"nozzle_diameter": "0.4;0.2",
|
||||
"vendor": "QDT"
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user