加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
json.js 137.97 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731
const list= [
{
"type": 1,
"skuItem":
{
"subscription": false,
"subStatus": false,
"skuId": 66974,
"picUrl": "https://p1.meituan.net/mallimages/079490467a182c4b8fb388443e148cb088500.jpg",
"skuTitle": {
"text": "乳山生蚝75g-100g"
},
"skuSubTitle": {
"text": "乳山优质产地,三倍体生蚝更甜美,肉质肥嫩,建议烹饪后食用",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.5"
},
"dashPrice": {
"text": "¥3.99",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 250,
"v2Tags": [{
"tagType": 0,
"type": 2,
"priority": 10,
"ordered": 15,
"styleText": {
"text": "6.3折",
"styleId": "tag_new_pro"
}
},
{
"tagType": 2,
"type": 7,
"priority": 35,
"ordered": 25,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/6c17858c3ce19fe909ad4ad6c2c62b2112570.png",
"width": 48,
"height": 44,
"imageId": ""
},
"styleText": {
"text": "应季好货",
"styleId": "tag_base_property"
}
},
{
"tagType": 2,
"type": 9,
"priority": 45,
"ordered": 35,
"image": {
"title": "",
"url": "https://p1.meituan.net/mallimages/f8dc4fe80401dbf8855a3dcdbf15ede15100.png",
"width": 30,
"height": 16,
"imageId": ""
},
"styleText": {
"text": "活鲜",
"styleId": "tag_temperature"
}
}
],
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p1.meituan.net/mallimages/745afea961b998736b387863d9855be9210296.jpg",
"categoryId": 0,
"baseCategoryId": 14
}
},
{
"type": 4,
"cboardVO": {
"boardType": 1,
"cboardNamePic": {
"title": "",
"url": "https://p1.meituan.net/mallimages/94410babb2522ef1bd1eb918d2af5bb713795.png",
"width": 504,
"height": 75
},
"cboardBackGroundPic": {
"title": "",
"url": "https://p0.meituan.net/mallimages/f53dfa85384b47167e5415ed9a048ccf43232.png",
"width": 344,
"height": 500
},
"cboardDesc": {
"text": "分分钟卖断货"
},
"cboardName": {
"text": "24小时热卖榜"
},
"cboardTabVO": {
"skuItems": [
{
"subscription": false,
"subStatus": false,
"skuId": 95074,
"picUrl": "https://p1.meituan.net/mallimages/c0f34d20d22862f1f8eb86f5065b5b78124431.jpg",
"skuTitle": {
"text": "爆汁番茄约500g"
},
"skuSubTitle": {
"text": "红扑扑的脸蛋,讨人欢喜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.39"
},
"dashPrice": {
"text": "¥5.29",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 439,
"v2Tags": [{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}],
"dailySales": 866,
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"boardChosenReasons": [{
"text": "日售866"
}],
"detailPagePic": "https://p0.meituan.net/mallimages/ee3805fbed3f8602938803630209c1bb208610.jpg",
"categoryId": 0,
"baseCategoryId": 226
},
{
"subscription": false,
"subStatus": false,
"skuId": 99020,
"picUrl": "https://p0.meituan.net/mallimages/2096c6ac90f45e925f7167fc95cfb86742720.jpg",
"skuTitle": {
"text": "广西砂糖桔500g起"
},
"skuSubTitle": {
"text": "香甜多汁,味香馥郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"dashPrice": {
"text": "¥7.9",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 399,
"v2Tags": [{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}],
"dailySales": 759,
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"boardChosenReasons": [{
"text": "日售759"
}],
"detailPagePic": "https://p0.meituan.net/mallimages/15a4747b13b580eedc493e33557fcd3a180927.jpg",
"categoryId": 0,
"baseCategoryId": 275
},
{
"subscription": false,
"subStatus": false,
"skuId": 98320,
"picUrl": "https://p0.meituan.net/mallimages/d4bfebff42d203e6ef8df97dc9c4c53e243115.jpg",
"skuTitle": {
"text": "丹东99红颜草莓250g"
},
"skuSubTitle": {
"text": "嫩红水润,新鲜直达",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥19.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 1990,
"dailySales": 722,
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"boardChosenReasons": [{
"text": "日售722"
}],
"detailPagePic": "https://p0.meituan.net/mallimages/397491b1e99af7fabc7456a2dd14aaea249593.jpg",
"categoryId": 0,
"baseCategoryId": 283
}
],
"tabName": {
"text": "全部"
},
"tabId": -1
}
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 95932,
"picUrl": "https://p1.meituan.net/mallimages/3870ed965e4a4c81da66b09f7eeb247e432913.png",
"skuTitle": {
"text": "广西皇帝柑约500g"
},
"skuSubTitle": {
"text": "天生小个头,浓缩的加倍甜蜜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥9.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 990,
"v2Tags": [{
"tagType": 0,
"type": 2,
"priority": 10,
"ordered": 15,
"styleText": {
"text": "买一赠一",
"styleId": "tag_new_pro"
}
}],
"memberPrice": {
"text": "¥9"
},
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p1.meituan.net/mallimages/2f8ad396ae0c6a45e89466ee8c71343f133785.jpg",
"categoryId": 0,
"baseCategoryId": 275
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 99020,
"picUrl": "https://p0.meituan.net/mallimages/2096c6ac90f45e925f7167fc95cfb86742720.jpg",
"skuTitle": {
"text": "广西砂糖桔500g起"
},
"skuSubTitle": {
"text": "香甜多汁,味香馥郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"dashPrice": {
"text": "¥7.9",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 399,
"v2Tags": [{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}],
"recReason": {
"recReasonId": "5_1_2",
"recReasonText": {
"text": "水果热卖榜第1名",
"styleId": "rec_reason"
}
},
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/15a4747b13b580eedc493e33557fcd3a180927.jpg",
"categoryId": 0,
"baseCategoryId": 275
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 84157,
"picUrl": "https://p0.meituan.net/mallimages/916076ba78d1f8ce38edda39dbfdf25478931.jpg",
"skuTitle": {
"text": "竹蔗茅根马蹄 400g"
},
"skuSubTitle": {
"text": "煲汤、糖水,甜甜蜜蜜好味道",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥7.9"
},
"dashPrice": {
"text": "¥8.99",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 790,
"v2Tags": [{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}],
"recReason": {
"recReasonId": "3",
"recReasonText": {
"text": "附近2762人看过",
"styleId": "rec_reason"
}
},
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/ab4d80a4df0b3074d3f6bff7001dfb4c60034.jpg",
"categoryId": 0,
"baseCategoryId": 185
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 93884,
"picUrl": "https://p1.meituan.net/mallimages/f9d4e9fd6e59a028f95461fcac070926829853.png",
"skuTitle": {
"text": "金针菇100g"
},
"skuSubTitle": {
"text": "菇柄脆嫩,菇盖爽滑,烹煮皆可",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥0.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 99,
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/c12c349855b056dcde10523e000c1a8b246256.jpg",
"categoryId": 0,
"baseCategoryId": 238
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 95074,
"picUrl": "https://p1.meituan.net/mallimages/c0f34d20d22862f1f8eb86f5065b5b78124431.jpg",
"skuTitle": {
"text": "爆汁番茄约500g"
},
"skuSubTitle": {
"text": "红扑扑的脸蛋,讨人欢喜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.39"
},
"dashPrice": {
"text": "¥5.29",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 439,
"v2Tags": [{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}],
"recReason": {
"recReasonId": "5_1_1",
"recReasonText": {
"text": "蔬菜热卖榜第1名",
"styleId": "rec_reason"
}
},
"buttonList": [{
"text": "",
"enable": true,
"status": 1
}],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/ee3805fbed3f8602938803630209c1bb208610.jpg",
"categoryId": 0,
"baseCategoryId": 226
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 84803,
"picUrl": "https://p0.meituan.net/mallimages/7bcab476d3dc4322338c2b791201f4ba651284.png",
"skuTitle": {
"text": "泰丰散养老母鸡(斩件)500g"
},
"skuSubTitle": {
"text": "肉质紧实,汤鲜味美,营养滋补,适合煲汤",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥22.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 2290,
"v2Tags": [
{
"tagType": 2,
"type": 9,
"priority": 45,
"ordered": 35,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/3573662e6d06853d8c9e889b4cdd62aa5402.png",
"width": 30,
"height": 16,
"imageId": ""
},
"styleText": {
"text": "冷鲜",
"styleId": "tag_temperature"
}
}
],
"memberPrice": {
"text": "¥21.1"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/57d5e2f9430aa7db1d79ebac5f18da04383484.jpg",
"categoryId": 0,
"baseCategoryId": 138
}
},
{
"type": 4,
"cboardVO": {
"boardType": 2,
"cboardNamePic": {
"title": "",
"url": "https://p1.meituan.net/mallimages/980869d165c28e998fefef0ad8a4beeb6383.png",
"width": 240,
"height": 75
},
"cboardBackGroundPic": {
"title": "",
"url": "https://p1.meituan.net/mallimages/0f14ec0437fe4cea2c87398d5b37bdd536607.png",
"width": 344,
"height": 500
},
"cboardDesc": {
"text": "实现菜场自由"
},
"cboardName": {
"text": "特惠榜"
},
"cboardTabVO": {
"skuItems": [
{
"subscription": false,
"subStatus": false,
"skuId": 93884,
"picUrl": "https://p1.meituan.net/mallimages/f9d4e9fd6e59a028f95461fcac070926829853.png",
"skuTitle": {
"text": "金针菇100g"
},
"skuSubTitle": {
"text": "菇柄脆嫩,菇盖爽滑,烹煮皆可",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥0.98"
},
"dashPrice": {
"text": "¥0.99",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 98,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"boardChosenReasons": [
{
"text": "¥0.99",
"styleId": "dp"
}
],
"detailPagePic": "https://p0.meituan.net/mallimages/c12c349855b056dcde10523e000c1a8b246256.jpg",
"categoryId": 0,
"baseCategoryId": 238
},
{
"subscription": false,
"subStatus": false,
"skuId": 95556,
"picUrl": "https://p0.meituan.net/mallimages/603615e1321d3bcfb97963c7b9df1359245144.png",
"skuTitle": {
"text": "统一太魔性柠檬红茶250ml"
},
"skuSubTitle": {
"text": "双重柠檬风味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥1"
},
"dashPrice": {
"text": "¥1.8",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 100,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
},
{
"tagType": 0,
"type": 14,
"priority": 25,
"ordered": 65,
"styleText": {
"text": "4件起购",
"styleId": "tag_delivery"
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": true,
"boardChosenReasons": [
{
"text": "¥1.8",
"styleId": "dp"
}
],
"detailPagePic": "https://p0.meituan.net/mallimages/3983d5c9d721d66fc7eedbf942fd11ad385919.jpg",
"categoryId": 0,
"baseCategoryId": 306
},
{
"subscription": false,
"subStatus": false,
"skuId": 96292,
"picUrl": "https://p0.meituan.net/mallimages/7180a8551409394d747ef58557ec7ccf433817.png",
"skuTitle": {
"text": "象大厨香辣味海带结30g"
},
"skuSubTitle": {
"text": "迷你随身包:香辣爽口,脆滑美味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥1.5"
},
"dashPrice": {
"text": "¥2.8",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 150,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
},
{
"tagType": 1,
"type": 4,
"priority": 0,
"ordered": 1,
"image": {
"url": "https://p0.meituan.net/mallimages/f90ad4e725bfaec40ca0a93a5a8d672e6372.png",
"width": 120,
"height": 120
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": true,
"boardChosenReasons": [
{
"text": "¥2.8",
"styleId": "dp"
}
],
"detailPagePic": "https://p1.meituan.net/mallimages/5e4085318c61156167aecb859b0909a9203256.jpg",
"categoryId": 0,
"baseCategoryId": 1020
}
],
"tabName": {
"text": "全部"
},
"tabId": -1
}
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 4353,
"picUrl": "https://p0.meituan.net/mallimages/e0960cb77a9366060bdbfb888b8b8dd6358316.png",
"skuTitle": {
"text": "蒙牛风味酸牛奶圆周杯原味100g*8(新老包装随机发货)"
},
"skuSubTitle": {
"text": "天然发酵,营养健康,每一口都奶香浓郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥8.9"
},
"dashPrice": {
"text": "¥9.9",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 890,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
},
{
"tagType": 2,
"type": 9,
"priority": 45,
"ordered": 35,
"image": {
"title": "",
"url": "https://p1.meituan.net/mallimages/13cb54c9315ede3cb9f4223e95cc99565554.png",
"width": 30,
"height": 16,
"imageId": ""
},
"styleText": {
"text": "冷藏",
"styleId": "tag_temperature"
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/a92328c3af839f1a432a22d03f8b635493820.jpg",
"categoryId": 0,
"baseCategoryId": 411
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66861,
"picUrl": "https://p0.meituan.net/mallimages/ff0152d0f83f3bc7878b9a463136bbe7215212.jpg",
"skuTitle": {
"text": "鲜板栗仁 200g"
},
"skuSubTitle": {
"text": "免去手剥,营养丰富,煲汤味更佳。",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥8.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 899,
"memberPrice": {
"text": "¥8.1"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/aaa92bce14977f70ce7671c99c4b4305179999.jpg",
"categoryId": 0,
"baseCategoryId": 221
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 94266,
"picUrl": "https://p0.meituan.net/mallimages/d050c694069a925494d3152ac519489f711573.png",
"skuTitle": {
"text": "象大厨调理肥牛卷248g"
},
"skuSubTitle": {
"text": "香而不腻的真正美味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥19.8"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 1980,
"v2Tags": [
{
"tagType": 0,
"type": 2,
"priority": 10,
"ordered": 15,
"styleText": {
"text": "满赠",
"styleId": "tag_new_pro"
}
},
{
"tagType": 2,
"type": 8,
"priority": 40,
"ordered": 30,
"image": {
"title": "",
"url": "https://p1.meituan.net/mallimages/98f5d9ec720939d7f5539bf237638d2d6438.png",
"width": 41,
"height": 16,
"imageId": ""
},
"styleText": {
"text": "半成品",
"styleId": "tag_base_property"
}
},
{
"tagType": 2,
"type": 7,
"priority": 35,
"ordered": 25,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/6c17858c3ce19fe909ad4ad6c2c62b2112570.png",
"width": 48,
"height": 44,
"imageId": ""
},
"styleText": {
"text": "应季好货",
"styleId": "tag_base_property"
}
},
{
"tagType": 2,
"type": 9,
"priority": 45,
"ordered": 35,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/77eeb1ee3fe06e007f20fcbb5ba1a99b5565.png",
"width": 30,
"height": 16,
"imageId": ""
},
"styleText": {
"text": "冷冻",
"styleId": "tag_temperature"
}
},
{
"tagType": 1,
"type": 4,
"priority": 0,
"ordered": 1,
"image": {
"url": "https://p0.meituan.net/mallimages/f90ad4e725bfaec40ca0a93a5a8d672e6372.png",
"width": 120,
"height": 120
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": true,
"detailPagePic": "https://p0.meituan.net/mallimages/ced8f07c31aa4743bb8e4f0b3c0b8e09101725.jpg",
"categoryId": 0,
"baseCategoryId": 999
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 83670,
"picUrl": "https://p0.meituan.net/mallimages/e883feee7617f3e07437f6943eef572d306564.jpg",
"skuTitle": {
"text": "土鸡蛋8枚 405g"
},
"skuSubTitle": {
"text": "厨房必备,新鲜鸡蛋。鲜蛋表面如有泥土灰斑,不影响鲜蛋品质哦",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥7.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"process": false,
"similar": false,
"seqPrice": 790,
"recReason": {
"recReasonId": "5_1_3",
"recReasonText": {
"text": "肉蛋热卖榜第1名",
"styleId": "rec_reason"
}
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"detailPagePic": "https://p0.meituan.net/mallimages/91b2c4a25480afb829fd479319f0ce0d248262.jpg",
"categoryId": 0,
"baseCategoryId": 148
}
},
]
const categoryType = [
{
"id": 2000,
"name": "为你推荐",
"leaf": 0,
"type": 101,
"subPoiCategories": [
{
"id": 40501,
"name": "葱姜蒜椒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40501"
},
{
"id": 42326,
"name": "大鱼大肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42326"
},
{
"id": 42595,
"name": "蔬菜菌菇",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42595"
},
{
"id": 40493,
"name": "叶菜类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40493"
},
{
"id": 40498,
"name": "土豆/根茎类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40498"
},
{
"id": 40696,
"name": "鲜活水产",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40696"
},
{
"id": 40535,
"name": "车厘子/草莓",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40535"
},
{
"id": 42064,
"name": "鲜蔬年菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42064"
},
{
"id": 40538,
"name": "葡提浆果",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40538"
},
{
"id": 40620,
"name": "猪肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40620"
},
{
"id": 42596,
"name": "豆/血制品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42596"
},
{
"id": 40560,
"name": "柑橘橙柚",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40560"
},
{
"id": 40497,
"name": "花菜/球茎类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40497"
},
{
"id": 40681,
"name": "贝/生蚝",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40681"
},
{
"id": 40492,
"name": "豆制品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40492"
}
]
},
{
"id": 2001,
"name": "会员专区",
"bubbleText": {
"text": ""
},
"leaf": 0,
"type": 102,
"subPoiCategories": [
{
"id": 422616616,
"name": "蔬菜豆制品",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616616"
},
{
"id": 422616709,
"name": "肉禽蛋",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616709"
},
{
"id": 422616780,
"name": "海鲜水产",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616780"
},
{
"id": 422616660,
"name": "水果",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616660"
},
{
"id": 422616589,
"name": "乳品烘焙",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616589"
},
{
"id": 422616606,
"name": "速食冻品",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616606"
},
{
"id": 422616600,
"name": "粮油调味",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616600"
},
{
"id": 422616583,
"name": "酒水饮料",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616583"
},
{
"id": 422616613,
"name": "休闲零食",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616613"
},
{
"id": 422617044,
"name": "餐饮熟食",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422617044"
},
{
"id": 422617883,
"name": "年货大街",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422617883"
},
{
"id": 422616610,
"name": "家居个护",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616610"
},
{
"id": 422618669,
"name": "营养早餐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422618669"
},
{
"id": 422618717,
"name": "嗨吃火锅",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422618717"
},
{
"id": 422618739,
"name": "网红打卡地",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 4,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422618739"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=2001&sub_category_id=422616616"
}
},
{
"id": 40488,
"name": "蔬菜豆制品",
"icon": "https://p0.meituan.net/mallimages/1bc64740adf27211071c4fab901fd42d40427.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40488,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40488"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=1001"
},
{
"id": 40493,
"name": "叶菜类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40493"
},
{
"id": 40494,
"name": "西红柿/茄果类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40494"
},
{
"id": 40498,
"name": "土豆/根茎类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40498"
},
{
"id": 40497,
"name": "花菜/球茎类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40497"
},
{
"id": 40499,
"name": "菌菇类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40499"
},
{
"id": 40500,
"name": "豆类/芽苗类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40500"
},
{
"id": 40501,
"name": "葱姜蒜椒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40501"
},
{
"id": 42671,
"name": "品牌/地标菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=42671"
},
{
"id": 40507,
"name": "供港/有机菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40507"
},
{
"id": 40506,
"name": "净菜/快手菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40506"
},
{
"id": 40492,
"name": "豆制品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40492"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40488&sub_category_id=40488"
}
},
{
"id": 40581,
"name": "肉禽蛋",
"icon": "https://p0.meituan.net/mallimages/e97fc29b93dc057ca7774541e0ff762438486.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40581,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40581"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=1001"
},
{
"id": 40633,
"name": "牛肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40633"
},
{
"id": 40634,
"name": "羊肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40634"
},
{
"id": 40620,
"name": "猪肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40620"
},
{
"id": 40621,
"name": "鸡鸭禽",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40621"
},
{
"id": 40626,
"name": "鸡蛋/蛋类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40626"
},
{
"id": 40635,
"name": "腌制/腊肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40635"
},
{
"id": 40586,
"name": "牛排",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40586"
},
{
"id": 41759,
"name": "快手菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=41759"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40581&sub_category_id=40581"
}
},
{
"id": 40652,
"name": "海鲜水产",
"icon": "https://p0.meituan.net/mallimages/321527080b85dfd6762599f5e4b85be613225.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40652,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40652"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=1001"
},
{
"id": 40696,
"name": "鲜活水产",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40696"
},
{
"id": 42672,
"name": "高端水产",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=42672"
},
{
"id": 41484,
"name": "冰鲜水产",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=41484"
},
{
"id": 41485,
"name": "冷冻水产",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=41485"
},
{
"id": 40708,
"name": "水产干货",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40708"
},
{
"id": 41482,
"name": "",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=41482"
},
{
"id": 40701,
"name": "虾/虾仁",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40701"
},
{
"id": 40681,
"name": "贝/生蚝",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40681"
},
{
"id": 40678,
"name": "",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40678"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40652&sub_category_id=40652"
}
},
{
"id": 40532,
"name": "水果",
"icon": "https://p0.meituan.net/mallimages/e2ff00a01ee5e68173439b3443bca2fe29129.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40532,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40532"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=1001"
},
{
"id": 40535,
"name": "车厘子/草莓",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40535"
},
{
"id": 40560,
"name": "柑橘橙柚",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40560"
},
{
"id": 40579,
"name": "礼盒/量贩装",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40579"
},
{
"id": 40565,
"name": "苹果/香蕉/梨",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40565"
},
{
"id": 40536,
"name": "奇异果/猕猴桃",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40536"
},
{
"id": 40538,
"name": "葡提浆果",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40538"
},
{
"id": 40541,
"name": "热带水果",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40541"
},
{
"id": 40570,
"name": "瓜类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40570"
},
{
"id": 40539,
"name": "桃李杏枣",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40539"
},
{
"id": 40580,
"name": "新鲜果切",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40580"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40532&sub_category_id=40532"
}
},
{
"id": 40461,
"name": "乳品烘焙",
"icon": "https://p0.meituan.net/mallimages/3a0cb3a2f92d5e0ed1bb057334bfdbaa31948.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40461,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40461"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=1001"
},
{
"id": 40466,
"name": "当天上市",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40466"
},
{
"id": 41752,
"name": "鲜奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=41752"
},
{
"id": 40463,
"name": "酸奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40463"
},
{
"id": 41753,
"name": "常温牛奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=41753"
},
{
"id": 40863,
"name": "面包烘焙",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40863"
},
{
"id": 40797,
"name": "果汁乳饮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40797"
},
{
"id": 40862,
"name": "奶酪/黄油",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40862"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40461&sub_category_id=40461"
}
},
{
"id": 40478,
"name": "速食冻品",
"icon": "https://p0.meituan.net/mallimages/29fa7b853f16fc0992c7fd25ed3eda4537675.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40478,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40478"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=1001"
},
{
"id": 40480,
"name": "火锅丸类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40480"
},
{
"id": 40893,
"name": "水饺云吞",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40893"
},
{
"id": 40894,
"name": "包子馒头",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40894"
},
{
"id": 41703,
"name": "汤圆年糕",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=41703"
},
{
"id": 40866,
"name": "熟食卤味",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40866"
},
{
"id": 41073,
"name": "火腿培根",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=41073"
},
{
"id": 40878,
"name": "手抓饼/点心",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40878"
},
{
"id": 41162,
"name": "方便菜肴",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=41162"
},
{
"id": 40808,
"name": "冰淇淋",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40808"
},
{
"id": 41072,
"name": "粉面粥饭",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=41072"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40478&sub_category_id=40478"
}
},
{
"id": 40472,
"name": "粮油调味",
"icon": "https://p0.meituan.net/mallimages/a6be42284166e2cc979c70a3a95b730b32339.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40472,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40472"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=1001"
},
{
"id": 42562,
"name": "自有品牌专区",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=42562"
},
{
"id": 40802,
"name": "大米",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40802"
},
{
"id": 40858,
"name": "食用油",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40858"
},
{
"id": 41101,
"name": "方便速食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=41101"
},
{
"id": 40804,
"name": "调味汁/油",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40804"
},
{
"id": 40805,
"name": "调味料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40805"
},
{
"id": 40859,
"name": "调味酱",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40859"
},
{
"id": 40806,
"name": "面粉面条",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40806"
},
{
"id": 40860,
"name": "干货/腊味",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40860"
},
{
"id": 40803,
"name": "五谷杂粮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40803"
},
{
"id": 41102,
"name": "罐头酱菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=41102"
},
{
"id": 42511,
"name": "清仓专区",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=42511"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40472&sub_category_id=40472"
}
},
{
"id": 40455,
"name": "酒水饮料",
"icon": "https://p1.meituan.net/mallimages/1d3b8ce0123038161ed500ff864f3d1e32088.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40455,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40455"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=1001"
},
{
"id": 42669,
"name": "箱装/量贩装",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=42669"
},
{
"id": 40458,
"name": "果蔬汁/乳饮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40458"
},
{
"id": 42526,
"name": "0糖0卡",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=42526"
},
{
"id": 40836,
"name": "葡萄酒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40836"
},
{
"id": 40795,
"name": "啤酒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40795"
},
{
"id": 40459,
"name": "碳酸饮料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40459"
},
{
"id": 40457,
"name": "饮用水",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40457"
},
{
"id": 41443,
"name": "茶饮料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=41443"
},
{
"id": 40846,
"name": "功能饮料/咖啡",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40846"
},
{
"id": 41297,
"name": "特色酒饮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=41297"
},
{
"id": 40845,
"name": "白酒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40845"
},
{
"id": 42509,
"name": "清仓专区",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=42509"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40455&sub_category_id=40455"
}
},
{
"id": 40485,
"name": "休闲零食",
"icon": "https://p0.meituan.net/mallimages/11a690710894051738297937736dc0229285.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40485,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40485"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=1001"
},
{
"id": 42667,
"name": "年货好礼",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=42667"
},
{
"id": 41113,
"name": "糖果/巧克力",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=41113"
},
{
"id": 40875,
"name": "饼干糕点",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40875"
},
{
"id": 40876,
"name": "肉干小食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40876"
},
{
"id": 40869,
"name": "膨化薯片",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40869"
},
{
"id": 40874,
"name": "坚果炒货",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40874"
},
{
"id": 42528,
"name": "麦片谷物",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=42528"
},
{
"id": 40870,
"name": "果干蜜饯",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40870"
},
{
"id": 40873,
"name": "蜂蜜/冲饮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40873"
},
{
"id": 41219,
"name": "冰淇淋",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=41219"
},
{
"id": 42514,
"name": "清仓特惠",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=42514"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40485&sub_category_id=40485"
}
},
{
"id": 40916,
"name": "餐饮熟食",
"icon": "https://p0.meituan.net/mallimages/0d45db5738539a9ff208b13790ded6b341578.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40916,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=40916"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=1001"
},
{
"id": 42579,
"name": "熟食卤味",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42579"
},
{
"id": 42605,
"name": "火锅食材",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42605"
},
{
"id": 42580,
"name": "快手菜肴",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42580"
},
{
"id": 42581,
"name": "家宴大菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42581"
},
{
"id": 42587,
"name": "主食面点",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42587"
},
{
"id": 42584,
"name": "甜品饮料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42584"
},
{
"id": 42585,
"name": "西餐料理",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42585"
},
{
"id": 42586,
"name": "烘焙糕点",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42586"
},
{
"id": 42588,
"name": "休闲小吃",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=42588"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40916&sub_category_id=40916"
}
},
{
"id": 41755,
"name": "年货大街",
"icon": "https://p0.meituan.net/mallimages/64223adc4baeb51b820ea2c995dc385a8967.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 41755,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=41755"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=1001"
},
{
"id": 42059,
"name": "年货礼盒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42059"
},
{
"id": 42058,
"name": "精品水果",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42058"
},
{
"id": 42060,
"name": "大牌乳品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42060"
},
{
"id": 42062,
"name": "粮油干货",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42062"
},
{
"id": 42064,
"name": "鲜蔬年菜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42064"
},
{
"id": 42326,
"name": "大鱼大肉",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42326"
},
{
"id": 42063,
"name": "年味主食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42063"
},
{
"id": 42061,
"name": "畅享酒饮",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42061"
},
{
"id": 42327,
"name": "居家焕新",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42327"
},
{
"id": 42328,
"name": "年节饰品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=42328"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=41755&sub_category_id=41755"
}
},
{
"id": 40482,
"name": "家居个护",
"icon": "https://p0.meituan.net/mallimages/86dfe1240f7deea98ecfbf534573468f35602.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 40482,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40482"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=1001"
},
{
"id": 41242,
"name": "衣物清洁",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=41242"
},
{
"id": 40838,
"name": "纸品湿巾",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40838"
},
{
"id": 40843,
"name": "女性护理",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40843"
},
{
"id": 41247,
"name": "口腔护理",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=41247"
},
{
"id": 41243,
"name": "厨卫清洁",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=41243"
},
{
"id": 40841,
"name": "餐厨用品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40841"
},
{
"id": 40842,
"name": "洁面护肤",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40842"
},
{
"id": 40839,
"name": "家居百货",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40839"
},
{
"id": 42561,
"name": "消杀防护",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=42561"
},
{
"id": 42673,
"name": "花卉礼品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=42673"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=40482&sub_category_id=40482"
}
},
{
"id": 42541,
"name": "营养早餐",
"icon": "https://p1.meituan.net/mallimages/eb7546a4dddc6559dd7ca6be0d2b5e6531946.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 42541,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42541"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=1001"
},
{
"id": 42542,
"name": "鲜奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42542"
},
{
"id": 42543,
"name": "常温牛奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42543"
},
{
"id": 42544,
"name": "酸奶",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42544"
},
{
"id": 42545,
"name": "豆浆/果汁",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42545"
},
{
"id": 42546,
"name": "烘培面包",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42546"
},
{
"id": 42547,
"name": "谷物麦片",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42547"
},
{
"id": 42548,
"name": "火腿培根",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42548"
},
{
"id": 42549,
"name": "黄油芝士",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42549"
},
{
"id": 42550,
"name": "馒头包子",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42550"
},
{
"id": 42551,
"name": "手抓饼/饼类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42551"
},
{
"id": 42552,
"name": "馄饨饺子汤圆",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42552"
},
{
"id": 42553,
"name": "粉面粥饭",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42553"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=42541&sub_category_id=42541"
}
},
{
"id": 42589,
"name": "嗨吃火锅",
"icon": "https://p0.meituan.net/mallimages/c2358358008523d1c28f497f2b624dd836609.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 42589,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42589"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=1001"
},
{
"id": 42590,
"name": "牛羊肉类",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42590"
},
{
"id": 42591,
"name": "火锅底料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42591"
},
{
"id": 42592,
"name": "蘸料调料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42592"
},
{
"id": 42593,
"name": "丸滑蟹棒",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42593"
},
{
"id": 42594,
"name": "海鲜河鲜",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42594"
},
{
"id": 42595,
"name": "蔬菜菌菇",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42595"
},
{
"id": 42596,
"name": "豆/血制品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42596"
},
{
"id": 42597,
"name": "粉面主食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42597"
},
{
"id": 42598,
"name": "酒水饮料",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42598"
},
{
"id": 42599,
"name": "熟食卤味",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42599"
},
{
"id": 42600,
"name": "水果甜品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42600"
},
{
"id": 42601,
"name": "火锅用品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42601"
},
{
"id": 42602,
"name": "自热火锅",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42602"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=42589&sub_category_id=42589"
}
},
{
"id": 42611,
"name": "网红打卡地",
"icon": "https://p1.meituan.net/mallimages/20591f2717b72d8cc964a4358416f87637375.png",
"leaf": 0,
"type": 100,
"subPoiCategories": [
{
"id": 42611,
"name": "推荐",
"bubbleText": {
"text": ""
},
"leaf": 1,
"type": 1,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42611"
},
{
"id": 1001,
"name": "新品",
"leaf": 1,
"type": 2,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=1001"
},
{
"id": 42658,
"name": "TOP榜单",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42658"
},
{
"id": 42659,
"name": "品牌新秀",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42659"
},
{
"id": 42661,
"name": "0糖0卡",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42661"
},
{
"id": 42618,
"name": "网红零食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42618"
},
{
"id": 42612,
"name": "童年味道",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42612"
},
{
"id": 42663,
"name": "DIY调酒吧",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42663"
},
{
"id": 42614,
"name": "懒人速食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42614"
},
{
"id": 42662,
"name": "啤酒工坊",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42662"
},
{
"id": 42620,
"name": "网红饮品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42620"
},
{
"id": 42660,
"name": "进口美食",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42660"
},
{
"id": 42617,
"name": "营养乳品",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42617"
},
{
"id": 42622,
"name": "温馨蛋糕",
"leaf": 1,
"type": 0,
"jumpUrl": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42622"
}
],
"moreUrl": {
"text": "查看全部",
"iretail": "imaicai://www.maicai.com/category_list?category_id=42611&sub_category_id=42611"
}
}
]
const cateGood = [
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 89659,
"picUrl": "https://p0.meituan.net/mallimages/4c7db03a9dd6a4c7c570dffc65beb82f71311.jpg",
"skuTitle": {
"text": "精选香菜50g"
},
"skuSubTitle": {
"text": "气味浓郁,适合凉拌佐菜,也是作汤和炒菜的佐料",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥1.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 199,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 89653,
"picUrl": "https://p1.meituan.net/mallimages/6f60545f705566cbefb10a1d7fb5cc3e302323.jpg",
"skuTitle": {
"text": "精选指天椒约50g"
},
"skuSubTitle": {
"text": "绿柄红袍,光滑油亮,入口辛辣,美味佐餐",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.49"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 349,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66742,
"picUrl": "https://p1.meituan.net/mallimages/7b072225fe5836e2deecb463f270cc4078981.jpg",
"skuTitle": {
"text": "韭菜200g"
},
"skuSubTitle": {
"text": "气味蔬菜,适合小炒、烧烤",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.7"
},
"dashPrice": {
"text": "¥3.99",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 270,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 71238,
"picUrl": "https://p0.meituan.net/mallimages/2cc86f0c41b0aec2f41d0b5b3ed52b61514066.png",
"skuTitle": {
"text": "小米椒姜蒜组合100g"
},
"skuSubTitle": {
"text": "手握调味组合,做啥菜都好吃",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 299,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66744,
"picUrl": "https://p0.meituan.net/mallimages/dfa64b6ca4f663d6b54875942448a66f65682.jpg",
"skuTitle": {
"text": "韭黄 200g"
},
"skuSubTitle": {
"text": "口感清新,味道比韭菜平和,质地柔嫩,不易软烂",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥6.4"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 640,
"v2Tags": [
{
"tagType": 2,
"type": 7,
"priority": 35,
"ordered": 25,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/6c17858c3ce19fe909ad4ad6c2c62b2112570.png",
"width": 48,
"height": 44,
"imageId": ""
},
"styleText": {
"text": "应季好货",
"styleId": "tag_base_property"
}
}
],
"memberPrice": {
"text": "¥5.8"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66848,
"picUrl": "https://p1.meituan.net/mallimages/561f67b428fb268e93aa85961ba30a0783622.jpg",
"skuTitle": {
"text": "湖南椒250g"
},
"skuSubTitle": {
"text": "辣度适中,皮薄肉厚。",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.79"
},
"dashPrice": {
"text": "¥6.9",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 579,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 71240,
"picUrl": "https://p0.meituan.net/mallimages/ae10eaea9f57b409bef0efe32e2c8b81244958.jpg",
"skuTitle": {
"text": "老姜150g"
},
"skuSubTitle": {
"text": "味浓烈,为荤食掩去腥味和臊味,调味去腥必备",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 399,
"memberPrice": {
"text": "¥3.6"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66752,
"picUrl": "https://p0.meituan.net/mallimages/5c71f2f5a30ea1ba19e0261796abbb4760368.jpg",
"skuTitle": {
"text": "香葱约50g"
},
"skuSubTitle": {
"text": "清甜微辣,餐桌调味小能手",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥1.29"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 129,
"memberPrice": {
"text": "¥1.2"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 74405,
"picUrl": "https://p1.meituan.net/mallimages/32281e688f958ade7e55e2aca17840ad95595.jpg",
"skuTitle": {
"text": "蒜苗200g"
},
"skuSubTitle": {
"text": "葱香浓郁,纤维细嫩,清香鲜嫩。",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.2"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 420,
"memberPrice": {
"text": "¥3.8"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 85559,
"picUrl": "https://p0.meituan.net/mallimages/b980f59649da82b3f5a48e2a500f4cec470184.png",
"skuTitle": {
"text": "大葱 约400g"
},
"skuSubTitle": {
"text": "厨房必备的调味食材",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥7.4"
},
"dashPrice": {
"text": "¥8.6",
"styleId": "dp"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 740,
"v2Tags": [
{
"tagType": 1,
"type": 2,
"priority": 10,
"ordered": 15,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/ba73de9ddd06ac5c57406f846340538a7317.png",
"width": 40,
"height": 14,
"imageId": ""
}
}
],
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 79880,
"picUrl": "https://p0.meituan.net/mallimages/2f3209a907332e4f47ce0fb0ea6a72b167353.jpg",
"skuTitle": {
"text": "蒜头约200g"
},
"skuSubTitle": {
"text": "皮薄丰满,洁白蒜肉,蒜味浓郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 299,
"memberPrice": {
"text": "¥2.7"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 96532,
"picUrl": "https://p1.meituan.net/mallimages/aa631ba1e31b1094bff1bb87d3e10248522575.png",
"skuTitle": {
"text": "康醴罗平小黄姜175g"
},
"skuSubTitle": {
"text": "入选中国农业目录",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥11.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 1190,
"memberPrice": {
"text": "¥11.1"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 93883,
"picUrl": "https://p0.meituan.net/mallimages/649e8c0350cb18fc8af8c5ff3e793ff0344837.png",
"skuTitle": {
"text": "红洋葱约600g"
},
"skuSubTitle": {
"text": "一层又一层,拨开我爱你的心",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 399,
"memberPrice": {
"text": "¥3.6"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 89431,
"picUrl": "https://p1.meituan.net/mallimages/525dafd44952876861dcce3ffa25310a45755.jpg",
"skuTitle": {
"text": "白皮洋葱约600g"
},
"skuSubTitle": {
"text": "一层一层剥开我的心,体验我的鲜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 299,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66881,
"picUrl": "https://p0.meituan.net/mallimages/6c6b2daf03ac917207e3efc2967a3a4a244061.jpg",
"skuTitle": {
"text": "沙姜120g"
},
"skuSubTitle": {
"text": "气香特异,为荤食掩去腥味和臊味,调味去腥必备",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 599,
"memberPrice": {
"text": "¥5.7"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 93641,
"picUrl": "https://p1.meituan.net/waimaidpoipicmining/398e3abacb8e9c682550c1f5f386a4e464390.jpg",
"skuTitle": {
"text": "青尖椒 250g"
},
"skuSubTitle": {
"text": "整天没食欲,吃Ta开开胃",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 599,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66887,
"picUrl": "https://p1.meituan.net/mallimages/87191a8c8241d1bccd7d0f23b540c34d81868.jpg",
"skuTitle": {
"text": "独蒜200g"
},
"skuSubTitle": {
"text": "不分瓣的蒜,圆润饱满很Q萌",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥7.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 799,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66736,
"picUrl": "https://p0.meituan.net/mallimages/2cceaab8fefbf699f0a5db4f6a5c20bc83661.jpg",
"skuTitle": {
"text": "干葱头200g"
},
"skuSubTitle": {
"text": "皮薄肉厚,脆嫩鲜甜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 499,
"memberPrice": {
"text": "¥4.5"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66727,
"picUrl": "https://p0.meituan.net/mallimages/53e5ccbcc4c0d76c2d1868ed7baaffac67324.jpg",
"skuTitle": {
"text": "韭菜花200g"
},
"skuSubTitle": {
"text": "最爱的韭菜花炒鸡蛋,鲜嫩下饭好滋味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥11.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 1190,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 93636,
"picUrl": "https://p0.meituan.net/mallimages/7d1404d62d200115dbab15212167aad9458508.png",
"skuTitle": {
"text": "葱姜蒜组合200g"
},
"skuSubTitle": {
"text": "手握调味组合,做啥菜都好吃",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.4"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 540,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 79480,
"picUrl": "https://p0.meituan.net/mallimages/671b01606e4a1da0aae4c0f35a32053c55990.jpg",
"skuTitle": {
"text": "螺丝椒 约150g"
},
"skuSubTitle": {
"text": "看起来就很辣,吃起来更够味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.49"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 449,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 101657,
"picUrl": "https://p0.meituan.net/mallimages/86a83e62b673eecc50c508b7b228c81f434326.png",
"skuTitle": {
"text": "凯克萨荷兰芹20g"
},
"skuSubTitle": {
"text": "新鲜采摘,颜色嫩绿",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥4.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 490,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 73525,
"picUrl": "https://p0.meituan.net/mallimages/657e4d22fd22102637450977e51daea864892.jpg",
"skuTitle": {
"text": "精选青圆椒400g"
},
"skuSubTitle": {
"text": "圆圆的像灯笼,口感清甜,质地肥厚",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥6.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 690,
"memberPrice": {
"text": "¥6.2"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66733,
"picUrl": "https://p1.meituan.net/mallimages/3c86aabc4c115da15dc72d2be06154b4217755.jpg",
"skuTitle": {
"text": "青小米椒50g"
},
"skuSubTitle": {
"text": "长的秀气,辣味十足。",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥2.99"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 299,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 101655,
"picUrl": "https://p0.meituan.net/mallimages/034909115cbc70a91ddc45952084a9b4210247.png",
"skuTitle": {
"text": "凯克萨香茅80g"
},
"skuSubTitle": {
"text": "提味佳品,香味清新浓郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.6"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 560,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 99840,
"picUrl": "https://p0.meituan.net/mallimages/5d80a6bbf4395761a7e917acd7a45623594751.png",
"skuTitle": {
"text": "三色彩椒450g"
},
"skuSubTitle": {
"text": "色彩鲜艳,果大肉厚",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥9.6"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 960,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 96243,
"picUrl": "https://p0.meituan.net/mallimages/ad8e8987ec55b98d0114b5a41671825787660.jpg",
"skuTitle": {
"text": "有机生姜200g"
},
"skuSubTitle": {
"text": "有机种植,姜味十足,煲汤火锅必备食材",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥9.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 990,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66732,
"picUrl": "https://p0.meituan.net/mallimages/054365f7aa4c6554467a496bb8bfe9cd467615.png",
"skuTitle": {
"text": "黄皮椒250g"
},
"skuSubTitle": {
"text": "虎皮尖椒首选",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 590,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 79881,
"picUrl": "https://p1.meituan.net/mallimages/915ab9770e5319d974c896bc5cfc8bd473949.jpg",
"skuTitle": {
"text": "青泡椒约300g"
},
"skuSubTitle": {
"text": "菜里来点辣才够味",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥7.4"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 740,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 95150,
"picUrl": "https://p0.meituan.net/mallimages/635b5e6325afff50ceb42236397e3e2f187873.png",
"skuTitle": {
"text": "姜家埠大葱250g"
},
"skuSubTitle": {
"text": "山东省平度市特产,全国农产品地理标志",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥9.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 990,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 73512,
"picUrl": "https://p0.meituan.net/mallimages/08ea5f12a8f90d73ae206710222151ac169910.jpg",
"skuTitle": {
"text": "甜椒400g"
},
"skuSubTitle": {
"text": "色彩缤纷,脆嫩甘甜",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥12.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 1290,
"memberPrice": {
"text": "¥11.6"
},
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 66856,
"picUrl": "https://p0.meituan.net/mallimages/8e7e3979eab551ffd3689b62a025d18f75685.jpg",
"skuTitle": {
"text": "水果椒200g"
},
"skuSubTitle": {
"text": "水果味的彩色小精灵",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥9.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 990,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": false,
"subStatus": false,
"skuId": 73484,
"picUrl": "https://p1.meituan.net/mallimages/79307bc564e12dcdbc798360e3b01a48216007.jpg",
"skuTitle": {
"text": "鲜花椒50g"
},
"skuSubTitle": {
"text": "一颗一颗好佐料,餐餐必备好味道",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.9"
},
"sellButton": {
"text": "",
"enable": true,
"status": 1
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"process": false,
"similar": false,
"seqPrice": 390,
"buttonList": [
{
"text": "",
"enable": true,
"status": 1
}
],
"choiceEnable": false,
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": true,
"subStatus": false,
"soldOutUrl": "https://p1.meituan.net/mallimages/e09204eaca77b6b2f553b0ebcceb02354446.png",
"skuId": 95151,
"picUrl": "https://p0.meituan.net/waimaidpoipicmining/68a12e7e478f7c71791c06951251fecb78434.jpg",
"skuTitle": {
"text": "山东金乡大蒜250g"
},
"skuSubTitle": {
"text": "皮薄丰满,洁白蒜肉,蒜味浓郁",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥5.99"
},
"sellButton": {
"text": "找相似",
"enable": true,
"status": 6
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"similar": true,
"seqPrice": 599,
"memberPrice": {
"text": "¥5.4"
},
"buttonList": [
{
"text": "到货提醒",
"enable": true,
"status": 4,
"styleId": "ssr38"
},
{
"text": "找相似",
"enable": true,
"status": 6
}
],
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": true,
"subStatus": false,
"soldOutUrl": "https://p1.meituan.net/mallimages/e09204eaca77b6b2f553b0ebcceb02354446.png",
"skuId": 66728,
"picUrl": "https://p0.meituan.net/mallimages/cfa892a99d3b893d71e2cab32f3bbbdb265530.jpg",
"skuTitle": {
"text": "小茴香100g"
},
"skuSubTitle": {
"text": "调味的好帮手",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"sellButton": {
"text": "找相似",
"enable": true,
"status": 6
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"similar": true,
"seqPrice": 399,
"v2Tags": [
{
"tagType": 2,
"type": 7,
"priority": 35,
"ordered": 25,
"image": {
"title": "",
"url": "https://p0.meituan.net/mallimages/6c17858c3ce19fe909ad4ad6c2c62b2112570.png",
"width": 48,
"height": 44,
"imageId": ""
},
"styleText": {
"text": "应季好货",
"styleId": "tag_base_property"
}
}
],
"buttonList": [
{
"text": "到货提醒",
"enable": true,
"status": 4,
"styleId": "ssr38"
},
{
"text": "找相似",
"enable": true,
"status": 6
}
],
"isWeakDemandSku": false
}
},
{
"type": 1,
"skuItem": {
"subscription": true,
"subStatus": false,
"soldOutUrl": "https://p1.meituan.net/mallimages/e09204eaca77b6b2f553b0ebcceb02354446.png",
"skuId": 11665,
"picUrl": "https://p1.meituan.net/mallimages/705073d7e75bde22f88157492ff2f3c4326544.png",
"skuTitle": {
"text": "薄荷叶50g"
},
"skuSubTitle": {
"text": "新鲜清凉",
"styleId": "lstv570"
},
"sellUnit": {
"text": ""
},
"sellPrice": {
"text": "¥3.99"
},
"sellButton": {
"text": "找相似",
"enable": true,
"status": 6
},
"loose": false,
"buyStep": "1",
"buyUnit": "",
"skuBarCode": "",
"similar": true,
"seqPrice": 399,
"buttonList": [
{
"text": "到货提醒",
"enable": true,
"status": 4,
"styleId": "ssr38"
},
{
"text": "找相似",
"enable": true,
"status": 6
}
],
"isWeakDemandSku": false
}
}
]
const id = "11"
export default {
id,
categoryType,
cateGood
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化