index.vue 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  1. <template>
  2. <div ref="appContainer" class="app-container">
  3. <div ref="myContainer" class="myContainer">
  4. <!-- 配方模板表 -->
  5. <div ref="template" class="template">
  6. <div class="recipeTemplate">
  7. <p>配方模板表</p>
  8. </div>
  9. <div class="search">
  10. <el-select v-model="table.getdataListParm.parammaps.ccname" filterable placeholder="牲畜类别" class="filter-item" clearable>
  11. <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.label" />
  12. </el-select>
  13. <el-select v-model="table.getdataListParm.parammaps.fttype" filterable placeholder="配方类型" class="filter-item" style="width: 120px;" clearable>
  14. <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.label" />
  15. </el-select>
  16. <el-select v-model="table.getdataListParm.parammaps.source" filterable placeholder="来源" class="filter-item" style="width: 120px;" clearable>
  17. <el-option v-for="item in sourceList" :key="item.id" :label="item.name" :value="item.id" />
  18. </el-select>
  19. <el-select v-model="table.getdataListParm.parammaps.enable" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
  20. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  21. </el-select>
  22. <div ref="selectInput" class="filter-item selectInput">
  23. <el-input v-model="table.getdataListParm.parammaps.all" type="text" placeholder="请点击选择搜索条件" class="Input" />
  24. <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  25. <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  26. <ul v-if="arrowUp" class="selectUl">
  27. <li><a>配方名称</a><el-input v-model="table.getdataListParm.parammaps.tname" clearable style="width: 245px;" /></li>
  28. <li><a>备注</a><el-input v-model="table.getdataListParm.parammaps.remark" clearable style="width: 245px;" /></li>
  29. <li />
  30. <!-- <li><a>来源</a><el-input v-model="table.getdataListParm.parammaps.source" clearable style="width: 245px;" /></li> -->
  31. <li>
  32. <div style="float: right;">
  33. <el-button class="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
  34. <el-button class="miniPrimary" @click="form_search">搜索</el-button>
  35. </div>
  36. </li>
  37. </ul>
  38. </div>
  39. <el-button class="successBorder" @click="form_search">查询</el-button>
  40. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  41. </div>
  42. <div class="operation">
  43. <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" @click="handleCreate">新增</el-button>
  44. <el-button v-if="isRoleEdit && ispalyUd" class="success" icon="el-icon-plus" @click="handleGetUd">配方上传</el-button>
  45. <el-upload style="float: right;margin-right: 15px;" :headers="headers" :data="uploadData" :action="uploadExcelUrl" :show-file-list="false" :before-upload="beforeImport" :on-success="handleImportSuccess">
  46. <el-button v-if="isRoleEdit" class="export" icon="el-icon-download" style="float: right;">导入</el-button>
  47. </el-upload>
  48. <el-dropdown style="float: right;">
  49. <el-button class="export" icon="el-icon-upload2">导出</el-button>
  50. <el-dropdown-menu slot="dropdown">
  51. <el-dropdown-item @click.native="handleExport(1)">导出模板</el-dropdown-item>
  52. <el-dropdown-item @click.native="handleExport(2)">导出数据</el-dropdown-item>
  53. </el-dropdown-menu>
  54. </el-dropdown>
  55. <el-button class="export" style="float: right;" @click="handleRecipeRecord">配方记录</el-button>
  56. </div>
  57. <div ref="table" class="table">
  58. <el-table
  59. :key="table.tableKey"
  60. v-loading="table.listLoading"
  61. element-loading-text="给我一点时间"
  62. :data="table.list"
  63. border
  64. fit
  65. highlight-current-row
  66. style="width: 98%;"
  67. :row-style="rowStyle"
  68. :cell-style="cellStyle"
  69. class="elTable table-fixed"
  70. :height="myheight"
  71. @row-click="tableRowClick"
  72. @selection-change="handleSelectionChange"
  73. >
  74. <el-table-column type="selection" align="center" width="50" />
  75. <el-table-column label="序号" align="center" type="index" width="50px" />
  76. <el-table-column label="配方名称" min-width="90px" align="center">
  77. <template slot-scope="scope">
  78. <span v-if="scope.row.NoEdit">{{ scope.row.tname }}</span>
  79. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.tname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:98%;padding:10px 0;" />
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="配方编码" min-width="110px" align="center">
  83. <template slot-scope="scope">
  84. <span v-if="scope.row.NoEdit">{{ scope.row.tcode }}</span>
  85. <!-- <el-input v-if="scope.row.Edit" v-model.trim="scope.row.tcode" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:98%;padding:10px 0;" /> -->
  86. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.tcode" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" disabled maxlength="32" style="width:98%;padding:10px 0;" />
  87. </template>
  88. </el-table-column>
  89. <el-table-column label="容重(kg/m³)" min-width="110px" align="center">
  90. <template slot-scope="scope">
  91. <span v-if="scope.row.NoEdit">{{ scope.row.volume }}</span>
  92. <el-input v-if="scope.row.Edit" v-model.trim="scope.row.volume" type="number" style="width:98%;padding:10px 0;" />
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="配方颜色" min-width="70px" align="center">
  96. <template slot-scope="scope">
  97. <el-color-picker v-model="scope.row.tcolor" size="mini" :predefine="predefineColors" style="vertical-align: middle;" :disabled="scope.row.NoEdit" />
  98. </template>
  99. </el-table-column>
  100. <el-table-column label="牲畜类别" min-width="130px" align="center">
  101. <template slot-scope="scope">
  102. <span v-if="scope.row.NoEdit">{{ scope.row.ccname }}</span>
  103. <el-select v-if="scope.row.Edit" v-model="scope.row.ccid" filterable placeholder="牲畜类别" class="filter-item" style="width:95%;padding:10px 0;" @change="changeLivestockType">
  104. <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.value" />
  105. </el-select>
  106. </template>
  107. </el-table-column>
  108. <el-table-column label="配方类型" min-width="130px" align="center">
  109. <template slot-scope="scope">
  110. <span v-if="scope.row.NoEdit">{{ scope.row.fttype }}</span>
  111. <el-select v-if="scope.row.Edit && scope.row.isCreate == true" v-model="scope.row.fttypeid" filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType">
  112. <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.value" />
  113. </el-select>
  114. <el-select v-if="scope.row.Edit && scope.row.isUpdateSave == true" v-model="scope.row.fttypeid" disabled filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType">
  115. <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.value" />
  116. </el-select>
  117. </template>
  118. </el-table-column>
  119. <el-table-column label="来源" min-width="90px" align="center">
  120. <template slot-scope="scope">
  121. <span>{{ scope.row.source }}</span>
  122. </template>
  123. </el-table-column>
  124. <el-table-column label="备注" min-width="90px" align="center">
  125. <template slot-scope="scope">
  126. <span v-if="scope.row.NoEdit">{{ scope.row.remark }}</span>
  127. <el-input v-if="scope.row.Edit" v-model="scope.row.remark" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="255" style="width:95%;padding:10px 0;" />
  128. </template>
  129. </el-table-column>
  130. <el-table-column label="版本号" min-width="90px" align="center">
  131. <template slot-scope="scope">
  132. <span>{{ scope.row.version }}</span>
  133. </template>
  134. </el-table-column>
  135. <el-table-column label="牛群类别" min-width="130px" align="center">
  136. <template slot-scope="scope">
  137. <span v-if="scope.row.NoEdit">{{ scope.row.cattleName }}</span>
  138. <el-select v-if="scope.row.Edit" v-model="scope.row.cattle" filterable placeholder="牛群类别" class="filter-item" style="width:95%;padding:10px 0;">
  139. <el-option v-for="item in distCattle" :key="item.value" :label="item.distName" :value="item.distCode" />
  140. </el-select>
  141. </template>
  142. </el-table-column>
  143. <el-table-column label="是否启用" min-width="90px" align="center">
  144. <template slot-scope="scope">
  145. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  146. </template>
  147. </el-table-column>
  148. <el-table-column label="操作" align="center" width="150" class-name="small-padding fixed-width" fixed="right">
  149. <template slot-scope="{row}">
  150. <el-button v-if="row.NoEdit && isRoleEdit && ispastureuse==0" icon="el-icon-tickets" class="miniSuccess" @click="handleRowRecipeRecord(row)" />
  151. <span v-if="row.NoEdit && isRoleEdit && ispastureuse ==0" icon="el-icon-data-line" class="centerSpan">|</span>
  152. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData(row)" />
  153. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  154. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel(row)" />
  155. <el-button v-if="row.isUpdate && isRoleEdit" :disabled="row.is_modify == 1" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  156. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  157. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete(row)" />
  158. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData(row)" />
  159. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  160. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel(row)" />
  161. <span v-if="row.NoEdit && isRoleEdit && ispastureuse ==0" icon="el-icon-data-line" class="centerSpan">|</span>
  162. <el-button v-if="row.NoEdit && isRoleEdit && ispastureuse==0" icon="el-icon-data-line" class="miniSuccess" @click="handleFormulationEvaluation(row)" />
  163. </template>
  164. </el-table-column>
  165. </el-table>
  166. </div>
  167. <span v-if="table.listLoading == false" style="margin-right: 30px;margin-top: 10px;margin-bottom: 10px;font-size: 14px;">共{{ table.total }}条</span>
  168. </div>
  169. <!-- 配方详情表 -->
  170. <div v-if="isDetail" ref="detail" class="detail">
  171. <div class="recipeTemplate">
  172. <p>配方详情表</p>
  173. </div>
  174. <div class="operation">
  175. <el-button v-if="isRoleEdit" style="float: left;" icon="el-icon-plus" class="success" @click="handleCreate2">新增</el-button>
  176. <el-button v-if="isRoleEdit" style="float: left;" icon="el-icon-delete" class="danger" @click="form_delete2">删除</el-button>
  177. <el-button v-if="isRoleEdit" style="float: left;" class="success" icon="el-icon-takeaway-box" @click="handleSyntheticPremix">合成预混料</el-button>
  178. <el-button v-if="isOrder && isRoleEdit" icon="el-icon-sort" style="float: left;" class="success" @click="handleChangeOrder">更改顺序</el-button>
  179. <div v-else style="float: left;margin-left: 10px;">
  180. <el-button v-if="isRoleEdit" icon="el-icon-folder-checked" class="success" @click="saveChangeOrder">保存</el-button>
  181. <el-button v-if="isRoleEdit" icon="el-icon-close" class="sortCancel" @click="cancelChangeOrder">取消</el-button>
  182. </div>
  183. <div ref="selectInput2" class="filter-item selectInput" style="margin: 0 10px;">
  184. <el-input v-model="table2.getdataListParm.parammaps.all" type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" />
  185. <i v-if="arrowDown2" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  186. <i v-if="arrowUp2" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  187. <ul v-if="arrowUp2" class="selectUl">
  188. <li>
  189. <a style="width: 130px;">饲料名称</a>
  190. <el-select v-model="table2.getdataListParm.parammaps.fname" filterable placeholder="" style="width:190px;">
  191. <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.fname" />
  192. </el-select>
  193. </li>
  194. <li><a style="width: 130px;">饲料组名称</a><el-input v-model="table2.getdataListParm.parammaps.feedgroup" style="width: 190px;" /></li>
  195. <li><a style="width: 130px;">重量</a><el-input v-model="table2.getdataListParm.parammaps.fweight" style="width: 190px;" /></li>
  196. <li>
  197. <a style="width: 130px;">搅拌延时</a>
  198. <el-select v-model="table2.getdataListParm.parammaps.autosecondname" filterable placeholder="" style="width:190px;" clearable>
  199. <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.name" />
  200. </el-select>
  201. </li>
  202. <li>
  203. <a style="width: 130px;">是否锁定牛头数比例</a>
  204. <el-select v-model="table2.getdataListParm.parammaps.islockcount" placeholder="" style="width:190px;" clearable>
  205. <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" />
  206. </el-select>
  207. </li>
  208. <li><a style="width: 130px;">顺序</a><el-input v-model="table2.getdataListParm.parammaps.sort" style="width: 190px;" /></li>
  209. <li>
  210. <div style="float: right;">
  211. <el-button class="downminCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button>
  212. <el-button class="miniPrimary" @click="form_search2">搜索</el-button>
  213. </div>
  214. </li>
  215. </ul>
  216. </div>
  217. <el-button class="successBorder" @click="form_search2">查询</el-button>
  218. <el-button class="successBorder" @click="handleRefresh2">重置</el-button>
  219. <el-button class="hide" @click="handleCloseTable2">隐藏</el-button>
  220. <el-button v-if="isEnlarge" class="hide2" @click="handleEnlarge">放大</el-button>
  221. <el-button v-else class="hide2" @click="handleNarrow">缩小</el-button>
  222. </div>
  223. <div v-if="isEnlarge" class="table2">
  224. <el-table
  225. id="table2"
  226. ref="table2"
  227. :key="table2.tableKey"
  228. v-loading="table2.listLoading"
  229. element-loading-text="给我一点时间"
  230. :data="table2.list"
  231. border
  232. fit
  233. highlight-current-row
  234. style="width: 98%;"
  235. :row-style="rowStyle"
  236. :cell-style="cellStyle"
  237. class="elTable"
  238. row-key="id"
  239. show-summary
  240. :max-height="220"
  241. :summary-method="getSummaries"
  242. @selection-change="handleSelectionChange2"
  243. @cell-dblclick="celldblclick"
  244. >
  245. <el-table-column type="selection" width="50" />
  246. <el-table-column label="序号" align="center" type="index" width="50px" />
  247. <el-table-column label="饲料组" min-width="120px" align="center">
  248. <template slot-scope="scope">
  249. <span v-if="scope.row.groupNoEdit">{{ scope.row.feedgroup }}</span>
  250. <el-input v-if="scope.row.groupEdit" v-model="scope.row.feedgroup" :disabled="scope.row.isGroupDisabled" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  251. </template>
  252. </el-table-column>
  253. <el-table-column label="饲料名称" min-width="120px" align="center">
  254. <template slot-scope="scope">
  255. <span v-if="scope.row.NoEdit">{{ scope.row.fname }}</span>
  256. <el-select v-if="scope.row.Edit" v-model="scope.row.fid" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeFname(value, scope.row)}">
  257. <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.id" />
  258. </el-select>
  259. </template>
  260. </el-table-column>
  261. <el-table-column label="重量(KG)" prop="fweight" width="120px" align="center">
  262. <template slot-scope="scope">
  263. <span v-if="scope.row.NoEdit">{{ scope.row.fweight }}</span>
  264. <el-input v-if="scope.row.Edit" v-model="scope.row.fweight" placeholder="重量" step="0.0001" type="number" style="width:95%;padding:10px 0;" />
  265. </template>
  266. </el-table-column>
  267. <el-table-column label="搅拌延时(min)" min-width="80px" align="center">
  268. <template slot-scope="scope">
  269. <span v-if="scope.row.NoEdit">{{ scope.row.autosecond }}</span>
  270. <!-- <el-select v-if="scope.row.Edit" v-model="scope.row.autosecond" filterable placeholder="搅拌延时" class="filter-item" style="width:95%;padding:10px 0;">
  271. <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.id" />
  272. </el-select> -->
  273. <el-input v-if="scope.row.Edit" v-model="scope.row.autosecond" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" />
  274. </template>
  275. </el-table-column>
  276. <el-table-column label="允许延时偏差(min)" min-width="80px" align="center">
  277. <template slot-scope="scope">
  278. <span v-if="scope.row.NoEdit">{{ scope.row.deviation }}</span>
  279. <el-input v-if="scope.row.Edit" v-model="scope.row.deviation" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" />
  280. </template>
  281. </el-table-column>
  282. <el-table-column v-if="lockCount.isLockCount" label="是否锁定牛头数比例" min-width="80px" align="center">
  283. <template slot-scope="scope">
  284. <span v-if="scope.row.NoEdit && scope.row.islockcount == '0'">否</span>
  285. <span v-if="scope.row.NoEdit && scope.row.islockcount == '1'">是</span>
  286. <el-select v-if="scope.row.Edit" v-model="scope.row.islockcount" placeholder="" class="filter-item" style="width:95%;padding:10px 0;">
  287. <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" />
  288. </el-select>
  289. </template>
  290. </el-table-column>
  291. <el-table-column label="顺序" min-width="70px" align="center">
  292. <template slot-scope="scope">
  293. <span v-if="scope.row.NoEdit">{{ scope.row.sort }}</span>
  294. <el-input v-if="scope.row.Edit" v-model="scope.row.sort" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" @blur="blurSort(scope.row)" />
  295. </template>
  296. </el-table-column>
  297. <el-table-column label="操作" align="center" width="120" class-name="small-padding fixed-width" fixed="right">
  298. <template slot-scope="{row}">
  299. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData2(row)" />
  300. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  301. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel2(row)" />
  302. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate2(row)" />
  303. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  304. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete2(row)" />
  305. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData2(row)" />
  306. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  307. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel2(row)" />
  308. <span v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" class="centerSpan">|</span>
  309. <el-button v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" icon="el-icon-connection" class="miniSuccess" @click="handleSplitPremix(row)" />
  310. </template>
  311. </el-table-column>
  312. </el-table>
  313. </div>
  314. <div v-else class="table2">
  315. <el-table
  316. id="table2"
  317. ref="mytable2"
  318. :key="table2.tableKey"
  319. v-loading="table2.listLoading"
  320. element-loading-text="给我一点时间"
  321. :data="table2.list"
  322. border
  323. fit
  324. highlight-current-row
  325. style="width: 98%;"
  326. :row-style="rowStyle"
  327. :cell-style="cellStyle"
  328. class="elTable"
  329. row-key="id"
  330. show-summary
  331. :max-height="enlargeHeight"
  332. :summary-method="getSummaries"
  333. @selection-change="handleSelectionChange2"
  334. @cell-dblclick="celldblclick"
  335. >
  336. <el-table-column type="selection" width="50" />
  337. <el-table-column label="序号" align="center" type="index" width="50px" />
  338. <el-table-column label="饲料组" min-width="120px" align="center">
  339. <template slot-scope="scope">
  340. <span v-if="scope.row.groupNoEdit">{{ scope.row.feedgroup }}</span>
  341. <el-input v-if="scope.row.groupEdit" v-model="scope.row.feedgroup" :disabled="scope.row.isGroupDisabled" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  342. </template>
  343. </el-table-column>
  344. <el-table-column label="饲料名称" min-width="120px" align="center">
  345. <template slot-scope="scope">
  346. <span v-if="scope.row.NoEdit">{{ scope.row.fname }}</span>
  347. <el-select v-if="scope.row.Edit" v-model="scope.row.fid" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeFname(value, scope.row)}">
  348. <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.id" />
  349. </el-select>
  350. </template>
  351. </el-table-column>
  352. <el-table-column label="重量(KG)" prop="fweight" width="120px" align="center">
  353. <template slot-scope="scope">
  354. <span v-if="scope.row.NoEdit">{{ scope.row.fweight }}</span>
  355. <el-input v-if="scope.row.Edit" v-model="scope.row.fweight" placeholder="重量" step="0.0001" type="number" style="width:95%;padding:10px 0;" />
  356. </template>
  357. </el-table-column>
  358. <el-table-column label="搅拌延时(min)" min-width="80px" align="center">
  359. <template slot-scope="scope">
  360. <span v-if="scope.row.NoEdit">{{ scope.row.autosecond }}</span>
  361. <el-select v-if="scope.row.Edit" v-model="scope.row.autosecond" filterable placeholder="搅拌延时" class="filter-item" style="width:95%;padding:10px 0;">
  362. <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.id" />
  363. </el-select>
  364. </template>
  365. </el-table-column>
  366. <el-table-column v-if="lockCount.isLockCount" label="是否锁定牛头数比例" min-width="80px" align="center">
  367. <template slot-scope="scope">
  368. <span v-if="scope.row.NoEdit && scope.row.islockcount == '0'">否</span>
  369. <span v-if="scope.row.NoEdit && scope.row.islockcount == '1'">是</span>
  370. <el-select v-if="scope.row.Edit" v-model="scope.row.islockcount" placeholder="" class="filter-item" style="width:95%;padding:10px 0;">
  371. <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" />
  372. </el-select>
  373. </template>
  374. </el-table-column>
  375. <el-table-column label="顺序" min-width="70px" align="center">
  376. <template slot-scope="scope">
  377. <span v-if="scope.row.NoEdit">{{ scope.row.sort }}</span>
  378. <el-input v-if="scope.row.Edit" v-model="scope.row.sort" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" @blur="blurSort(scope.row)" />
  379. </template>
  380. </el-table-column>
  381. <el-table-column label="操作" align="center" width="120" class-name="small-padding fixed-width" fixed="right">
  382. <template slot-scope="{row}">
  383. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData2(row)" />
  384. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  385. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel2(row)" />
  386. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate2(row)" />
  387. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  388. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete2(row)" />
  389. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData2(row)" />
  390. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  391. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel2(row)" />
  392. <span v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" class="centerSpan">|</span>
  393. <el-button v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" icon="el-icon-connection" class="miniSuccess" @click="handleSplitPremix(row)" />
  394. </template>
  395. </el-table-column>
  396. </el-table>
  397. </div>
  398. </div>
  399. </div>
  400. <!-- 配方模板表 -->
  401. <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="template.dialogFormVisible" :close-on-click-modal="false" width="90%">
  402. <template slot="title">
  403. <div class="avue-crud__dialog__header">
  404. <span class="el-dialog__title">
  405. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  406. {{ textMap[template.dialogStatus] }}
  407. </span>
  408. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  409. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  410. <svg-icon v-else icon-class="fullscreen" />
  411. </div>
  412. </div>
  413. </template>
  414. <div class="dialogMinHeight" style="overflow-y: auto;margin-bottom: 0px;overflow-x: hidden;">
  415. <div ref="templateDialog" class="templateDialog">
  416. <div class="recipeTemplate">
  417. <p>配方模板表</p>
  418. </div>
  419. <div class="operation1">
  420. <el-date-picker v-model="template.table.getdataListParm.parammaps.date" type="date" placeholder="请选择历史记录时间" :clearable="false" style="width: 180px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" @change="changeDate" />
  421. <!-- <el-button class="successBorder" @click="handleApplication">应用</el-button> -->
  422. </div>
  423. <div class="search">
  424. <el-select v-model="template.table.getdataListParm.parammaps.ccname" placeholder="牲畜类别" class="filter-item" clearable>
  425. <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.label" />
  426. </el-select>
  427. <el-select v-model="template.table.getdataListParm.parammaps.fttype" placeholder="配方类型" class="filter-item" style="width: 120px;" clearable>
  428. <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.label" />
  429. </el-select>
  430. <el-select v-model="template.table.getdataListParm.parammaps.enable" placeholder="是否启用" class="filter-item" style="margin-left:10px;width: 120px;" clearable>
  431. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  432. </el-select>
  433. <div ref="selectInput" class="filter-item selectInput">
  434. <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" />
  435. <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  436. <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  437. <ul v-if="arrowUp" class="selectUl">
  438. <li><a>配方名称</a><el-input v-model="template.table.getdataListParm.parammaps.tname" style="width: 245px;" /></li>
  439. <li><a>备注</a><el-input v-model="template.table.getdataListParm.parammaps.remark" style="width: 245px;" /></li>
  440. <li><a>来源</a><el-input v-model="template.table.getdataListParm.parammaps.source" style="width: 245px;" /></li>
  441. <li>
  442. <div style="float: right;">
  443. <el-button class="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
  444. <el-button class="miniPrimary" @click="handleDialogSearch">搜索</el-button>
  445. </div>
  446. </li>
  447. </ul>
  448. </div>
  449. <el-button class="successBorder" @click="handleDialogSearch" style="margin-left:10px;">查询</el-button>
  450. <el-button class="successBorder" @click="handleDialogRefresh" style="margin-left:10px;">重置</el-button>
  451. </div>
  452. <div class="table">
  453. <el-table
  454. :key="template.table.tableKey"
  455. v-loading="template.table.listLoading"
  456. element-loading-text="给我一点时间"
  457. :data="template.table.list"
  458. border
  459. fit
  460. highlight-current-row
  461. style="width: 98%;"
  462. :row-style="rowStyle"
  463. :height="myheight2"
  464. :cell-style="cellStyle"
  465. class="elTable table-fixed"
  466. @row-click="tableRowClickDialog"
  467. >
  468. <el-table-column v-if="template.dialogStatus == 'RecipeRecord'" label="序号" align="center" type="index" width="50px" />
  469. <el-table-column v-else label="序号" align="center" type="index" width="50px">
  470. <template slot-scope="scope">
  471. <span>{{ scope.$index + (template.table.pageNum-1) * template.table.pageSize + 1 }}</span>
  472. </template>
  473. </el-table-column>
  474. <el-table-column label="配方名称" min-width="130px" align="center">
  475. <template slot-scope="scope">
  476. <span>{{ scope.row.tname }}</span>
  477. </template>
  478. </el-table-column>
  479. <el-table-column label="配方编码" min-width="90px" align="center">
  480. <template slot-scope="scope">
  481. <span>{{ scope.row.tcode }}</span>
  482. </template>
  483. </el-table-column>
  484. <el-table-column label="配方颜色" min-width="110px" align="center">
  485. <template slot-scope="scope">
  486. <el-color-picker v-model="scope.row.tcolor" size="mini" :predefine="predefineColors" style="vertical-align: middle;" />
  487. </template>
  488. </el-table-column>
  489. <el-table-column label="牲畜类别" min-width="110px" align="center">
  490. <template slot-scope="scope">
  491. <span>{{ scope.row.ccname }}</span>
  492. </template>
  493. </el-table-column>
  494. <el-table-column label="配方类型" min-width="110px" align="center">
  495. <template slot-scope="scope">
  496. <span>{{ scope.row.fttype }}</span>
  497. </template>
  498. </el-table-column>
  499. <el-table-column label="来源" min-width="90px" align="center">
  500. <template slot-scope="scope">
  501. <span>{{ scope.row.source }}</span>
  502. </template>
  503. </el-table-column>
  504. <el-table-column label="备注" min-width="90px" align="center">
  505. <template slot-scope="scope">
  506. <span>{{ scope.row.remark }}</span>
  507. </template>
  508. </el-table-column>
  509. <el-table-column label="版本号" min-width="90px" align="center">
  510. <template slot-scope="scope">
  511. <span>{{ scope.row.version }}</span>
  512. </template>
  513. </el-table-column>
  514. <el-table-column label="版本时间" min-width="90px" align="center">
  515. <template slot-scope="scope">
  516. <span>{{ scope.row.versiontime }}</span>
  517. </template>
  518. </el-table-column>
  519. <el-table-column label="是否启用" min-width="90px" align="center">
  520. <template slot-scope="scope">
  521. <el-switch v-model="scope.row.enable" disabled active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" />
  522. </template>
  523. </el-table-column>
  524. </el-table>
  525. </div>
  526. </div>
  527. <div v-if="isDetailDialog" id="detailDialog2" ref="detailDialog2" class="detailDialog" style="margin-top: 30px;height: 200px;overflow-y: auto;overflow-x: hidden;">
  528. <div class="recipeTemplate">
  529. <p>配方详情表</p>
  530. </div>
  531. <div class="operation">
  532. <div ref="selectInput2" class="filter-item selectInput">
  533. <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" />
  534. <i v-if="arrowDown2" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  535. <i v-if="arrowUp2" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  536. <ul v-if="arrowUp2" class="selectUl">
  537. <li>
  538. <a style="width: 130px;">饲料名称</a>
  539. <el-select v-model="template.table2.getdataListParm.parammaps.fname" filterable placeholder="" style="width:245px;">
  540. <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.fname" />
  541. </el-select>
  542. </li>
  543. <li><a style="width: 130px;">饲料组名称</a><el-input v-model="template.table2.getdataListParm.parammaps.feedgroup" style="width: 245px;" /></li>
  544. <li><a style="width: 130px;">重量</a><el-input v-model="template.table2.getdataListParm.parammaps.fweight" style="width: 245px;" /></li>
  545. <li>
  546. <a style="width: 130px;">搅拌延时</a>
  547. <el-select v-model="template.table2.getdataListParm.parammaps.autosecondname" filterable placeholder="" style="width:245px;">
  548. <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.name" />
  549. </el-select>
  550. </li>
  551. <li>
  552. <a style="width: 130px;">是否锁定牛头数比例</a>
  553. <el-select v-model="template.table2.getdataListParm.parammaps.islockcount" placeholder="" style="width:245px;">
  554. <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" />
  555. </el-select>
  556. </li>
  557. <li><a style="width: 130px;">顺序</a><el-input v-model="template.table2.getdataListParm.parammaps.sort" style="width: 245px;" /></li>
  558. <li>
  559. <div style="float: right;">
  560. <el-button class="downminCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button>
  561. <el-button class="miniPrimary" @click="handleDialogSearch2">搜索</el-button>
  562. </div>
  563. </li>
  564. </ul>
  565. </div>
  566. <el-button class="successBorder" @click="handleDialogSearch2">查询</el-button>
  567. <el-button class="successBorder" @click="handleDialogRefresh2">重置</el-button>
  568. <el-button class="hide" @click="handleDialogCloseTable2">隐藏</el-button>
  569. </div>
  570. <div class="table2">
  571. <el-table
  572. id="templateTable2"
  573. :key="template.table2.tableKey"
  574. v-loading="template.table2.listLoading"
  575. element-loading-text="给我一点时间"
  576. :data="template.table2.list"
  577. border
  578. fit
  579. highlight-current-row
  580. style="width: 98%;"
  581. :summary-method="getTemplateTable2Summaries"
  582. show-summary
  583. :row-style="rowStyle"
  584. :cell-style="cellStyle"
  585. class="elTable table-fixed"
  586. row-key="id"
  587. >
  588. <el-table-column label="饲料组" min-width="130px" align="center">
  589. <template slot-scope="scope">
  590. <span>{{ scope.row.feedgroup }}</span>
  591. </template>
  592. </el-table-column>
  593. <el-table-column label="饲料名称" min-width="130px" align="center">
  594. <template slot-scope="scope">
  595. <span>{{ scope.row.fname }}</span>
  596. </template>
  597. </el-table-column>
  598. <el-table-column label="重量(KG)" prop="fweight" min-width="200px" align="center">
  599. <template slot-scope="scope">
  600. <span>{{ scope.row.fweight }}</span>
  601. </template>
  602. </el-table-column>
  603. <el-table-column label="搅拌延时(min)" min-width="130px" align="center">
  604. <template slot-scope="scope">
  605. <span>{{ scope.row.autosecondname }}</span>
  606. </template>
  607. </el-table-column>
  608. <el-table-column label="是否锁定牛头数比例" min-width="130px" align="center">
  609. <template slot-scope="scope">
  610. <span v-if="scope.row.islockcount == '0'">否</span>
  611. <span v-if="scope.row.islockcount == '1'">是</span>
  612. </template>
  613. </el-table-column>
  614. <el-table-column label="顺序" min-width="130px" align="center">
  615. <template slot-scope="scope">
  616. <span>{{ scope.row.sort }}</span>
  617. </template>
  618. </el-table-column>
  619. </el-table>
  620. </div>
  621. </div>
  622. </div>
  623. <div slot="footer" class="dialog-footer">
  624. <el-button class="cancelClose cancelClose1" @click="template.dialogFormVisible = false; ">关闭</el-button>
  625. </div>
  626. </el-dialog>
  627. <!-- 合成预混料 -->
  628. <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="detail.dialogFormVisible" :close-on-click-modal="false" width="90%">
  629. <template slot="title">
  630. <div class="avue-crud__dialog__header">
  631. <span class="el-dialog__title">
  632. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  633. {{ textMap[detail.dialogStatus] }}
  634. </span>
  635. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  636. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  637. <svg-icon v-else icon-class="fullscreen" />
  638. </div>
  639. </div>
  640. </template>
  641. <div class="detailDialog">
  642. <h2>饲料</h2>
  643. <div class="table1">
  644. <el-table
  645. :key="detail.tableKey"
  646. v-loading="detail.listLoading"
  647. element-loading-text="给我一点时间"
  648. :data="detail.list"
  649. fit
  650. highlight-current-row
  651. style="width: 100%;"
  652. :row-style="rowStyle"
  653. :cell-style="cellStyle"
  654. class="elTable table-fixed"
  655. show-summary
  656. >
  657. <el-table-column label="序号" align="center" type="index" width="50px" />
  658. <el-table-column label="饲料名称" min-width="130px" align="center">
  659. <template slot-scope="scope">
  660. <span>{{ scope.row.fname }}</span>
  661. </template>
  662. </el-table-column>
  663. <el-table-column prop="fweight" label="重量(KG)" />
  664. <el-table-column label="搅拌延时(min)" min-width="110px" align="center">
  665. <template slot-scope="scope">
  666. <span>{{ scope.row.autosecond }}</span>
  667. </template>
  668. </el-table-column>
  669. <el-table-column v-if="lockCount.isLockCount" label="是否锁定牛头数比例" min-width="130px" align="center">
  670. <template slot-scope="scope">
  671. <span v-if="scope.row.islockcount == '0'">否</span>
  672. <span v-if="scope.row.islockcount == '1'">是</span>
  673. </template>
  674. </el-table-column>
  675. <el-table-column label="顺序" min-width="110px" align="center">
  676. <template slot-scope="scope">
  677. <span>{{ scope.row.sort }}</span>
  678. </template>
  679. </el-table-column>
  680. </el-table>
  681. </div>
  682. <h2>合成预混料</h2>
  683. <div class="table2" style="margin-bottom: 50px;">
  684. <el-table
  685. :key="detail.tableKey2"
  686. v-loading="detail.listLoading2"
  687. element-loading-text="给我一点时间"
  688. :data="detail.list2"
  689. border
  690. fit
  691. highlight-current-row
  692. style="width: 100%;"
  693. :row-style="rowStyle"
  694. :cell-style="cellStyle"
  695. class="elTable table-fixed"
  696. >
  697. <el-table-column label="配方名称" min-width="130px" align="center">
  698. <template slot-scope="scope">
  699. <el-input v-model="scope.row.tname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" :disabled="detail.disabled" />
  700. </template>
  701. </el-table-column>
  702. <el-table-column label="配方颜色" min-width="130px" align="center">
  703. <template slot-scope="scope">
  704. <el-color-picker v-model="scope.row.tcolor" size="mini" :predefine="predefineColors" style="vertical-align: middle;" :disabled="detail.disabled" />
  705. </template>
  706. </el-table-column>
  707. <el-table-column label="牲畜类别" min-width="130px" align="center">
  708. <template slot-scope="scope">
  709. <el-select v-model="scope.row.ccid" placeholder="选择牲畜父类" class="filter-item" style="width:95%;padding:10px 0;" :disabled="detail.disabled" @change="changeLivestockType2">
  710. <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.value" />
  711. </el-select>
  712. </template>
  713. </el-table-column>
  714. <el-table-column label="配方类型" min-width="110px" align="center">
  715. <template slot-scope="scope">
  716. <span>{{ scope.row.fttype }}</span>
  717. </template>
  718. </el-table-column>
  719. <el-table-column label="来源" min-width="110px" align="center">
  720. <template slot-scope="scope">
  721. <span>{{ scope.row.source }}</span>
  722. </template>
  723. </el-table-column>
  724. <el-table-column label="容重(kg/m³)" min-width="130px" align="center">
  725. <template slot-scope="scope">
  726. <el-input v-model="scope.row.volume" style="width:95%;padding:10px 0;" :disabled="detail.disabled" />
  727. </template>
  728. </el-table-column>
  729. <el-table-column label="备注" min-width="130px" align="center">
  730. <template slot-scope="scope">
  731. <el-input v-model="scope.row.remark" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" :disabled="detail.disabled" />
  732. </template>
  733. </el-table-column>
  734. <el-table-column label="是否启用" min-width="130px" align="center">
  735. <template slot-scope="scope">
  736. <el-switch v-model="scope.row.enable" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" :disabled="detail.disabled" />
  737. </template>
  738. </el-table-column>
  739. </el-table>
  740. </div>
  741. <div slot="footer" class="dialog-footer">
  742. <el-button class="cancelClose" @click="detail.dialogFormVisible = false; ">关闭</el-button>
  743. <el-button class="save" :disabled="isokDisable" @click="syntheticPremixData()">确认</el-button>
  744. </div>
  745. </div>
  746. </el-dialog>
  747. <!-- 历史记录 -->
  748. <el-dialog :title="textMap[historyRecord.dialogStatus]" :destroy-on-close="true" :visible.sync="historyRecord.dialogFormVisible" :close-on-click-modal="false" width="90%">
  749. <div class="historyRecord">
  750. <keep-alive>
  751. <component :is="historyRecord.myComponent" ref="historyRecord" />
  752. </keep-alive>
  753. </div>
  754. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  755. <el-button class="cancelClose1" @click="historyRecord.dialogFormVisible = false; ">关闭</el-button>
  756. </div>
  757. </el-dialog>
  758. <!-- 行内配方记录 -->
  759. <el-dialog :title="textMap[rowRecipeRecord.dialogStatus]" :destroy-on-close="true" :visible.sync="rowRecipeRecord.dialogFormVisible" :close-on-click-modal="false" width="90%">
  760. <div class="rowRecipeRecord">
  761. <div class="search">
  762. <el-date-picker ref="inputDatetime" v-model="rowRecipeRecord.getdataListParm.parammaps.inputDatetime" class="filter-item inputDatetime" type="daterange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" />
  763. <el-button class="successBorder" @click="handleRowRecipeRecordSearch">查询</el-button>
  764. </div>
  765. <div class="table">
  766. <el-table
  767. :key="rowRecipeRecord.tableKey"
  768. v-loading="rowRecipeRecord.listLoading"
  769. element-loading-text="给我一点时间"
  770. :data="rowRecipeRecord.list"
  771. border
  772. highlight-current-row
  773. style="width: 100%;"
  774. :row-style="rowStyle"
  775. :cell-style="cellStyle"
  776. class="elTable table-fixed"
  777. >
  778. <el-table-column label="序号" align="center" type="index" width="50px">
  779. <template slot-scope="scope">
  780. <span>{{ scope.$index + (rowRecipeRecord.pageNum-1) * rowRecipeRecord.pageSize + 1 }}</span>
  781. </template>
  782. </el-table-column>
  783. <!-- <el-table-column label="序号" width="60px" align="center" prop="sort" /> -->
  784. <el-table-column label="修改时间" width="100px" align="center" prop="datetime1" />
  785. <el-table-column label="修改用户" width="130px" align="center" prop="empname" />
  786. <el-table-column label="饲料名称(单位:kg)" min-width="800px" align="center">
  787. <template slot-scope="scope">
  788. <div v-for="element in scope.row.arrList" :key="element.name" class="list-group-item2 item" style="width:150px;float: left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin: 5px 5px;padding: 0;height: 30px;">
  789. <el-tooltip v-if="element.change== 'red'" placement="top" :open-delay="1000">
  790. <div slot="content">{{ element.name }}( {{ element.weight }} / {{ element.Eweight }} )</div>
  791. <span :style="{'color':element.change}" style="display: block;height:30px;line-height: 30px;">
  792. {{ element.name }}( {{ element.weight }} / {{ element.Eweight }} )
  793. </span>
  794. </el-tooltip>
  795. <el-tooltip v-else placement="top" :open-delay="1000">
  796. <div slot="content">{{ element.name }}( {{ element.weight }})</div>
  797. <span :style="{'color':element.change}" style="display: block;height:30px;line-height: 30px;">
  798. {{ element.name }}( {{ element.weight }})
  799. </span>
  800. </el-tooltip>
  801. </div>
  802. </template>
  803. </el-table-column>
  804. </el-table>
  805. <pagination v-show="rowRecipeRecord.total>=0" :total="rowRecipeRecord.total" :page.sync="rowRecipeRecord.getdataListParm.offset" :limit.sync="rowRecipeRecord.getdataListParm.pagecount" @pagination="getRowRecipeRecordList()" />
  806. </div>
  807. </div>
  808. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  809. <el-button class="cancelClose1" @click="rowRecipeRecord.dialogFormVisible = false; ">关闭</el-button>
  810. </div>
  811. </el-dialog>
  812. </div>
  813. </template>
  814. <script>
  815. import { GetDataByName, GetDataByNames, PostDataByName, failproccess, checkButtons, postJson, ExecDataByConfig, formatNum } from '@/api/common'
  816. import Sortable from 'sortablejs'
  817. import { MessageBox } from 'element-ui'
  818. import Cookies from 'js-cookie'
  819. import { json2excel } from '@/utils/index.js'
  820. import axios from 'axios'
  821. import { getToken } from '@/utils/auth'
  822. import { parseTime } from '@/utils/index.js'
  823. import Pagination from '@/components/Pagination'
  824. export default {
  825. name: 'RecipeTemplate',
  826. components: { Pagination },
  827. data() {
  828. return {
  829. dialogFull: false,
  830. predefineColors: [
  831. '#E57373', '#F06292', '#BA68C8', '#9575CD', '#7986CB', '#64B5F6', '#4FC3F7', '#4DD0E1', '#4DB6AC', '#81C784', '#AED581', '#DCE775', '#FFF176', '#FFD54F', '#FFB74D', '#FF8A65', '#A1887F', '#E0E0E0', '#90A4AE'
  832. ],
  833. isRoleEdit: [],
  834. myheight: document.documentElement.clientHeight - 265,
  835. requestParams: [
  836. {"name":"getCowclassList","page":1,"offset":1,"pagecount":50,"returntype":"Map","parammaps":{"pastureid":Cookies.get('pastureid'),"classname":"","parentname":"","enable":1}},
  837. // { name: 'getDictByName', offset: 0, pagecount: 0, params: ['牲畜父类'] },
  838. { name: 'getDictByName2', offset: 0, pagecount: 0, params: ['配方类型'] },
  839. { name: 'getFeedAndPre', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }},
  840. { name: 'getDistCattle', offset: 0, pagecount: 0, parammaps: {}}
  841. ],
  842. distCattle:[],//牛群类别
  843. enableList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 是否启用
  844. lockBullsList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 是否锁定牛头数比例
  845. livestockTypeList: [], // 牲畜类别
  846. formulaTypeList: [], // 配方类型
  847. feedNameList: [], // 饲料名称
  848. mixingDelayList: [{ id: '0', name: '0' }, { id: '1', name: '1' }, { id: '2', name: '2' }, { id: '3', name: '3' }, { id: '4', name: '4' }, { id: '5', name: '5' }, { id: '6', name: '6' }, { id: '7', name: '7' }, { id: '8', name: '8' }, { id: '9', name: '9' }, { id: '10', name: '10' }, { id: '11', name: '11' }, { id: '12', name: '12' }, { id: '13', name: '13' }, { id: '14', name: '14' }, { id: '15', name: '15' }], // 搅拌延时
  849. selectHistoryTimeList: [{ id: 0, name: '2020-06-10' }, { id: 1, name: '2020-06-11' }, { id: 2, name: '2020-06-12' }, { id: 3, name: '2020-06-13' }], // 请选择历史记录时间
  850. arrowDown: true,
  851. arrowUp: false,
  852. ispastureuse: Cookies.get('ispastureuse'),
  853. table: {
  854. getdataListParm: {
  855. name: 'getFTList',
  856. page: 1,
  857. offset: 1,
  858. pagecount: '',
  859. returntype: 'Map',
  860. parammaps: {
  861. pastureid: Cookies.get('pastureid'),
  862. tname: '',
  863. ccid: '',
  864. ccname: '',
  865. fttypeid: '',
  866. fttype: '',
  867. remark: '',
  868. enable: '',
  869. source: ''
  870. }
  871. },
  872. tableKey: 0,
  873. list: [],
  874. total: 0,
  875. listLoading: true,
  876. temp: {}
  877. },
  878. lockCount: {
  879. getdataListParm: {
  880. name: 'getSysoptEnable',
  881. page: 1,
  882. offset: 1,
  883. pagecount: 30,
  884. returntype: 'Map',
  885. parammaps: {
  886. pastureid: Cookies.get('pastureid'),
  887. inforname: 'isLockCount'
  888. }
  889. },
  890. isLockCount: false // 是否显示是否锁定牛头数比例
  891. },
  892. isDetail: false,
  893. arrowDown2: true,
  894. arrowUp2: false,
  895. table2: {
  896. getDryweightParm: {
  897. name: 'getFTdryweight',
  898. page: 1,
  899. offset: 1,
  900. pagecount: 10,
  901. returntype: 'Map',
  902. parammaps: {
  903. pastureid: '',
  904. ftid: ''
  905. }
  906. },
  907. dryweight: '',
  908. getdataListParm: {
  909. name: 'getFTdetailList',
  910. page: 1,
  911. offset: 1,
  912. pagecount: '',
  913. returntype: 'Map',
  914. parammaps: {
  915. pastureid: Cookies.get('pastureid'),
  916. fname: '',
  917. feedgroup: '',
  918. fweight: '',
  919. autosecondname: '',
  920. islockcount: '',
  921. sort: ''
  922. }
  923. },
  924. tableKey: 0,
  925. list: [],
  926. total: 0,
  927. listLoading: true,
  928. temp: {},
  929. updateList: {}
  930. },
  931. isDetailDialog: false,
  932. template: {
  933. dialogFormVisible: false,
  934. dialogStatus: '',
  935. table: {
  936. getdataListParm: {
  937. name: 'getFTListDate',
  938. page: 1,
  939. offset: 1,
  940. pagecount: '',
  941. returntype: 'Map',
  942. parammaps: {
  943. pastureid: Cookies.get('pastureid'),
  944. tname: '',
  945. ccid: '',
  946. ccname: '',
  947. fttype: '',
  948. remark: '',
  949. enable: '',
  950. date: '',
  951. source: ''
  952. }
  953. },
  954. tableKey: 0,
  955. total: 0,
  956. listLoading: true,
  957. list: []
  958. },
  959. table2: {
  960. getdataListParm: {
  961. name: 'getFTdetailListDate',
  962. page: 1,
  963. offset: 1,
  964. pagecount: 10,
  965. returntype: 'Map',
  966. parammaps: {
  967. pastureid: Cookies.get('pastureid'),
  968. fname: '',
  969. fweight: '',
  970. islockcount: '',
  971. sort: '',
  972. feedgroup: '',
  973. autosecondname: ''
  974. }
  975. },
  976. tableKey: 0,
  977. total: 0,
  978. listLoading: true,
  979. list: []
  980. },
  981. // 历史日期
  982. getdataDateParm: {
  983. name: 'getFTMaxDate',
  984. page: 1,
  985. offset: 1,
  986. pagecount: 10,
  987. returntype: 'Map',
  988. parammaps: {
  989. pastureid: Cookies.get('pastureid')
  990. }
  991. }
  992. },
  993. isOrder: true,
  994. detail: {
  995. dialogFormVisible: false,
  996. dialogStatus: '',
  997. tableKey: 0,
  998. total: 0,
  999. listLoading: true,
  1000. list: [],
  1001. tableKey2: 0,
  1002. total2: 0,
  1003. listLoading2: false,
  1004. list2: [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1, }],
  1005. getdataListParm: {
  1006. name: 'getFTDetailCompare',
  1007. page: 1,
  1008. offset: 1,
  1009. pagecount: 10,
  1010. returntype: 'Map',
  1011. parammaps: {}
  1012. },
  1013. list3: [],
  1014. disabled: false,
  1015. getdataListParm2: {
  1016. name: 'getFTCompare',
  1017. page: 1,
  1018. offset: 1,
  1019. pagecount: 10,
  1020. returntype: 'Map',
  1021. parammaps: {}
  1022. }
  1023. },
  1024. selectList: [],
  1025. selectList2: [],
  1026. textMap: {
  1027. RecipeRecord: '配方记录',
  1028. SyntheticPremix: '合成预混料',
  1029. historyRecord: '历史记录',
  1030. detail: '饲料详情',
  1031. rowRecipeRecordTxt: '配方修改记录'
  1032. },
  1033. requestParam: {},
  1034. requestParam2: {},
  1035. requestParam3:{},
  1036. download: {
  1037. getdataListParm: {
  1038. name: 'getFTList',
  1039. page: 1,
  1040. offset: 1,
  1041. pagecount: 0,
  1042. returntype: 'Map',
  1043. parammaps: {
  1044. pastureid: Cookies.get('pastureid'),
  1045. tname: '',
  1046. ccid: '',
  1047. ccname: '',
  1048. fttypeid: '',
  1049. fttype: '',
  1050. remark: '',
  1051. enable: ''
  1052. }
  1053. },
  1054. list: []
  1055. },
  1056. historyRecord: {
  1057. dialogStatus: '',
  1058. dialogFormVisible: false
  1059. },
  1060. isokDisable: false,
  1061. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  1062. cellStyle: { padding: 0 + 'px' },
  1063. dropState: false,
  1064. myheight2: 0,
  1065. height: 0,
  1066. rowRecipeRecord: {
  1067. dialogStatus: '',
  1068. dialogFormVisible: false,
  1069. getdataListParm: {
  1070. name: 'getFitHistory1', 'name1': 'getFitHistory2', page: 1, offset: 1, pagecount: 10, returntype: 'Map',
  1071. parammaps: { inputDatetime: '', pastureid: '', fitid: '' }
  1072. },
  1073. tableKey: 0, total: 0, listLoading: true, list: []
  1074. },
  1075. isEnlarge: true,
  1076. ispalyUd: true,
  1077. // enlargeHeight: document.documentElement.clientHeight - 85 - 165 + 50,
  1078. enlargeHeight: document.documentElement.clientHeight - 85 - 165 + 50,
  1079. getTcodeParm: {
  1080. name: 'getTcode', page: 1, offset: 1, pagecount: 10, returntype: 'Map',
  1081. parammaps: { pastureid: '', fttypeid: '' }
  1082. },
  1083. sourceList: [{ id: '0', name: '自定义' }, { id: '1', name: '集团下发未调整' }, { id: '2', name: '集团下发有调整' }, { id: '3', name: '导入' }]
  1084. }
  1085. },
  1086. computed: {
  1087. // 设置请求头
  1088. headers() {
  1089. return {
  1090. token: getToken()
  1091. }
  1092. },
  1093. uploadData() {
  1094. return {
  1095. name: 'checkfttype,checkbigcowclass,checkFeed,insertFTUpload,insertFTdetailUpload',
  1096. importParams: '配方名称,牲畜类别,配方类型,备注,饲料组,饲料名称,重量(kg),搅拌延时(min),是否锁定牛头数比例',
  1097. sheetname: 'Sheet1',
  1098. // 登录牧场
  1099. pastureid: Cookies.get('pastureid'),
  1100. // 日期参数
  1101. dateParams: '',
  1102. // 必填参数
  1103. requiredParams: '配方名称,牲畜类别,配方类型,饲料名称,重量(kg),搅拌延时(min),是否锁定牛头数比例',
  1104. // 为数值的参数
  1105. numParams: '重量(kg),搅拌延时(min)'
  1106. }
  1107. },
  1108. // 设置上传地址
  1109. uploadExcelUrl() {
  1110. return Cookies.get('url') + 'authdata/ImportExcel'
  1111. }
  1112. },
  1113. mounted() {
  1114. document.addEventListener('click', (e) => {
  1115. if (this.$refs.selectInput !== undefined) {
  1116. if (!this.$refs.selectInput.contains(e.target)) {
  1117. this.arrowDown = true
  1118. this.arrowUp = false
  1119. } else {
  1120. this.arrowDown = false
  1121. this.arrowUp = true
  1122. }
  1123. }
  1124. if (this.$refs.selectInput2 !== undefined) {
  1125. if (!this.$refs.selectInput2.contains(e.target)) {
  1126. this.arrowDown2 = true
  1127. this.arrowUp2 = false
  1128. } else {
  1129. this.arrowDown2 = false
  1130. this.arrowUp2 = true
  1131. }
  1132. }
  1133. })
  1134. },
  1135. created() {
  1136. this.getIspalyUd()
  1137. this.getList()
  1138. this.getButtons()
  1139. this.getDownList()
  1140. this.getIsLockCount()
  1141. },
  1142. methods: {
  1143. getButtons() {
  1144. const Edit = 'RecipeTemplate'
  1145. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  1146. this.isRoleEdit = isRoleEdit
  1147. },
  1148. getSummaries(param) {
  1149. const { columns, data } = param
  1150. const sums = []
  1151. columns.forEach((column, index) => {
  1152. if (index === 0) {
  1153. sums[index] = '合计'
  1154. return
  1155. }
  1156. if (column.property !== undefined) {
  1157. // 加了prop属性的el-table-column 才能找到column.property
  1158. const values = data.map(item => Number(item[column.property]))
  1159. if (!values.every(value => isNaN(value))) {
  1160. sums[index] = values.reduce((prev, curr) => {
  1161. const value = Number(curr)
  1162. if (!isNaN(value)) {
  1163. return prev + curr // 多行相加
  1164. } else {
  1165. return prev
  1166. }
  1167. }, 0)
  1168. sums[index] = sums[index].toFixed(4) + '(干物质量:' + this.table2.dryweight + ')'
  1169. } else {
  1170. sums[index] = ''
  1171. }
  1172. }
  1173. })
  1174. // console.log(sums, 'sums[index]')
  1175. return sums
  1176. },
  1177. getDryWeight() {
  1178. GetDataByName(this.table2.getDryweightParm).then(response => {
  1179. console.log('干物质数据', response.data.list)
  1180. if (response.data.list[0].dryweight !== undefined) {
  1181. this.table2.dryweight = response.data.list[0].dryweight
  1182. } else {
  1183. this.table2.dryweight = ''
  1184. }
  1185. })
  1186. },
  1187. getTemplateTable2Summaries(param) {
  1188. const { columns, data } = param
  1189. const sums = []
  1190. columns.forEach((column, index) => {
  1191. if (index === 0) {
  1192. sums[index] = '合计'
  1193. return
  1194. }
  1195. const values = data.map(item => Number(item[column.property]))
  1196. if (!values.every(value => isNaN(value))) {
  1197. sums[index] = values.reduce((prev, curr) => {
  1198. const value = Number(curr)
  1199. if (!isNaN(value)) {
  1200. return prev + curr
  1201. } else {
  1202. return prev
  1203. }
  1204. }, 0)
  1205. // 后台待发
  1206. sums[index] += '(干物质量:' + this.template.table2.getdataListParm.parammaps.dryweight + ')'
  1207. } else {
  1208. sums[index] = ''
  1209. }
  1210. })
  1211. return sums
  1212. },
  1213. getDownList() {
  1214. GetDataByNames(this.requestParams).then(response => {
  1215. // this.livestockTypeList = response.data.getDictByName.list
  1216. this.livestockTypeList = response.data.getCowclassList.list
  1217. for(var i=0;i<this.livestockTypeList.length;i++){
  1218. this.livestockTypeList[i].label = this.livestockTypeList[i].classname;
  1219. this.livestockTypeList[i].value = this.livestockTypeList[i].id;
  1220. }
  1221. this.formulaTypeList = response.data.getDictByName2.list
  1222. this.feedNameList = response.data.getFeedAndPre.list
  1223. this.distCattle = response.data.getDistCattle.list
  1224. })
  1225. },
  1226. // -------------------模板-----------------------------
  1227. getList() {
  1228. this.table.listLoading = true
  1229. GetDataByName(this.table.getdataListParm).then(response => {
  1230. console.log('配方模板table数据', response.data.list)
  1231. if (response.data.list !== null) {
  1232. for (let i = 0; i < response.data.list.length; i++) {
  1233. this.$set(response.data.list[i], 'Edit', false) // 编辑
  1234. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  1235. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  1236. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  1237. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  1238. }
  1239. this.table.list = response.data.list
  1240. this.table.pageNum = response.data.pageNum
  1241. this.table.pageSize = response.data.pageSize
  1242. this.table.total = response.data.total
  1243. } else {
  1244. this.table.list = []
  1245. this.isDetail = false
  1246. }
  1247. setTimeout(() => {
  1248. this.table.listLoading = false
  1249. }, 100)
  1250. })
  1251. },
  1252. getList3() {
  1253. this.table.listLoading = true
  1254. GetDataByName(this.table.getdataListParm).then(response => {
  1255. console.log('table数据', response.data.list)
  1256. if (response.data.list !== null) {
  1257. for (let i = 0; i < response.data.list.length; i++) {
  1258. this.$set(response.data.list[i], 'Edit', false) // 编辑
  1259. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  1260. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  1261. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  1262. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  1263. }
  1264. this.table.list = response.data.list
  1265. this.table.pageNum = response.data.pageNum
  1266. this.table.pageSize = response.data.pageSize
  1267. this.table.total = response.data.total
  1268. } else {
  1269. this.table.list = []
  1270. this.isDetail = false
  1271. }
  1272. setTimeout(() => {
  1273. this.table.listLoading = false
  1274. }, 100)
  1275. })
  1276. },
  1277. form_search() {
  1278. console.log('点击了查询')
  1279. this.table.getdataListParm.offset = 1
  1280. this.getList()
  1281. this.table.getdataListParm.parammaps.all = ''
  1282. var obj = {}
  1283. obj.tname = this.table.getdataListParm.parammaps.tname
  1284. obj.remark = this.table.getdataListParm.parammaps.remark
  1285. // obj.source = this.table.getdataListParm.parammaps.source
  1286. Object.getOwnPropertyNames(obj).forEach((key) => {
  1287. console.log(key, obj[key])
  1288. if (obj[key] !== '') {
  1289. this.table.getdataListParm.parammaps.all += obj[key] + '/'
  1290. }
  1291. })
  1292. if (this.table.getdataListParm.parammaps.all.charAt(this.table.getdataListParm.parammaps.all.length - 1) == '/') {
  1293. this.table.getdataListParm.parammaps.all = this.table.getdataListParm.parammaps.all.slice(0, this.table.getdataListParm.parammaps.all.length - 1)
  1294. }
  1295. this.arrowDown = true
  1296. this.arrowUp = false
  1297. },
  1298. handleRefresh() {
  1299. console.log('点击了重置')
  1300. this.table.getdataListParm.offset = 1
  1301. this.table.getdataListParm.parammaps.ccid = ''
  1302. this.table.getdataListParm.parammaps.ccname = ''
  1303. this.table.getdataListParm.parammaps.fttype = ''
  1304. this.table.getdataListParm.parammaps.tname = ''
  1305. this.table.getdataListParm.parammaps.remark = ''
  1306. this.table.getdataListParm.parammaps.enable = ''
  1307. this.table.getdataListParm.parammaps.source = ''
  1308. this.table.getdataListParm.parammaps.all = ''
  1309. this.getList()
  1310. },
  1311. // 模板新增
  1312. handleCreate() {
  1313. // 编辑true/不可编辑false
  1314. // 新增操true,编辑false,编辑保存false
  1315. for (let i = 0; i < this.table.list.length; i++) {
  1316. if (this.table.list[i].Edit === true) {
  1317. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  1318. return false
  1319. }
  1320. }
  1321. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'tname': '', tcode: '', 'tcolor': '#ccc', 'ccid': '', 'ccname': '', 'fttype': '', 'fttypeid': '','volume':'', 'source': '自定义', 'remark': '','cattle':'' })
  1322. console.log('点击了新增this.table.list====>', this.table.list)
  1323. this.table.temp = this.table.list[0]
  1324. this.getTcodeList()
  1325. },
  1326. getTcodeList() {
  1327. this.getTcodeParm.parammaps.pastureid = Cookies.get('pastureid')
  1328. console.log(this.table.temp, 'this.table.temp')
  1329. GetDataByName(this.getTcodeParm).then(response => {
  1330. if (response.data.list !== null) {
  1331. this.table.temp.tcode = response.data.list[0].tcode
  1332. } else {
  1333. this.table.temp.tcode = ''
  1334. }
  1335. })
  1336. },
  1337. // 畜生类别
  1338. changeLivestockType(item) {
  1339. this.table.temp.ccname = this.livestockTypeList.find(obj => obj.value === item).label
  1340. },
  1341. // 配方类型
  1342. changeFormulaType(item) {
  1343. this.table.temp.fttype = this.formulaTypeList.find(obj => obj.value === item).label
  1344. },
  1345. createData(row) {
  1346. console.log('点击了新增保存', row)
  1347. this.table.temp.tname = row.tname
  1348. this.table.temp.tcode = row.tcode
  1349. this.table.temp.tcolor = row.tcolor
  1350. this.table.temp.ccid = row.ccid
  1351. this.table.temp.ccname = this.table.temp.ccname
  1352. this.table.temp.fttype = this.table.temp.fttype
  1353. this.table.temp.fttypeid = row.fttypeid
  1354. this.table.temp.source = row.source
  1355. this.table.temp.remark = row.remark
  1356. this.table.temp.enable = row.enable
  1357. if(this.table.temp.volume == ''){
  1358. this.table.temp.volume = 0
  1359. }
  1360. this.table.temp.volume = parseFloat(row.volume)
  1361. this.table.temp.pastureid = Cookies.get('pastureid')
  1362. if (this.table.temp.tname == '' && this.table.temp.ccid == '' && this.table.temp.fttypeid == '') {
  1363. this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 })
  1364. return false
  1365. } else if (this.table.temp.ccid == '' && this.table.temp.fttypeid == '') {
  1366. this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 })
  1367. return false
  1368. } else if (this.table.temp.tname == '') {
  1369. this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 })
  1370. return false
  1371. } else if (this.table.temp.ccid == '') {
  1372. this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 })
  1373. return false
  1374. } else if (this.table.temp.fttypeid == '') {
  1375. this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 })
  1376. return false
  1377. }
  1378. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  1379. // if (pattern.test(this.table.temp.tname)) {
  1380. // this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 })
  1381. // return false
  1382. // }
  1383. if (pattern.test(this.table.temp.tcode)) {
  1384. this.$message({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
  1385. return false
  1386. }
  1387. console.log(this.table.temp)
  1388. this.isokDisable = true
  1389. setTimeout(() => {
  1390. this.isokDisable = false
  1391. }, 1000)
  1392. this.requestParam2.name = 'checkNumber'
  1393. this.requestParam2.parammaps = {}
  1394. this.requestParam2.parammaps.number = this.table.temp.tcode
  1395. GetDataByName(this.requestParam2).then(response => {
  1396. console.log('table数据', response.data.list)
  1397. if (response.data.list[0].vmsg !== '输入非法字符') {
  1398. this.saveCreateData()
  1399. } else {
  1400. this.$notify({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
  1401. }
  1402. })
  1403. },
  1404. saveCreateData() {
  1405. this.requestParam.name = 'insertFT'
  1406. this.requestParam.parammaps = this.table.temp
  1407. PostDataByName(this.requestParam).then(response => {
  1408. console.log('新增保存发送参数', this.requestParam)
  1409. if (response.msg !== 'fail') {
  1410. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1411. this.getList()
  1412. let data = {}
  1413. data.name = 'insertFeedtemplethistory'
  1414. data.parammaps = this.table.temp
  1415. PostDataByName(data).then(response => {
  1416. if (response.msg !== 'fail') {
  1417. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1418. this.getList()
  1419. } else {
  1420. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1421. }
  1422. })
  1423. } else {
  1424. const isRepeat = new RegExp('Duplicate entry :feedtemplet.tCode')
  1425. if (isRepeat.test(response.data)) {
  1426. this.$notify({ type: 'error', message: '配方编码不可重复,请重新录入', duration: 2000 })
  1427. } else {
  1428. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1429. }
  1430. }
  1431. })
  1432. },
  1433. createCancel(row) {
  1434. console.log('点击了新增取消')
  1435. for (let i = 0; i < this.table.list.length; i++) {
  1436. if (row.myId === this.table.list[i].myId) {
  1437. var listIndex = this.table.list.indexOf(this.table.list[i])
  1438. }
  1439. if (listIndex > -1) {
  1440. this.table.list.splice(listIndex, 1)
  1441. return
  1442. }
  1443. }
  1444. },
  1445. // 模板编辑
  1446. handleUpdate(row) {
  1447. for (let i = 0; i < this.table.list.length; i++) {
  1448. if (this.table.list[i].Edit == true) {
  1449. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  1450. return false
  1451. }
  1452. }
  1453. // 编辑true,不可编辑false
  1454. row.Edit = true
  1455. row.NoEdit = false
  1456. // 新增false,编辑false,编辑保存true
  1457. row.isCreate = false
  1458. row.isUpdate = false
  1459. row.isUpdateSave = true
  1460. if (row.ccname !== undefined) {
  1461. row.ccid = String(row.ccid)
  1462. }
  1463. this.table.temp.ccname = row.ccname
  1464. row.fttypeid = String(row.fttypeid)
  1465. this.table.temp.fttype = row.fttype
  1466. },
  1467. updateData(row) {
  1468. console.log('点击了编辑保存', row)
  1469. this.table.temp.tname = row.tname
  1470. this.table.temp.tcode = row.tcode
  1471. this.table.temp.tcolor = row.tcolor
  1472. this.table.temp.ccid = row.ccid
  1473. this.table.temp.fttypeid = row.fttypeid
  1474. this.table.temp.source = row.source
  1475. this.table.temp.remark = row.remark
  1476. this.table.temp.enable = row.enable
  1477. this.table.temp.ccname = this.table.temp.ccname
  1478. this.table.temp.fttype = this.table.temp.fttype
  1479. this.table.temp.pastureid = row.pastureid
  1480. this.table.temp.id = row.id
  1481. this.table.temp.cattle = row.cattle
  1482. if(this.table.temp.volume == ''){
  1483. this.table.temp.volume = 0
  1484. }
  1485. this.table.temp.volume = parseFloat(row.volume)
  1486. if (this.table.temp.tname == '' && this.table.temp.ccid == '' && this.table.temp.fttypeid == '') {
  1487. this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 })
  1488. return false
  1489. } else if (this.table.temp.ccid == '' && this.table.temp.fttypeid == '') {
  1490. this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 })
  1491. return false
  1492. } else if (this.table.temp.tname == '') {
  1493. this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 })
  1494. return false
  1495. } else if (this.table.temp.ccid == '') {
  1496. this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 })
  1497. return false
  1498. } else if (this.table.temp.fttypeid == '') {
  1499. this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 })
  1500. return false
  1501. }
  1502. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  1503. // if (pattern.test(this.table.temp.tname)) {
  1504. // this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 })
  1505. // return false
  1506. // }
  1507. if (pattern.test(this.table.temp.tcode)) {
  1508. this.$message({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
  1509. return false
  1510. }
  1511. console.log(this.table.temp)
  1512. this.isokDisable = true
  1513. setTimeout(() => {
  1514. this.isokDisable = false
  1515. }, 1000)
  1516. this.requestParam2 = {}
  1517. this.requestParam2.name = 'checkNumber'
  1518. this.requestParam2.parammaps = {}
  1519. this.requestParam2.parammaps.number = this.table.temp.tcode
  1520. GetDataByName(this.requestParam2).then(response => {
  1521. console.log('table数据', response.data.list)
  1522. if (response.data.list[0].vmsg !== '输入非法字符') {
  1523. this.saveUpdateData()
  1524. } else {
  1525. this.$notify({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
  1526. }
  1527. })
  1528. },
  1529. saveUpdateData() {
  1530. this.requestParam = {}
  1531. this.requestParam.name = 'updateFT'
  1532. this.requestParam.parammaps = this.table.temp
  1533. PostDataByName(this.requestParam).then(response => {
  1534. console.log('新增保存发送参数', this.requestParam)
  1535. if (response.msg !== 'fail') {
  1536. this.requestParam3 = {}
  1537. this.requestParam3.name = 'insertFTHistory'
  1538. this.requestParam3.type = 'e'
  1539. this.requestParam3.parammaps = {}
  1540. this.requestParam3.parammaps.id = this.table.temp.id
  1541. this.requestParam3.parammaps.createdate = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
  1542. this.requestParam3.parammaps.userId = Cookies.get('employeid')
  1543. PostDataByName(this.requestParam3).then(response => {
  1544. console.log('新增保存发送参数', this.requestParam)
  1545. if (response.msg !== 'fail') {
  1546. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1547. this.getList()
  1548. } else {
  1549. const isRepeat = new RegExp('Duplicate entry :feedtemplet.tCode')
  1550. if (isRepeat.test(response.data)) {
  1551. this.$notify({ type: 'error', message: '配方编码不可重复,请重新录入', duration: 2000 })
  1552. } else {
  1553. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1554. }
  1555. }
  1556. })
  1557. } else {
  1558. const isRepeat = new RegExp('Duplicate entry :feedtemplet.tCode')
  1559. if (isRepeat.test(response.data)) {
  1560. this.$notify({ type: 'error', message: '配方编码不可重复,请重新录入', duration: 2000 })
  1561. } else {
  1562. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1563. }
  1564. }
  1565. })
  1566. },
  1567. updateCancel(row) {
  1568. console.log('点击了编辑取消')
  1569. // 编辑false,不可编辑true
  1570. row.Edit = false
  1571. row.NoEdit = true
  1572. // 新增false,编辑true,编辑保存false
  1573. row.isCreate = false
  1574. row.isUpdate = true
  1575. row.isUpdateSave = false
  1576. this.getList()
  1577. },
  1578. // 删除
  1579. handleRowDelete(row) {
  1580. console.log('点击了行内删除')
  1581. MessageBox.confirm('是否确认删除此信息?', {
  1582. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1583. }).then(() => {
  1584. this.requestParam.common = { 'returnmap': '0' }
  1585. this.requestParam.data = []
  1586. this.requestParam.data[0] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
  1587. pastureid: row.pastureid,
  1588. id: row.id
  1589. }}
  1590. this.requestParam.data[1] = { 'name': 'deleteFT', 'type': 'e', 'parammaps': {
  1591. pastureid: row.pastureid,
  1592. id: row.id
  1593. }}
  1594. ExecDataByConfig(this.requestParam).then(response => {
  1595. console.log('新增保存发送参数', this.requestParam)
  1596. if (response.msg === 'fail') {
  1597. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  1598. } else {
  1599. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  1600. this.getList()
  1601. this.isDetail = false
  1602. }
  1603. })
  1604. }).catch(() => {
  1605. this.$message({ type: 'info', message: '已取消删除' })
  1606. })
  1607. },
  1608. handleSelectionChange(val) {
  1609. console.log('勾选数据', val)
  1610. this.selectList = val
  1611. },
  1612. form_delete() {
  1613. console.log('点击了删除')
  1614. if (this.selectList.length == 0) {
  1615. this.$message({ type: 'error', message: '请选择配方', duration: 2000 })
  1616. } else {
  1617. MessageBox.confirm('是否确认删除此信息?', {
  1618. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1619. }).then(() => {
  1620. console.log(this.selectList)
  1621. this.requestParam.common = { 'returnmap': '0' }
  1622. this.requestParam.data = []
  1623. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  1624. this.requestParam.data[0].children = []
  1625. this.requestParam.data[0].children[0] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
  1626. id: '@insertSpotList.id',
  1627. pastureid: '@insertSpotList.pastureid'
  1628. }}
  1629. this.requestParam.data[0].children[1] = { 'name': 'deleteFT', 'type': 'e', 'parammaps': {
  1630. id: '@insertSpotList.id',
  1631. pastureid: '@insertSpotList.pastureid'
  1632. }}
  1633. ExecDataByConfig(this.requestParam).then(response => {
  1634. console.log('删除保存发送参数', this.requestParam)
  1635. if (response.msg === 'fail') {
  1636. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  1637. } else {
  1638. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  1639. this.getList()
  1640. }
  1641. })
  1642. })
  1643. }
  1644. },
  1645. // 复制
  1646. handleCopy() {
  1647. if (this.selectList.length == 0) {
  1648. this.$message({ type: 'error', message: '请选择配方', duration: 2000 })
  1649. } else {
  1650. MessageBox.confirm('是否确认复制此信息?', {
  1651. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1652. }).then(() => {
  1653. console.log(this.selectList)
  1654. this.requestParam.common = { 'returnmap': '0' }
  1655. this.requestParam.data = []
  1656. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  1657. this.requestParam.data[0].children = []
  1658. this.requestParam.data[0].children[0] = { 'name': 'copyFT', 'type': 'e', 'parammaps': {
  1659. ftid: '@insertSpotList.id',
  1660. pastureid: '@insertSpotList.pastureid'
  1661. }}
  1662. ExecDataByConfig(this.requestParam).then(response => {
  1663. console.log('复制保存发送参数', this.requestParam)
  1664. if (response.msg === 'fail') {
  1665. this.$notify({ title: '复制失败', message: response.data, type: 'warning', duration: 2000 })
  1666. } else {
  1667. this.$notify({ title: '', message: '复制成功', type: 'success', duration: 2000 })
  1668. this.getList()
  1669. }
  1670. })
  1671. })
  1672. }
  1673. },
  1674. // 配方记录
  1675. handleRecipeRecord() {
  1676. console.log('点击了配方记录')
  1677. this.template.dialogStatus = 'RecipeRecord'
  1678. this.dialogFull = false
  1679. this.template.dialogFormVisible = true
  1680. this.template.table.getdataListParm.parammaps.ccname = ''
  1681. this.template.table.getdataListParm.parammaps.fttype = ''
  1682. this.template.table.getdataListParm.parammaps.enable = ''
  1683. this.template.table.getdataListParm.parammaps.tname = ''
  1684. this.template.table.getdataListParm.parammaps.remark = ''
  1685. this.template.table.getdataListParm.parammaps.source = ''
  1686. this.template.table.getdataListParm.offset = 1
  1687. this.getDateList()
  1688. this.isDetailDialog = false
  1689. this.myheight2 = document.documentElement.clientHeight - 85 - 265
  1690. },
  1691. // 历史时间
  1692. getDateList() {
  1693. GetDataByName(this.template.getdataDateParm).then(response => {
  1694. console.log('table数据', response.data.list)
  1695. if (response.data.list !== null) {
  1696. this.template.table.getdataListParm.parammaps.date = response.data.list[0].maxdate
  1697. this.getTemplateDialogList()
  1698. } else {
  1699. this.template.table.getdataListParm.parammaps.date = ''
  1700. }
  1701. })
  1702. },
  1703. // 配方记录-模板
  1704. getTemplateDialogList() {
  1705. this.template.table.listLoading = true
  1706. GetDataByName(this.template.table.getdataListParm).then(response => {
  1707. console.log('table数据', response.data.list)
  1708. if (response.data.list !== null) {
  1709. this.template.table.list = response.data.list
  1710. this.template.table.pageNum = response.data.pageNum
  1711. this.template.table.pageSize = response.data.pageSize
  1712. this.template.table.total = response.data.total
  1713. } else {
  1714. this.template.table.list = []
  1715. this.template.table2.list = []
  1716. }
  1717. setTimeout(() => {
  1718. this.template.table.listLoading = false
  1719. }, 100)
  1720. })
  1721. },
  1722. handleDialogSearch() {
  1723. this.template.table.getdataListParm.offset = 1
  1724. this.getTemplateDialogList()
  1725. this.arrowDown = true
  1726. this.arrowUp = false
  1727. },
  1728. handleDialogRefresh() {
  1729. this.template.table.getdataListParm.parammaps.ccname = ''
  1730. this.template.table.getdataListParm.parammaps.fttype = ''
  1731. this.template.table.getdataListParm.parammaps.enable = ''
  1732. this.template.table.getdataListParm.parammaps.tname = ''
  1733. this.template.table.getdataListParm.parammaps.remark = ''
  1734. this.template.table.getdataListParm.parammaps.source = ''
  1735. this.template.table.getdataListParm.offset = 1
  1736. this.getTemplateDialogList()
  1737. },
  1738. // 配方记录-模板行点击
  1739. tableRowClickDialog(row, column, event) {
  1740. console.log('配方记录-模板行点击')
  1741. this.isDetailDialog = true
  1742. this.template.table2.getdataListParm.parammaps.date = this.template.table.getdataListParm.parammaps.date
  1743. this.template.table2.getdataListParm.parammaps.version = row.version
  1744. this.template.table2.getdataListParm.parammaps.ftid = row.id
  1745. this.template.table2.getdataListParm.parammaps.dryweight = row.dryweight
  1746. this.myheight2 = document.documentElement.clientHeight - 85 - 265 - 185
  1747. this.getDialogList()
  1748. this.getDownList()
  1749. // aiaiaiai
  1750. },
  1751. getDialogList() {
  1752. this.template.table2.listLoading = true
  1753. GetDataByName(this.template.table2.getdataListParm).then(response => {
  1754. console.log('table数据', response.data.list)
  1755. if (response.data.list !== null) {
  1756. this.template.table2.list = response.data.list
  1757. this.template.table2.pageNum = response.data.pageNum
  1758. this.template.table2.pageSize = response.data.pageSize
  1759. this.template.table2.total = response.data.total
  1760. } else {
  1761. this.template.table2.list = []
  1762. }
  1763. this.$nextTick(function() {
  1764. document.querySelector('#detailDialog2').scrollIntoView()
  1765. // window.scrollTo({
  1766. // 'top': this.$refs.detailDialog2.clientHeight
  1767. // })
  1768. })
  1769. setTimeout(() => {
  1770. this.template.table2.listLoading = false
  1771. }, 100)
  1772. })
  1773. },
  1774. handleDialogSearch2() {
  1775. console.log('点击了查询')
  1776. this.arrowDown2 = true
  1777. this.arrowUp2 = false
  1778. this.template.table2.getdataListParm.offset = 1
  1779. this.getDialogList2()
  1780. },
  1781. handleDialogRefresh2() {
  1782. console.log('点击了重置')
  1783. this.template.table2.getdataListParm.parammaps.fname = ''
  1784. this.template.table2.getdataListParm.parammaps.feedgroup = ''
  1785. this.template.table2.getdataListParm.parammaps.fweight = ''
  1786. this.template.table2.getdataListParm.parammaps.autosecondname = ''
  1787. this.template.table2.getdataListParm.parammaps.islockcount = '0'
  1788. this.template.table2.getdataListParm.parammaps.sort = ''
  1789. this.template.table2.getdataListParm.offset = 1
  1790. this.getDialogList2()
  1791. },
  1792. getDialogList2() {
  1793. this.template.table2.listLoading = true
  1794. GetDataByName(this.template.table2.getdataListParm).then(response => {
  1795. console.log('table数据', response.data.list)
  1796. if (response.data.list !== null) {
  1797. this.template.table2.list = response.data.list
  1798. this.template.table2.pageNum = response.data.pageNum
  1799. this.template.table2.pageSize = response.data.pageSize
  1800. this.template.table2.total = response.data.total
  1801. } else {
  1802. this.template.table2.list = []
  1803. }
  1804. this.$nextTick(function() {
  1805. window.scrollTo({
  1806. 'top': this.$refs.templateDialog.clientHeight
  1807. })
  1808. })
  1809. setTimeout(() => {
  1810. this.template.table2.listLoading = false
  1811. }, 100)
  1812. })
  1813. },
  1814. // 导出
  1815. handleExport(item) {
  1816. if (item == 1) {
  1817. console.log('点击了导出模板')
  1818. const requestParam = this.requestParam
  1819. const url = Cookies.get('url') + 'file/导入导出模板/配方计划/配方模板导入模板.xlsx' // 请求下载文件的地址
  1820. console.log(url)
  1821. axios({
  1822. method: 'GET',
  1823. url: url,
  1824. data: requestParam,
  1825. headers: { token: getToken(), optname: 'insertcustomdoc' },
  1826. responseType: 'blob'
  1827. }).then(res => {
  1828. if (!res) return
  1829. this.percentage = 99
  1830. setTimeout(() => {
  1831. this.isPercentage = false
  1832. }, 2000)
  1833. const blob = new Blob([res.data], {
  1834. type: 'application/octet-stream;charset=utf-8'
  1835. })
  1836. const url = window.URL.createObjectURL(blob)
  1837. const aLink = document.createElement('a')
  1838. aLink.style.display = 'none'
  1839. aLink.href = url
  1840. const docname = '配方模板导入模板.xlsx'
  1841. aLink.setAttribute('download', docname) // 下载的文件
  1842. document.body.appendChild(aLink)
  1843. aLink.click()
  1844. document.body.removeChild(aLink)
  1845. window.URL.revokeObjectURL(url)
  1846. })
  1847. } else {
  1848. console.log('点击了导出数据')
  1849. this.download.getdataListParm.name = 'downloadFTList'
  1850. this.download.getdataListParm.parammaps = this.table.getdataListParm.parammaps
  1851. GetDataByName(this.download.getdataListParm).then(response => {
  1852. if (response.data.list !== null) {
  1853. for (let i = 0; i < response.data.list.length; i++) {
  1854. if (response.data.list[i].islockcount == 0) {
  1855. this.$set(response.data.list[i], 'islockcount', '否')
  1856. } else {
  1857. this.$set(response.data.list[i], 'islockcount', '是')
  1858. }
  1859. if (response.data.list[i].enable == 0) {
  1860. this.$set(response.data.list[i], 'enable', '否')
  1861. } else {
  1862. this.$set(response.data.list[i], 'enable', '是')
  1863. }
  1864. }
  1865. this.download.list = response.data.list
  1866. } else {
  1867. this.download.list = []
  1868. }
  1869. var excelDatas = [
  1870. {
  1871. tHeader: ['配方名称', '配方编码', '牲畜类别', '配方类型', '来源', '备注', '是否启用', '饲料组', '饲料名称', '重量(kg)', '搅拌延时(min)', '是否锁定牛头数比例', '顺序'],
  1872. filterVal: ['tname', 'tcode', 'ccname', 'fttype', 'source', 'remark', 'enable', 'feedgroup', 'fname', 'fweight', 'autosecond', 'islockcount', 'sort'],
  1873. tableDatas: this.download.list,
  1874. sheetName: 'Sheet1'
  1875. }
  1876. ]
  1877. json2excel(excelDatas, '配方模板', true, 'xlsx')
  1878. })
  1879. }
  1880. },
  1881. beforeImport(file) {
  1882. const isLt2M = file.size / 1024 / 1024 < 2
  1883. if (!isLt2M) {
  1884. this.$message.error('上传文件大小不能超过 2MB!')
  1885. }
  1886. return isLt2M
  1887. },
  1888. handleImportSuccess(res, file) {
  1889. this.getList()
  1890. if (res.msg === 'ok') {
  1891. this.$message({ title: '成功', message: '导入成功:' + res.data.success + '条!', type: 'success', duration: 2000 })
  1892. if (res.data.err_count > 0) {
  1893. this.$notify({ title: '失败', message: '导入失败:' + res.data.err_count + '条!', type: 'danger', duration: 2000 })
  1894. import('@/vendor/Export2Excel').then(excel => {
  1895. const list1 = res.data.result
  1896. const tHeader = [
  1897. '配方名称', '牲畜类别', '配方类型', '备注', '饲料组', '饲料名称', '重量(kg)', '搅拌延时(min)', '是否锁定牛头数比例', '错误信息'
  1898. ]
  1899. const filterVal = [
  1900. '配方名称', '牲畜类别', '配方类型', '备注', '饲料组', '饲料名称', '重量(kg)', '搅拌延时(min)', '是否锁定牛头数比例', 'error_msg'
  1901. ]
  1902. const data1 = this.formatJson(filterVal, list1)
  1903. excel.export_json_to_excel({ header: tHeader, data: data1, filename: '配方模板导入报错信息', autoWidth: true, bookType: 'xlsx' })
  1904. })
  1905. }
  1906. } else {
  1907. const isRepeat = new RegExp('Duplicate entry :feedtemplet_tname')
  1908. if (isRepeat.test(res.data)) {
  1909. this.$notify({ type: 'error', message: '配方名称不可重复,请重新录入', duration: 2000 })
  1910. return false
  1911. }
  1912. this.$notify({ title: '失败', message: '上传失败', type: 'danger', duration: 2000 })
  1913. }
  1914. },
  1915. formatJson(filterVal, jsonData) {
  1916. return jsonData.map(v =>
  1917. filterVal.map(j => {
  1918. if (j === 'timestamp') {
  1919. return parseTime(v[j])
  1920. } else {
  1921. return v[j]
  1922. }
  1923. })
  1924. )
  1925. },
  1926. changeDate() {
  1927. this.getTemplateDialogList()
  1928. },
  1929. // 应用
  1930. handleApplication() {
  1931. console.log('点击了应用')
  1932. MessageBox.confirm('是否确认将' + this.template.table.getdataListParm.parammaps.date + '的数据应用到当前?', {
  1933. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1934. }).then(() => {
  1935. this.requestParam.name = 'applyFTdate'
  1936. this.requestParam.parammaps = {}
  1937. this.requestParam.parammaps.pastureid = Cookies.get('pastureid')
  1938. this.requestParam.parammaps.date = this.template.table.getdataListParm.parammaps.date
  1939. PostDataByName(this.requestParam).then(response => {
  1940. if (response.msg === 'fail') {
  1941. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1942. } else {
  1943. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1944. this.getTemplateDialogList()
  1945. this.getList()
  1946. }
  1947. })
  1948. }).catch(() => {
  1949. this.$message({ type: 'info', message: '已取消应用' })
  1950. })
  1951. },
  1952. // 模板行点击
  1953. tableRowClick(row, column, event) {
  1954. for (let i = 0; i < this.table.list.length; i++) {
  1955. if (this.table.list[i].Edit == true) {
  1956. return false
  1957. }
  1958. }
  1959. if (this.isOrder == false) {
  1960. this.$message({ type: 'error', message: '请保存或取消当前更改顺序操作', duration: 2000 })
  1961. } else {
  1962. if (column.label !== '操作') {
  1963. this.isDetail = true // 点击行显示详情
  1964. this.table2.getdataListParm.parammaps.ftid = row.id
  1965. this.table2.getdataListParm.parammaps.fttypeid = row.fttypeid
  1966. this.table2.getdataListParm.parammaps.dryweight = row.dryweight
  1967. if (row.fttype == '预混配方') {
  1968. this.requestParams[2].parammaps.type = '1'
  1969. } else {
  1970. this.requestParams[2].parammaps.type = ''
  1971. }
  1972. this.myheight = document.documentElement.clientHeight - 85 - 265 - 185
  1973. this.getList2()
  1974. this.getDownList()
  1975. }
  1976. }
  1977. },
  1978. handleCloseTable2() {
  1979. this.isDetail = false
  1980. this.myheight = ''
  1981. this.isEnlarge = true
  1982. },
  1983. handleDialogCloseTable2() {
  1984. this.isDetailDialog = false
  1985. this.myheight2 = document.documentElement.clientHeight - 85 - 265
  1986. },
  1987. // -------------------详情-----------------------------
  1988. // 获取是否显示是否锁定牛头数
  1989. getIsLockCount() {
  1990. GetDataByName(this.lockCount.getdataListParm).then(response => {
  1991. console.log(response.data.list)
  1992. if (response.data.list[0].inforvalue == 0) {
  1993. this.lockCount.isLockCount = false
  1994. } else {
  1995. this.lockCount.isLockCount = true
  1996. }
  1997. })
  1998. },
  1999. // 详情
  2000. getList2() {
  2001. this.table2.listLoading = true
  2002. GetDataByName(this.table2.getdataListParm).then(response => {
  2003. console.log('table数据', response.data.list)
  2004. if (response.data.list !== null) {
  2005. for (let i = 0; i < response.data.list.length; i++) {
  2006. this.$set(response.data.list[i], 'Edit', false) // 编辑
  2007. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  2008. this.$set(response.data.list[i], 'groupEdit', false) // 饲料组编辑
  2009. this.$set(response.data.list[i], 'isGroupDisabled', false) // 饲料组编辑禁止编辑
  2010. this.$set(response.data.list[i], 'groupNoEdit', true) // 饲料组不可编辑
  2011. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  2012. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  2013. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  2014. }
  2015. this.table2.getDryweightParm.parammaps = this.table2.getdataListParm.parammaps
  2016. this.getDryWeight()
  2017. // for (let i = 0; i < response.data.list.length; i++) {
  2018. // console.log(response.data.list[i].fweight, '===12333')
  2019. // }
  2020. this.table2.list = response.data.list
  2021. this.table2.pageNum = response.data.pageNum
  2022. this.table2.pageSize = response.data.pageSize
  2023. this.table2.total = response.data.total
  2024. } else {
  2025. this.table2.list = []
  2026. }
  2027. setTimeout(() => {
  2028. this.table2.listLoading = false
  2029. }, 100)
  2030. })
  2031. },
  2032. // 行拖拽
  2033. rowDrop() {
  2034. console.log(document.querySelector('#table2 .el-table__body-wrapper tbody'))
  2035. const tbody = document.querySelector('#table2 .el-table__body-wrapper tbody')
  2036. // this.sorTable()
  2037. const that = this
  2038. // Sortable.create(tbody, {
  2039. var sortable = Sortable.create(tbody, {
  2040. disabled: that.dropState,
  2041. onChoose({ newIndex, oldIndex }) {
  2042. console.log(that.isOrder, 'that.isOrder == false')
  2043. console.log(that.dropState, 'that.dropState')
  2044. if (that.dropState == true || that.isOrder == true) {
  2045. sortable.destroy()
  2046. }
  2047. },
  2048. onEnd({ newIndex, oldIndex }) {
  2049. const currRow = that.table2.list.splice(oldIndex, 1)[0]
  2050. that.table2.list.splice(newIndex, 0, currRow)
  2051. console.log('索引', newIndex)
  2052. console.log('拖动数据', currRow)
  2053. console.log('上', that.table2.list[newIndex - 1])
  2054. console.log('下', that.table2.list[newIndex + 1])
  2055. if (that.table2.list[newIndex - 1] === undefined) { // 拖动至最上方无值 // 顺序等于0,其他+1 // 饲料组等于饲料名称
  2056. for (let i = 0; i < that.table2.list.length; i++) {
  2057. that.table2.list[i].sort = parseInt(that.table2.list[i].sort) + 1 // 其他的顺序+1
  2058. }
  2059. currRow.sort = 0
  2060. currRow.feedgroup = currRow.fname
  2061. console.log('拖动至最上方无值')
  2062. } else if (currRow.sort == that.table2.list[newIndex - 1].sort) { // 拖动值顺序等于上值顺序
  2063. currRow.sort = that.table2.list[newIndex - 1].sort
  2064. console.log('拖动值顺序等于上值顺序')
  2065. } else if (that.table2.list[newIndex + 1] == undefined) { // 拖动至最下方无值 // 顺序等于上方顺序+1 // 饲料组等于饲料名称
  2066. currRow.sort = parseInt(that.table2.list[newIndex - 1].sort) + 1
  2067. currRow.feedgroup = currRow.fname
  2068. console.log('拖动至最下方无值')
  2069. } else if (currRow.sort == that.table2.list[newIndex + 1].sort) { // 拖动值顺序等于下值顺序
  2070. currRow.sort == that.table2.list[newIndex + 1].sort
  2071. console.log('拖动值顺序等于下值顺序')
  2072. } else if (that.table2.list[newIndex - 1].sort == that.table2.list[newIndex + 1].sort) { // 拖动至上下顺序一致,顺序/饲料组与上下保持一致
  2073. currRow.sort = that.table2.list[newIndex - 1].sort
  2074. currRow.feedgroup = that.table2.list[newIndex - 1].feedgroup
  2075. console.log('拖动至上下顺序一致')
  2076. } else if (that.table2.list[newIndex - 1].sort !== undefined && that.table2.list[newIndex + 1].sort !== undefined) { // 拖动至上下都有值
  2077. console.log('上下')
  2078. if (parseInt(that.table2.list[newIndex - 1].sort) + 1 == that.table2.list[newIndex + 1].sort) {
  2079. console.log(newIndex)
  2080. for (let i = newIndex; i < that.table2.list.length; i++) {
  2081. that.table2.list[i].sort = parseInt(that.table2.list[i].sort) + 1
  2082. }
  2083. }
  2084. currRow.sort = parseInt(that.table2.list[newIndex - 1].sort) + 1
  2085. currRow.feedgroup = currRow.fname
  2086. console.log(that.table2.list[newIndex + 1].sort)
  2087. }
  2088. }
  2089. })
  2090. console.log(sortable.option('disabled'))
  2091. },
  2092. handleChangeOrder() {
  2093. this.isOrder = false
  2094. this.rowDrop()
  2095. },
  2096. saveChangeOrder() {
  2097. // 保存顺序
  2098. console.log(this.table2.list)
  2099. this.requestParam = {}
  2100. this.requestParam.common = { 'returnmap': '0' }
  2101. this.requestParam.data = []
  2102. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.table2.list }}
  2103. this.requestParam.data[0].children = []
  2104. this.requestParam.data[0].children[0] = { 'name': 'updateFTdetailSort', 'type': 'e', 'parammaps': {
  2105. id: '@insertSpotList.id',
  2106. pastureid: '@insertSpotList.pastureid',
  2107. sort: '@insertSpotList.sort',
  2108. feedgroup: '@insertSpotList.feedgroup'
  2109. }}
  2110. ExecDataByConfig(this.requestParam).then(response => {
  2111. console.log('顺序切换保存发送参数', this.requestParam)
  2112. if (response.msg === 'fail') {
  2113. this.$notify({ title: '顺序切换失败', message: response.data, type: 'warning', duration: 2000 })
  2114. } else {
  2115. this.$notify({ title: '', message: '顺序切换成功', type: 'success', duration: 2000 })
  2116. this.getList2()
  2117. this.getList3()
  2118. this.isOrder = true
  2119. }
  2120. })
  2121. },
  2122. cancelChangeOrder() {
  2123. // 取消顺序
  2124. this.getList2()
  2125. this.isOrder = true
  2126. },
  2127. form_search2() {
  2128. console.log('点击了查询')
  2129. this.arrowDown2 = true
  2130. this.arrowUp2 = false
  2131. this.table2.getdataListParm.offset = 1
  2132. // fname, feedgroup, fweight, autosecondname, islockcount, sort
  2133. // this.table2.getdataListParm.parammaps.all = this.table2.getdataListParm.parammaps.fname + ' ' + this.table2.getdataListParm.parammaps.feedgroup + ' ' + this.table2.getdataListParm.parammaps.fweight + ' ' + this.table2.getdataListParm.parammaps.autosecondname + ' ' + this.table2.getdataListParm.parammaps.islockcount + ' ' + this.table2.getdataListParm.parammaps.sort
  2134. this.table2.getdataListParm.parammaps.all = ''
  2135. var obj = {}
  2136. obj.fname = this.table2.getdataListParm.parammaps.fname
  2137. obj.feedgroup = this.table2.getdataListParm.parammaps.feedgroup
  2138. obj.fweight = this.table2.getdataListParm.parammaps.fweight
  2139. obj.autosecondname = this.table2.getdataListParm.parammaps.autosecondname
  2140. if (this.table2.getdataListParm.parammaps.islockcount !== '') {
  2141. if (this.table2.getdataListParm.parammaps.islockcount == 0) {
  2142. this.table2.getdataListParm.parammaps.islockcount = '否'
  2143. } else {
  2144. this.table2.getdataListParm.parammaps.islockcount = '是'
  2145. }
  2146. }
  2147. obj.islockcount = this.table2.getdataListParm.parammaps.islockcount
  2148. obj.sort = this.table2.getdataListParm.parammaps.sort
  2149. Object.getOwnPropertyNames(obj).forEach((key) => {
  2150. console.log(key, obj[key])
  2151. if (obj[key] !== '') {
  2152. this.table2.getdataListParm.parammaps.all += obj[key] + '/'
  2153. }
  2154. })
  2155. if (this.table2.getdataListParm.parammaps.all.charAt(this.table2.getdataListParm.parammaps.all.length - 1) == '/') {
  2156. this.table2.getdataListParm.parammaps.all = this.table2.getdataListParm.parammaps.all.slice(0, this.table2.getdataListParm.parammaps.all.length - 1)
  2157. }
  2158. this.getList2()
  2159. },
  2160. handleRefresh2() {
  2161. console.log('点击了重置')
  2162. this.table2.getdataListParm.parammaps.fname = ''
  2163. this.table2.getdataListParm.parammaps.feedgroup = ''
  2164. this.table2.getdataListParm.parammaps.fweight = ''
  2165. this.table2.getdataListParm.parammaps.autosecondname = ''
  2166. this.table2.getdataListParm.parammaps.islockcount = '0'
  2167. this.table2.getdataListParm.parammaps.sort = ''
  2168. this.table2.getdataListParm.parammaps.all = ''
  2169. this.table2.getdataListParm.offset = 1
  2170. this.getList2()
  2171. },
  2172. // 详情新增
  2173. handleCreate2() {
  2174. console.log('点击了详情新增', this.table2.list)
  2175. // 编辑true/不可编辑false
  2176. // 新增操true,编辑false,编辑保存false
  2177. console.log(11)
  2178. for (let i = 0; i < this.table2.list.length; i++) {
  2179. if (this.table2.list[i].Edit === true) {
  2180. console.log(123)
  2181. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  2182. return false
  2183. }
  2184. }
  2185. console.log(this.table2.list)
  2186. if (this.table2.list.length == 0) {
  2187. var mysort = 0
  2188. } else {
  2189. var mysort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1
  2190. }
  2191. this.table2.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'groupEdit': false, 'groupNoEdit': true, 'enable': 1, 'feedgroup': '', 'fid': '', 'fname': '', 'fweight': '', 'autosecond': '0','deviation':'0','islockcount': '0', 'sort': mysort })
  2192. console.log(this.table2.list)
  2193. },
  2194. changeFname(item, row) {
  2195. console.log(item, row)
  2196. this.table2.temp.fname = this.feedNameList.find(obj => obj.id == item).fname
  2197. row.fname = this.feedNameList.find(obj => obj.id == item).fname
  2198. if (this.feedNameList.find(obj => obj.id == item).ispreft == '0') {
  2199. this.table2.temp.preftid = '0'
  2200. } else {
  2201. this.table2.temp.preftid = item
  2202. }
  2203. if (row.sort == '') {
  2204. row.feedgroup = this.table2.temp.fname
  2205. } else {
  2206. if (row.isCreate == true) { // 新增状态下
  2207. for (let i = 1; i < this.table2.list.length; i++) {
  2208. if (this.table2.list[i].sort == row.sort) {
  2209. console.log(this.table2.list[i])
  2210. row.feedgroup = this.table2.list[i].feedgroup
  2211. break
  2212. } else {
  2213. row.feedgroup = this.table2.temp.fname
  2214. }
  2215. }
  2216. } else if (row.isUpdateSave == true) { // 编辑状态下
  2217. var Arr = []
  2218. for (let i = 0; i < this.table2.list.length; i++) {
  2219. Arr.push(this.table2.list[i].sort)
  2220. }
  2221. var Count = 0
  2222. for (let i = 0; i < Arr.length; i++) {
  2223. if (Arr[i] == row.sort) {
  2224. Count++
  2225. }
  2226. }
  2227. for (let i = 0; i < this.table2.list.length; i++) {
  2228. if (Count > 1) {
  2229. row.feedgroup = this.table2.list[i].feedgroup
  2230. console.log(this.table2.list[i].feedgroup)
  2231. break
  2232. } else if (Count == 1) {
  2233. row.feedgroup = this.table2.temp.fname
  2234. console.log(222, this.table2.temp.fname)
  2235. }
  2236. }
  2237. }
  2238. }
  2239. },
  2240. bort(row) {
  2241. if (row.isCreate == true) {
  2242. if (row.sort !== '') {
  2243. for (let i = 1; i < this.table2.list.length; i++) {
  2244. if (this.table2.list[i].sort == parseInt(row.sort)) {
  2245. row.feedgroup = this.table2.list[i].feedgroup
  2246. return false
  2247. } else {
  2248. row.feedgroup = row.fname
  2249. }
  2250. }
  2251. } else {
  2252. row.feedgroup = row.fname
  2253. }
  2254. } else if (row.isUpdateSave == true) {
  2255. if (row.sort !== '') {
  2256. for (let i = 0; i < this.table2.list.length; i++) {
  2257. if (this.table2.list[i].sort == row.sort) {
  2258. console.log('失去焦点,行内顺序与表格某顺序相同时', this.table2.list[i])
  2259. if (this.table2.list[i].id !== row.id) {
  2260. row.isGroupDisabled = true
  2261. row.feedgroup = this.table2.list[i].feedgroup
  2262. break
  2263. }
  2264. } else {
  2265. console.log('失去焦点,行内顺序与表格某顺序不相同时')
  2266. row.isGroupDisabled = true
  2267. row.feedgroup = row.fname
  2268. }
  2269. }
  2270. } else {
  2271. row.feedgroup = row.fname
  2272. }
  2273. }
  2274. },
  2275. createData2(row) {
  2276. console.log('点击了详情新增保存1', row)
  2277. this.table2.temp.pastureid = Cookies.get('pastureid')
  2278. this.table2.temp.ftid = this.table2.getdataListParm.parammaps.ftid
  2279. this.table2.temp.fid = row.fid
  2280. this.table2.temp.fname = this.table2.temp.fname
  2281. this.table2.temp.fweight = row.fweight
  2282. this.table2.temp.islockcount = row.islockcount
  2283. this.table2.temp.sort = row.sort
  2284. this.table2.temp.feedgroup = row.feedgroup
  2285. this.table2.temp.preftid = this.table2.temp.preftid
  2286. this.table2.temp.autosecond = row.autosecond
  2287. this.table2.temp.deviation = row.deviation
  2288. if (this.table2.temp.fid === '' && this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2289. this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
  2290. return false
  2291. } else if (this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2292. this.$message({ type: 'error', message: '重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
  2293. return false
  2294. } else if (this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2295. this.$message({ type: 'error', message: '搅拌延时/允许延时偏差不能为空', duration: 2000 })
  2296. return false
  2297. }else if (this.table2.temp.fid === '') {
  2298. this.$message({ type: 'error', message: '饲料名称不能为空', duration: 2000 })
  2299. return false
  2300. } else if (this.table2.temp.fweight === '') {
  2301. this.$message({ type: 'error', message: '重量不能为空', duration: 2000 })
  2302. return false
  2303. } else if (this.table2.temp.autosecond === '') {
  2304. this.$message({ type: 'error', message: '搅拌延时不能为空', duration: 2000 })
  2305. return false
  2306. } else if (this.table2.temp.deviation === '') {
  2307. this.$message({ type: 'error', message: '允许延时偏差不能为空', duration: 2000 })
  2308. return false
  2309. }
  2310. if(parseFloat(this.table2.temp.deviation) > parseFloat(this.table2.temp.autosecond)){
  2311. this.$message({ type: 'error', message: '允许延时偏差不可超出搅拌延时', duration: 2000 })
  2312. return false
  2313. }
  2314. if (this.table2.temp.sort !== '') {
  2315. this.table2.temp.sort = this.table2.temp.sort
  2316. } else {
  2317. console.log(this.table2.list.length)
  2318. if (this.table2.list.length == 1) {
  2319. this.table2.temp.sort = 0
  2320. } else {
  2321. this.table2.temp.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1
  2322. row.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1
  2323. }
  2324. }
  2325. if (this.table2.getdataListParm.parammaps.fttypeid == 2) {
  2326. if (parseInt(this.table2.temp.preftid) > 0) {
  2327. this.$message({ type: 'error', message: '饲料名称不能选择预混配方', duration: 2000 })
  2328. return false
  2329. }
  2330. }
  2331. // 校验顺序是否>=0
  2332. var ruleSort = /^\d+$/
  2333. if (!ruleSort.test(this.table2.temp.sort)) {
  2334. this.$message({ type: 'error', message: '饲料顺序不可为负数或小数', duration: 2000 })
  2335. return false
  2336. }
  2337. // 检验重量>0
  2338. this.table2.temp.fweight = formatNum(this.table2.temp.fweight, 4) // 根据默认参数设置小数位数
  2339. row.fweight = formatNum(row.fweight, 4)
  2340. // return
  2341. // var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/
  2342. if (this.table2.temp.fweight == 0) {
  2343. this.$message({ type: 'error', message: '重量请输入正数,最多保留四位小数', duration: 2000 })
  2344. return false
  2345. }
  2346. this.isokDisable = true
  2347. setTimeout(() => {
  2348. this.isokDisable = false
  2349. }, 1000)
  2350. let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
  2351. this.requestParam.common = { 'returnmap': '0' }
  2352. this.requestParam.createdate = dateTime
  2353. this.requestParam.userId = Cookies.get('employeid')
  2354. this.requestParam.data = []
  2355. this.requestParam.data[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': {
  2356. pastureid: this.table2.temp.pastureid,
  2357. ftid: this.table2.getdataListParm.parammaps.ftid,
  2358. fid: row.fid,
  2359. fname: this.table2.temp.fname,
  2360. fweight: String(row.fweight),
  2361. islockcount: row.islockcount,
  2362. sort: row.sort,
  2363. feedgroup: row.feedgroup,
  2364. preftid: this.table2.temp.preftid,
  2365. autosecond: row.autosecond,
  2366. deviation: row.deviation
  2367. }}
  2368. this.requestParam.data[1] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2369. pastureid: this.table2.temp.pastureid,
  2370. ftid: this.table2.getdataListParm.parammaps.ftid,
  2371. type: this.table2.getdataListParm.parammaps.fttypeid,
  2372. status: 0
  2373. }}
  2374. this.requestParam.data[2] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
  2375. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2376. id: this.table2.getdataListParm.parammaps.ftid
  2377. }}
  2378. this.requestParam.data[3] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
  2379. weight: row.fweight,
  2380. preftid: this.table2.temp.preftid,
  2381. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2382. ftid: this.table2.getdataListParm.parammaps.ftid,
  2383. dateTime: dateTime,
  2384. slid: 0,
  2385. fid: row.fid,
  2386. autosecond: row.autosecond,
  2387. userId: Cookies.get('employeid')
  2388. }}
  2389. this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
  2390. id:this.table2.getdataListParm.parammaps.ftid,
  2391. createdate:dateTime,
  2392. userId: Cookies.get('employeid')
  2393. }}
  2394. const url = 'authdata/ftdetail/edit'
  2395. const data = this.requestParam
  2396. postJson(url, data).then(response => {
  2397. if (response.msg !== 'fail') {
  2398. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  2399. this.getList2()
  2400. this.getList3()
  2401. } else {
  2402. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  2403. }
  2404. })
  2405. // ExecDataByConfig(this.requestParam).then(response => {
  2406. // console.log('新增保存发送参数', this.requestParam)
  2407. // if (response.msg !== 'fail') {
  2408. // this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  2409. // this.getList2()
  2410. // this.getList3()
  2411. // } else {
  2412. // this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  2413. // }
  2414. // })
  2415. },
  2416. createCancel2(row) {
  2417. console.log('点击了详情新增取消')
  2418. for (let i = 0; i < this.table2.list.length; i++) {
  2419. if (row.myId === this.table2.list[i].myId) {
  2420. var listIndex = this.table2.list.indexOf(this.table2.list[i])
  2421. }
  2422. if (listIndex > -1) {
  2423. this.table2.list.splice(listIndex, 1)
  2424. return
  2425. }
  2426. }
  2427. this.getDialogList()
  2428. },
  2429. // 详情编辑
  2430. handleUpdate2(row) {
  2431. console.log('详情编辑', row)
  2432. this.dropState = true
  2433. row.isGroupDisabled = false
  2434. row.islockcount = String(row.islockcount)
  2435. row.fid = String(row.fid)
  2436. // row.autosecond = String(row.autosecond)
  2437. row.autosecond = row.autosecond
  2438. row.deviation = row.deviation
  2439. this.table2.temp.fname = row.fname
  2440. this.table2.temp.preftid = row.preftid
  2441. const rowArr = []
  2442. for (let i = 0; i < this.table2.list.length; i++) {
  2443. if (this.table2.list[i].Edit == true) {
  2444. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  2445. return false
  2446. }
  2447. rowArr.push(this.table2.list[i].sort)
  2448. }
  2449. var count = 0
  2450. for (let i = 0; i < rowArr.length; i++) {
  2451. if (rowArr[i] == row.sort) {
  2452. count++
  2453. }
  2454. }
  2455. // 判断是否有相同顺序,如果没有饲料组不可编辑,若有饲料组可编辑
  2456. if (count == 1) {
  2457. // 饲料组编辑false,不可编辑true
  2458. row.groupEdit = false
  2459. row.groupNoEdit = true
  2460. // 编辑true,不可编辑false
  2461. row.Edit = true
  2462. row.NoEdit = false
  2463. // 新增false,编辑false,编辑保存true
  2464. row.isCreate = false
  2465. row.isUpdate = false
  2466. row.isUpdateSave = true
  2467. } else if (count > 1) {
  2468. // 饲料组编辑true,不可编辑false
  2469. row.groupEdit = true
  2470. row.groupNoEdit = false
  2471. console.log(222)
  2472. // 编辑true,不可编辑false
  2473. row.Edit = true
  2474. row.NoEdit = false
  2475. // 新增false,编辑false,编辑保存true
  2476. row.isCreate = false
  2477. row.isUpdate = false
  2478. row.isUpdateSave = true
  2479. return false
  2480. }
  2481. this.table2.updateList = Object.assign({}, row)
  2482. },
  2483. updateData2(row) {
  2484. console.log('点击了详情编辑保存', row)
  2485. this.isokDisable = true
  2486. setTimeout(() => {
  2487. this.isokDisable = false
  2488. }, 1000)
  2489. this.table2.temp.pastureid = row.pastureid
  2490. this.table2.temp.ftid = this.table2.getdataListParm.parammaps.ftid
  2491. this.table2.temp.fid = row.fid
  2492. this.table2.temp.fname = this.table2.temp.fname
  2493. this.table2.temp.fweight = row.fweight
  2494. this.table2.temp.islockcount = row.islockcount
  2495. this.table2.temp.sort = row.sort
  2496. this.table2.temp.feedgroup = row.feedgroup
  2497. this.table2.temp.preftid = this.table2.temp.preftid
  2498. this.table2.temp.autosecond = row.autosecond
  2499. this.table2.temp.deviation = row.deviation
  2500. this.table2.temp.id = row.id
  2501. console.log('this.table2.updateList', this.table2.updateList)
  2502. console.log('temp', this.table2.temp)
  2503. // var status = ''
  2504. // if (parseFloat(this.table2.temp.fweight) > parseFloat(this.table2.updateList.fweight)) {
  2505. // status = 0
  2506. // } else {
  2507. // status = 1
  2508. // }
  2509. if (this.table2.temp.fid === '' && this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2510. this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
  2511. return false
  2512. } else if (this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2513. this.$message({ type: 'error', message: '重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
  2514. return false
  2515. } else if (this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
  2516. this.$message({ type: 'error', message: '搅拌延时/允许延时偏差不能为空1=', duration: 2000 })
  2517. return false
  2518. }else if (this.table2.temp.fid === '') {
  2519. this.$message({ type: 'error', message: '饲料名称不能为空', duration: 2000 })
  2520. return false
  2521. } else if (this.table2.temp.fweight === '') {
  2522. this.$message({ type: 'error', message: '重量不能为空', duration: 2000 })
  2523. return false
  2524. } else if (this.table2.temp.autosecond === '') {
  2525. this.$message({ type: 'error', message: '搅拌延时不能为空', duration: 2000 })
  2526. return false
  2527. } else if (this.table2.temp.deviation === '') {
  2528. this.$message({ type: 'error', message: '允许延时偏差不能为空', duration: 2000 })
  2529. return false
  2530. }
  2531. if(parseFloat(this.table2.temp.deviation) > parseFloat(this.table2.temp.autosecond)){
  2532. this.$message({ type: 'error', message: '允许延时偏差不可超出搅拌延时', duration: 2000 })
  2533. return false
  2534. }
  2535. if (this.table2.temp.sort !== '') {
  2536. this.table2.temp.sort = this.table2.temp.sort
  2537. } else {
  2538. this.table2.temp.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1
  2539. }
  2540. if (this.table2.getdataListParm.parammaps.fttypeid == 2) {
  2541. if (parseInt(this.table2.temp.preftid) > 0) {
  2542. this.$message({ type: 'error', message: '饲料名称不能选择预混配方', duration: 2000 })
  2543. return false
  2544. }
  2545. }
  2546. // 校验顺序是否>=0
  2547. var ruleSort = /^\d+$/
  2548. if (!ruleSort.test(this.table2.temp.sort)) {
  2549. this.$message({ type: 'error', message: '饲料顺序不可为负数或小数', duration: 2000 })
  2550. return false
  2551. }
  2552. this.table2.temp.fweight = formatNum(this.table2.temp.fweight, 4) // 根据默认参数设置小数位数
  2553. row.fweight = formatNum(row.fweight, 4)
  2554. // 检验重量>0
  2555. // var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/
  2556. if (this.table2.temp.fweight == 0) {
  2557. this.$message({ type: 'error', message: '重量请输入正数,最多保留四位小数', duration: 2000 })
  2558. return false
  2559. }
  2560. console.log(row.fweight,'row.fweight')
  2561. let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
  2562. this.requestParam.common = { 'returnmap': '0' }
  2563. this.requestParam.createdate = dateTime
  2564. this.requestParam.userId = Cookies.get('employeid')
  2565. this.requestParam.data = []
  2566. this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
  2567. pastureid: row.pastureid,
  2568. ftid: this.table2.getdataListParm.parammaps.ftid,
  2569. weight: String(row.fweight),
  2570. preftid: this.table2.temp.preftid,
  2571. dateTime: dateTime,
  2572. slid: this.table2.temp.id,
  2573. fid: row.fid,
  2574. autosecond: row.autosecond,
  2575. userId: Cookies.get('employeid')
  2576. }}
  2577. this.requestParam.data[1] = { 'name': 'updateFTdetail', 'type': 'e', 'parammaps': {
  2578. pastureid: row.pastureid,
  2579. ftid: this.table2.getdataListParm.parammaps.ftid,
  2580. fid: row.fid,
  2581. fname: this.table2.temp.fname,
  2582. fweight: String(row.fweight),
  2583. islockcount: row.islockcount,
  2584. sort: row.sort,
  2585. feedgroup: row.feedgroup,
  2586. preftid: this.table2.temp.preftid,
  2587. autosecond: row.autosecond,
  2588. id: row.id,
  2589. deviation:row.deviation
  2590. }}
  2591. this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2592. pastureid: row.pastureid,
  2593. ftid: this.table2.getdataListParm.parammaps.ftid,
  2594. type: this.table2.getdataListParm.parammaps.fttypeid,
  2595. // status: status
  2596. }}
  2597. this.requestParam.data[3] = { 'name': 'updateFTdetailbySort', 'type': 'e', 'parammaps': {
  2598. pastureid: row.pastureid,
  2599. ftid: this.table2.getdataListParm.parammaps.ftid,
  2600. sort: row.sort,
  2601. feedgroup: row.feedgroup
  2602. }}
  2603. this.requestParam.data[4] = { 'name': 'updateFTdetailGroup', 'type': 'e', 'parammaps': {
  2604. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2605. ftid: this.table2.getdataListParm.parammaps.ftid
  2606. }}
  2607. this.requestParam.data[5] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
  2608. id:this.table2.getdataListParm.parammaps.ftid,
  2609. createdate:dateTime,
  2610. userId: Cookies.get('employeid')
  2611. }}
  2612. const url = 'authdata/ftdetail/edit'
  2613. const data = this.requestParam
  2614. postJson(url, data).then(response => {
  2615. if (response.msg !== 'fail') {
  2616. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  2617. this.getList2()
  2618. this.getList3()
  2619. this.dropState = false
  2620. } else {
  2621. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  2622. }
  2623. })
  2624. // ExecDataByConfig(this.requestParam).then(response => {
  2625. // console.log('新增保存发送参数', this.requestParam)
  2626. // if (response.msg !== 'fail') {
  2627. // this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  2628. // this.getList2()
  2629. // this.getList3()
  2630. // this.dropState = false
  2631. // } else {
  2632. // this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  2633. // }
  2634. // })
  2635. },
  2636. updateCancel2(row) {
  2637. console.log('点击了详情编辑取消')
  2638. // 饲料组编辑false,不可编辑true
  2639. row.groupEdit = false
  2640. row.groupNoEdit = true
  2641. // 编辑false,不可编辑true
  2642. row.Edit = false
  2643. row.NoEdit = true
  2644. // 新增false,编辑true,编辑保存false
  2645. row.isCreate = false
  2646. row.isUpdate = true
  2647. row.isUpdateSave = false
  2648. this.getList2()
  2649. this.dropState = false
  2650. },
  2651. // 详情删除
  2652. handleRowDelete2(row) {
  2653. console.log('点击了行内删除')
  2654. MessageBox.confirm('是否确认删除此信息?', {
  2655. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  2656. }).then(() => {
  2657. console.log(this.table2.list.length)
  2658. let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
  2659. if (this.table2.list.length > 1) {
  2660. this.requestParam.common = { 'returnmap': '0' }
  2661. this.requestParam.createdate = dateTime
  2662. this.requestParam.data = []
  2663. this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
  2664. pastureid: row.pastureid,
  2665. ftid: this.table2.getdataListParm.parammaps.ftid,
  2666. weight: 0,
  2667. preftid: row.preftid,
  2668. dateTime: dateTime,
  2669. slid: row.id,
  2670. fid: row.fid,
  2671. autosecond: row.autosecond,
  2672. userId: Cookies.get('employeid')
  2673. }}
  2674. this.requestParam.data[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  2675. pastureid: row.pastureid,
  2676. id: row.id
  2677. }}
  2678. this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2679. pastureid: row.pastureid,
  2680. ftid: this.table2.getdataListParm.parammaps.ftid,
  2681. type: this.table2.getdataListParm.parammaps.fttypeid,
  2682. status: 1
  2683. }}
  2684. this.requestParam.data[3] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
  2685. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2686. id: this.table2.getdataListParm.parammaps.ftid
  2687. }}
  2688. this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
  2689. id:this.table2.getdataListParm.parammaps.ftid,
  2690. createdate:dateTime,
  2691. userId: Cookies.get('employeid')
  2692. }}
  2693. } else {
  2694. this.requestParam.common = { 'returnmap': '0' }
  2695. this.requestParam.createdate = dateTime
  2696. this.requestParam.userId = Cookies.get('employeid')
  2697. this.requestParam.data = []
  2698. // this.requestParam.data[1] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
  2699. // pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2700. // id: this.table2.getdataListParm.parammaps.ftid
  2701. // }}
  2702. this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
  2703. pastureid: row.pastureid,
  2704. ftid: this.table2.getdataListParm.parammaps.ftid,
  2705. weight: 0,
  2706. preftid: row.preftid,
  2707. dateTime: dateTime,
  2708. slid: row.id,
  2709. fid: row.fid,
  2710. autosecond: row.autosecond,
  2711. userId: Cookies.get('employeid')
  2712. }}
  2713. this.requestParam.data[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  2714. pastureid: row.pastureid,
  2715. id: row.id
  2716. }}
  2717. this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2718. pastureid: row.pastureid,
  2719. ftid: this.table2.getdataListParm.parammaps.ftid,
  2720. type: this.table2.getdataListParm.parammaps.fttypeid,
  2721. status: 1
  2722. }}
  2723. this.requestParam.data[3] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
  2724. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2725. id: this.table2.getdataListParm.parammaps.ftid
  2726. }}
  2727. this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
  2728. id:this.table2.getdataListParm.parammaps.ftid,
  2729. createdate:dateTime,
  2730. userId: Cookies.get('employeid')
  2731. }}
  2732. }
  2733. const url = 'authdata/ftdetail/edit'
  2734. const data = this.requestParam
  2735. postJson(url, data).then(response => {
  2736. if (response.msg !== 'fail') {
  2737. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  2738. this.getList2()
  2739. this.getList3()
  2740. } else {
  2741. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  2742. }
  2743. })
  2744. // ExecDataByConfig(this.requestParam).then(response => {
  2745. // console.log('新增保存发送参数', this.requestParam)
  2746. // if (response.msg === 'fail') {
  2747. // this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  2748. // } else {
  2749. // this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  2750. // this.getList2()
  2751. // this.getList3()
  2752. // }
  2753. // })
  2754. }).catch(() => {
  2755. this.$message({ type: 'info', message: '已取消删除' })
  2756. })
  2757. },
  2758. handleSelectionChange2(val) {
  2759. console.log('勾选数据', val)
  2760. this.selectList2 = val
  2761. },
  2762. celldblclick(row, column, cell, event) {
  2763. console.log(row, '=====')
  2764. this.handleUpdate2(row)
  2765. },
  2766. form_delete2() {
  2767. console.log('点击了删除')
  2768. if (this.selectList2.length == 0) {
  2769. this.$message({ type: 'error', message: '请选择配方详情', duration: 2000 })
  2770. } else {
  2771. MessageBox.confirm('是否确认删除此信息?', {
  2772. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  2773. }).then(() => {
  2774. console.log(this.table2.list.length - this.selectList2.length)
  2775. let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
  2776. if (this.table2.list.length - this.selectList2.length > 0) {
  2777. this.requestParam.common = { 'returnmap': '0' }
  2778. this.requestParam.createdate = dateTime
  2779. this.requestParam.userId = Cookies.get('employeid')
  2780. this.requestParam.data = []
  2781. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList2 }}
  2782. this.requestParam.data[0].children = []
  2783. this.requestParam.data[0].children[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
  2784. pastureid: '@insertSpotList.pastureid',
  2785. ftid: '@insertSpotList.ftid',
  2786. weight: 0,
  2787. preftid: '@insertSpotList.preftid',
  2788. dateTime: dateTime,
  2789. slid: '@insertSpotList.id',
  2790. fid: '@insertSpotList.fid',
  2791. autosecond: '@insertSpotList.autosecond',
  2792. userId: Cookies.get('employeid')
  2793. }}
  2794. this.requestParam.data[0].children[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  2795. id: '@insertSpotList.id',
  2796. pastureid: '@insertSpotList.pastureid'
  2797. }}
  2798. this.requestParam.data[1] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
  2799. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2800. id: this.table2.getdataListParm.parammaps.ftid
  2801. }}
  2802. this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2803. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2804. ftid:this.table2.getdataListParm.parammaps.ftid,
  2805. type: this.table2.getdataListParm.parammaps.fttypeid,
  2806. status: 1
  2807. }}
  2808. this.requestParam.data[3] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
  2809. id:this.table2.getdataListParm.parammaps.ftid,
  2810. createdate:dateTime,
  2811. userId: Cookies.get('employeid')
  2812. }}
  2813. const url = 'authdata/ftdetail/edit'
  2814. const data = this.requestParam
  2815. postJson(url, data).then(response => {
  2816. if (response.msg !== 'fail') {
  2817. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  2818. this.getList2()
  2819. this.getList3()
  2820. } else {
  2821. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  2822. }
  2823. })
  2824. } else {
  2825. this.requestParam.common = { 'returnmap': '0' }
  2826. this.requestParam.data = []
  2827. // this.requestParam.data[0] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
  2828. // pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2829. // id: this.table2.getdataListParm.parammaps.ftid
  2830. // }}
  2831. // this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList2 }}
  2832. // this.requestParam.data[1].children = []
  2833. // this.requestParam.data[1].children[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  2834. // id: '@insertSpotList.id',
  2835. // pastureid: '@insertSpotList.pastureid'
  2836. // }}
  2837. this.requestParam.data[0] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
  2838. pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2839. id: this.table2.getdataListParm.parammaps.ftid
  2840. }}
  2841. // this.requestParam.data[3] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
  2842. // pastureid: this.table2.getdataListParm.parammaps.pastureid,
  2843. // ftid:this.table2.getdataListParm.parammaps.ftid,
  2844. // type: this.table2.getdataListParm.parammaps.fttypeid,
  2845. // status: 1
  2846. // }}
  2847. ExecDataByConfig(this.requestParam).then(response => {
  2848. console.log('删除保存发送参数', this.requestParam)
  2849. if (response.msg === 'fail') {
  2850. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  2851. } else {
  2852. const url = 'authdata/ftdetai/del'
  2853. const data = {}
  2854. data.parammaps = {}
  2855. data.parammaps.pastureid = this.table2.getdataListParm.parammaps.pastureid
  2856. data.parammaps.ftid = this.table2.getdataListParm.parammaps.ftid
  2857. data.parammaps.type = this.table2.getdataListParm.parammaps.fttypeid
  2858. postJson(url, data).then(response => {
  2859. if (response.msg !== 'fail') {
  2860. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  2861. this.getList2()
  2862. this.getList3()
  2863. } else {
  2864. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  2865. }
  2866. })
  2867. }
  2868. })
  2869. }
  2870. })
  2871. }
  2872. },
  2873. // 拆分预混料
  2874. handleSplitPremix(row) {
  2875. console.log('点击了拆分预混料')
  2876. MessageBox.confirm('是否确认拆分当前预混料?', {
  2877. confirmButtonText: '确认',
  2878. cancelButtonText: '取消',
  2879. type: 'warning'
  2880. }).then(() => {
  2881. this.requestParam.name = 'splitFTpre'
  2882. this.requestParam.parammaps = {}
  2883. this.requestParam.parammaps.ftid = this.table2.getdataListParm.parammaps.ftid
  2884. this.requestParam.parammaps.preftid = row.preftid
  2885. this.requestParam.parammaps.ftdid = row.id
  2886. this.requestParam.parammaps.pastureid = row.pastureid
  2887. this.requestParam.parammaps.feedgroup = row.feedgroup
  2888. this.requestParam.parammaps.sort = row.sort
  2889. this.requestParam.parammaps.fweight = row.fweight
  2890. PostDataByName(this.requestParam).then(response => {
  2891. if (response.msg === 'fail') {
  2892. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  2893. } else {
  2894. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  2895. this.getList2()
  2896. this.getList3()
  2897. }
  2898. })
  2899. }).catch(() => {
  2900. this.$message({
  2901. type: 'info',
  2902. message: '已取消删除'
  2903. })
  2904. })
  2905. },
  2906. // 合成预混料
  2907. handleSyntheticPremix() {
  2908. console.log('点击了合成预混料', this.selectList2)
  2909. this.dialogFull = false
  2910. if (this.table2.getdataListParm.parammaps.fttypeid == 2) {
  2911. this.$message({ type: 'error', message: '预混配方不可合成预混料', duration: 2000 })
  2912. return false
  2913. } else {
  2914. if (this.selectList2.length > 1) {
  2915. for (let i = 0; i < this.selectList2.length; i++) {
  2916. if (parseInt(this.selectList2[i].preftid) > 0) {
  2917. this.$message({ type: 'error', message: '不可选择预混料', duration: 2000 })
  2918. return false
  2919. }
  2920. }
  2921. if (this.selectList2[0].splitftpreid !== undefined) {
  2922. this.detail.getdataListParm.parammaps.ftid = this.selectList2[0].splitftpreid
  2923. this.detail.getdataListParm.parammaps.pastureid = this.selectList2[0].pastureid
  2924. GetDataByName(this.detail.getdataListParm).then(response => {
  2925. if (response.data.list !== null) { // 不为空时得到比对数据
  2926. this.detail.list3 = response.data.list
  2927. const sortList = [] // 声明排序数组
  2928. var fweightSum = 0 // 总重量
  2929. for (let i = 0; i < this.selectList2.length; i++) {
  2930. const obj = {}
  2931. obj.fid = this.selectList2[i].fid
  2932. obj.fweight = this.selectList2[i].fweight
  2933. fweightSum = fweightSum + parseFloat(this.selectList2[i].fweight)
  2934. sortList.push(obj)
  2935. }
  2936. // 排序
  2937. sortList.sort(function(a, b) {
  2938. return a.fid.localeCompare(b.fid)
  2939. })
  2940. var a = 0
  2941. if (this.detail.list3.length == sortList.length) {
  2942. for (let i = 0; i < this.detail.list3.length; i++) {
  2943. if (this.detail.list3[i].fid == sortList[i].fid && (this.detail.list3[i].fweight / this.detail.list3[i].sumWeight).toFixed(3) == (sortList[i].fweight / fweightSum).toFixed(3)) {
  2944. a++
  2945. }
  2946. }
  2947. if (a == this.detail.list3.length) { // 如果相等,则该配方为原预混配方
  2948. this.detail.getdataListParm2.parammaps.ftid = this.selectList2[0].splitftpreid
  2949. this.detail.getdataListParm2.parammaps.pastureid = this.selectList2[0].pastureid
  2950. GetDataByName(this.detail.getdataListParm2).then(response => {
  2951. if (response.data.list !== null) {
  2952. this.detail.dialogStatus = 'SyntheticPremix'
  2953. this.detail.dialogFormVisible = true
  2954. this.detail.list = this.selectList2
  2955. this.detail.list2 = response.data.list
  2956. this.detail.disabled = true
  2957. setTimeout(() => {
  2958. this.detail.listLoading = false
  2959. }, 100)
  2960. } else {
  2961. this.detail.list2 = []
  2962. }
  2963. })
  2964. } else {
  2965. this.detail.dialogStatus = 'SyntheticPremix'
  2966. this.detail.dialogFormVisible = true
  2967. this.detail.list = this.selectList2
  2968. this.detail.disabled = false
  2969. this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1,volume:'' }]
  2970. setTimeout(() => {
  2971. this.detail.listLoading = false
  2972. }, 100)
  2973. }
  2974. } else {
  2975. this.detail.dialogStatus = 'SyntheticPremix'
  2976. this.detail.dialogFormVisible = true
  2977. this.detail.list = this.selectList2
  2978. this.detail.disabled = false
  2979. this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1,volume:'' }]
  2980. setTimeout(() => {
  2981. this.detail.listLoading = false
  2982. }, 100)
  2983. }
  2984. } else {
  2985. this.detail.list3 = []
  2986. this.detail.dialogStatus = 'SyntheticPremix'
  2987. this.detail.dialogFormVisible = true
  2988. this.detail.list = this.selectList2
  2989. this.detail.disabled = false
  2990. this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1,volume:'' }]
  2991. setTimeout(() => {
  2992. this.detail.listLoading = false
  2993. }, 100)
  2994. }
  2995. })
  2996. } else {
  2997. this.detail.dialogStatus = 'SyntheticPremix'
  2998. this.detail.dialogFormVisible = true
  2999. this.detail.list = this.selectList2
  3000. this.detail.disabled = false
  3001. this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1,volume:'' }]
  3002. setTimeout(() => {
  3003. this.detail.listLoading = false
  3004. }, 100)
  3005. }
  3006. } else {
  3007. this.$message({ type: 'error', message: '请选择俩条及以上饲料进行合成', duration: 2000 })
  3008. return false
  3009. }
  3010. }
  3011. },
  3012. // 畜生类别
  3013. changeLivestockType2(item) {
  3014. this.detail.list2[0].ccname = this.livestockTypeList.find(obj => obj.value === item).label
  3015. },
  3016. syntheticPremixData() {
  3017. console.log('点击了合成预混料确认')
  3018. if (this.detail.disabled == true) { // 原预混料
  3019. let sumFweight = 0
  3020. for (let i = 0; i < this.detail.list.length; i++) {
  3021. sumFweight += parseFloat(this.detail.list[i].fweight)
  3022. }
  3023. sumFweight = sumFweight.toFixed(3)
  3024. this.isokDisable = true
  3025. setTimeout(() => {
  3026. this.isokDisable = false
  3027. }, 1000)
  3028. this.requestParam.common = { 'returnmap': '0' }
  3029. this.requestParam.data = []
  3030. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.detail.list }}
  3031. this.requestParam.data[0].children = []
  3032. this.requestParam.data[0].children[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  3033. pastureid: '@insertSpotList.pastureid',
  3034. id: '@insertSpotList.id'
  3035. }}
  3036. this.requestParam.data[1] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.detail.list2 }}
  3037. this.requestParam.data[1].children = []
  3038. this.requestParam.data[1].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': {
  3039. pastureid: Cookies.get('pastureid'),
  3040. ftid: this.table2.getdataListParm.parammaps.ftid,
  3041. fid: this.detail.list2[0].id,
  3042. fname: '@insertSpotList2.tname',
  3043. fweight: sumFweight,
  3044. islockcount: '0',
  3045. sort: parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1,
  3046. feedgroup: '@insertSpotList2.tname',
  3047. preftid: this.detail.list2[0].id,
  3048. autosecond: this.detail.list[0].autosecond
  3049. }}
  3050. ExecDataByConfig(this.requestParam).then(response => {
  3051. console.log('合成预混料保存发送参数', this.requestParam)
  3052. if (response.msg === 'fail') {
  3053. const tname = new RegExp("key 'tname'")
  3054. if (tname.test(response.data)) {
  3055. this.$message({ type: 'error', message: '预混配方已存在,不可重复生成', duration: 2000 })
  3056. } else {
  3057. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  3058. }
  3059. } else {
  3060. this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 })
  3061. this.detail.dialogFormVisible = false
  3062. this.getList3()
  3063. this.getList2()
  3064. this.getDownList()
  3065. }
  3066. })
  3067. } else { // 现生成预混料
  3068. if (this.detail.list2[0].tname == '' && this.detail.list2[0].ccid == '') {
  3069. this.$message({ type: 'error', message: '配方名称/牲畜类别/不能为空', duration: 2000 })
  3070. return false
  3071. } else if (this.detail.list2[0].tname == '') {
  3072. this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 })
  3073. return false
  3074. } else if (this.detail.list2[0].ccid == '') {
  3075. this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 })
  3076. return false
  3077. }
  3078. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  3079. if (pattern.test(this.detail.list2[0].tname)) {
  3080. this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 })
  3081. return false
  3082. }
  3083. let sumFweight = 0
  3084. for (let i = 0; i < this.detail.list.length; i++) {
  3085. sumFweight += parseFloat(this.detail.list[i].fweight)
  3086. }
  3087. sumFweight = sumFweight.toFixed(3)
  3088. console.log(sumFweight)
  3089. this.isokDisable = true
  3090. setTimeout(() => {
  3091. this.isokDisable = false
  3092. }, 1000)
  3093. if (this.detail.list2[0].tcolor == null) {
  3094. this.detail.list2[0].tcolor = '#CCCCCC'
  3095. }
  3096. this.requestParam.common = { 'returnmap': '0' }
  3097. this.requestParam.data = []
  3098. this.requestParam.data[0] = { 'name': 'insertFT', 'type': 'e', 'parammaps': {
  3099. pastureid: Cookies.get('pastureid'),
  3100. tcode: this.detail.list2[0].tcode,
  3101. tname: this.detail.list2[0].tname,
  3102. tcolor: this.detail.list2[0].tcolor,
  3103. ccid: this.detail.list2[0].ccid,
  3104. ccname: this.detail.list2[0].ccname,
  3105. fttype: this.detail.list2[0].fttype,
  3106. fttypeid: this.detail.list2[0].fttypeid,
  3107. source: this.detail.list2[0].source,
  3108. remark: this.detail.list2[0].remark,
  3109. enable: this.detail.list2[0].enable,
  3110. volume:this.detail.list2[0].volume
  3111. }}
  3112. this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.detail.list }}
  3113. this.requestParam.data[1].children = []
  3114. this.requestParam.data[1].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': {
  3115. pastureid: '@insertSpotList.pastureid',
  3116. ftid: '@insertFT.LastInsertId',
  3117. fid: '@insertSpotList.fid',
  3118. fname: '@insertSpotList.fname',
  3119. fweight: '@insertSpotList.fweight',
  3120. islockcount: '@insertSpotList.islockcount',
  3121. sort: '@insertSpotList.sort',
  3122. feedgroup: '@insertSpotList.feedgroup',
  3123. preftid: '@insertSpotList.preftid',
  3124. autosecond: '@insertSpotList.autosecond'
  3125. }}
  3126. this.requestParam.data[1].children[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
  3127. pastureid: '@insertSpotList.pastureid',
  3128. id: '@insertSpotList.id'
  3129. }}
  3130. this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.detail.list2 }}
  3131. this.requestParam.data[2].children = []
  3132. this.requestParam.data[2].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': {
  3133. pastureid: Cookies.get('pastureid'),
  3134. ftid: this.table2.getdataListParm.parammaps.ftid,
  3135. fid: '@insertFT.LastInsertId',
  3136. fname: '@insertSpotList2.tname',
  3137. fweight: sumFweight,
  3138. islockcount: '0',
  3139. sort: parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1,
  3140. feedgroup: '@insertSpotList2.tname',
  3141. preftid: '@insertFT.LastInsertId',
  3142. autosecond: this.detail.list[0].autosecond
  3143. }}
  3144. ExecDataByConfig(this.requestParam).then(response => {
  3145. console.log('合成预混料保存发送参数', this.requestParam)
  3146. if (response.msg === 'fail') {
  3147. const tname = new RegExp("key 'tname'")
  3148. if (tname.test(response.data)) {
  3149. this.$message({ type: 'error', message: '预混配方已存在,不可重复生成', duration: 2000 })
  3150. } else {
  3151. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  3152. }
  3153. } else {
  3154. this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 })
  3155. this.detail.dialogFormVisible = false
  3156. this.getList3()
  3157. this.getList2()
  3158. this.getDownList()
  3159. }
  3160. })
  3161. }
  3162. },
  3163. handleFormulationEvaluation(row) {
  3164. console.log(row)
  3165. // this.$router.push({ path: '/statisticalAnalysis/FormulationEvaluation', query: { tname: row.tname }})
  3166. this.$router.push({
  3167. name: 'FormulationEvaluation',
  3168. params: {
  3169. tname: row.tname,
  3170. ftid: row.id,
  3171. pastureid: row.pastureid,
  3172. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  3173. inputDatetime: [new Date('startTime'), new Date('startTime')], // 日期后台待传
  3174. stopTime: parseTime(new Date(), '{y}-{m}-{d}')
  3175. }
  3176. })
  3177. },
  3178. // 配方记录
  3179. handleRowRecipeRecord(row) {
  3180. console.log(row)
  3181. this.rowRecipeRecord.temp = Object.assign({}, row)
  3182. this.rowRecipeRecord.dialogFormVisible = true
  3183. this.textMap.rowRecipeRecordTxt = '配方修改记录——配方:' + row.tname
  3184. this.rowRecipeRecord.dialogStatus = 'rowRecipeRecordTxt'
  3185. this.rowRecipeRecord.getdataListParm.parammaps.pastureid = row.pastureid
  3186. this.rowRecipeRecord.getdataListParm.parammaps.fitid = row.id
  3187. this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime = []
  3188. this.getRowRecipeRecordList()
  3189. },
  3190. getRowRecipeRecordList() {
  3191. this.rowRecipeRecord.listLoading = true
  3192. this.rowRecipeRecord.getdataListParm.parammaps.fitid = this.rowRecipeRecord.temp.id
  3193. if (this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime == null) {
  3194. this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime = ''
  3195. this.rowRecipeRecord.getdataListParm.parammaps.startTime = ''
  3196. this.rowRecipeRecord.getdataListParm.parammaps.stopTime = ''
  3197. } else {
  3198. this.rowRecipeRecord.getdataListParm.parammaps.startTime = this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime[0]
  3199. this.rowRecipeRecord.getdataListParm.parammaps.stopTime = this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime[1]
  3200. }
  3201. const url = 'authdata/GetArrList'
  3202. const data = this.rowRecipeRecord.getdataListParm
  3203. postJson(url, data).then(response => {
  3204. if (response.data.list !== null) {
  3205. for (let i = 0; i < response.data.list.length; i++) {
  3206. if (response.data.list[i].arrList == null) {
  3207. this.$set(response.data.list[i], 'arrList', [])
  3208. }
  3209. }
  3210. this.rowRecipeRecord.list = response.data.list
  3211. this.rowRecipeRecord.pageNum = response.data.pageNum
  3212. this.rowRecipeRecord.pageSize = response.data.pageSize
  3213. this.rowRecipeRecord.total = response.data.total
  3214. } else {
  3215. this.rowRecipeRecord.list = []
  3216. this.rowRecipeRecord.total = 0
  3217. }
  3218. console.log(response.data, 'response.data')
  3219. setTimeout(() => {
  3220. this.rowRecipeRecord.listLoading = false
  3221. }, 100)
  3222. })
  3223. },
  3224. handleRowRecipeRecordSearch() {
  3225. this.getRowRecipeRecordList()
  3226. },
  3227. handleEnlarge() {
  3228. var height = (document.documentElement.clientHeight - 165 + 50).toString() + 'px'
  3229. // var height = (document.documentElement.clientHeight - 165 + 80).toString() + 'px'
  3230. // var height2 = '-' + (document.documentElement.clientHeight - 400).toString() + 'px'
  3231. var height2 = '-' + (this.$refs.template.offsetHeight).toString() + 'px'
  3232. // console.log(this.$refs.detail.offsetHeight)
  3233. // console.log(height2, 'height2')
  3234. this.isEnlarge = false
  3235. this.$refs.detail.style.top = height2
  3236. this.$refs.detail.style.height = height
  3237. this.$refs.appContainer.style.height = height
  3238. this.$refs.table2.style.height = 0
  3239. this.$refs.myContainer.style.posiiton = 'relative'
  3240. this.$refs.detail.style.posiiton = 'absolute'
  3241. },
  3242. handleNarrow() {
  3243. this.isEnlarge = true
  3244. this.$refs.detail.style.top = 0
  3245. this.$refs.detail.style.height = '300px'
  3246. this.$refs.myContainer.style.posiiton = ''
  3247. this.$refs.detail.style.posiiton = ''
  3248. this.$refs.detail.style.zIndex = ''
  3249. },
  3250. handleTakeEffect() {
  3251. if (this.selectList.length == 0) {
  3252. this.$message({ type: 'error', message: '请选择车次信息', duration: 2000 })
  3253. } else {
  3254. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否生效?', {
  3255. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  3256. }).then(() => {
  3257. let ids = []
  3258. for (let i = 0; i < this.selectList.length; i++) {
  3259. ids.push(this.selectList[i].id)
  3260. }
  3261. var data = {}
  3262. data.parammaps = {}
  3263. data.parammaps.enable = 1
  3264. data.parammaps.id = ids.toString()
  3265. var url = 'authdata/feedtemplet/enable'
  3266. postJson(url,data).then(response => {
  3267. console.log('生效保存发送参数', data)
  3268. if (response.msg === 'fail') {
  3269. this.$notify({ title: '生效失败', message: response.data, type: 'warning', duration: 2000 })
  3270. } else {
  3271. this.$notify({ title: '', message: '生效成功', type: 'success', duration: 2000 })
  3272. this.getList()
  3273. }
  3274. })
  3275. })
  3276. }
  3277. },
  3278. handleDisable() {
  3279. if (this.selectList.length == 0) {
  3280. this.$message({ type: 'error', message: '请选择车次信息', duration: 2000 })
  3281. } else {
  3282. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否禁用?', {
  3283. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  3284. }).then(() => {
  3285. let ids = []
  3286. for (let i = 0; i < this.selectList.length; i++) {
  3287. ids.push(this.selectList[i].id)
  3288. }
  3289. var data = {}
  3290. data.parammaps = {}
  3291. data.parammaps.enable = 0
  3292. data.parammaps.id = ids.toString()
  3293. console.log('禁用', data)
  3294. var url = 'authdata/feedtemplet/enable'
  3295. postJson(url,data).then(response => {
  3296. console.log('禁用保存发送参数', this.requestParam)
  3297. if (response.msg === 'fail') {
  3298. this.$notify({ title: '禁用失败', message: response.data, type: 'warning', duration: 2000 })
  3299. } else {
  3300. this.$notify({ title: '', message: '禁用成功', type: 'success', duration: 2000 })
  3301. this.getList()
  3302. }
  3303. })
  3304. })
  3305. }
  3306. },
  3307. getIspalyUd(){
  3308. let url = 'authdata/GetDataByName'
  3309. let data = {
  3310. "name":"getSysoptEnable","page":1,"offset":1,"pagecount":1,"returntype":"Map",
  3311. "parammaps":{"pastureid":Cookies.get('pastureid'),"inforname":"gmUdSync"}
  3312. }
  3313. postJson(url,data).then(response => {
  3314. if (response.msg !== 'fail') {
  3315. if(response.data.list[0].inforvalue == 0){
  3316. this.ispalyUd = false
  3317. }else{
  3318. this.ispalyUd = true
  3319. }
  3320. } else {
  3321. this.$notify({ title: '请求失败', message: response.data, type: 'warning', duration: 2000 })
  3322. }
  3323. })
  3324. },
  3325. handleGetUd(){
  3326. MessageBox.confirm('是否获取UD栏舍?', {
  3327. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  3328. }).then(() => {
  3329. let url = 'authdata/gm/udfeedtemplet/push'
  3330. let data = {
  3331. pastureId:Cookies.get('pastureid')
  3332. }
  3333. postJson(url,data).then(response => {
  3334. if (response.msg !== 'fail') {
  3335. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  3336. this.getList()
  3337. } else {
  3338. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  3339. }
  3340. })
  3341. })
  3342. }
  3343. }
  3344. }
  3345. </script>
  3346. <style lang="scss" scoped>
  3347. // .search{margin-top:10px;height: 40px;}
  3348. // .operation{height: 50px;}
  3349. .table{margin-top:5px;}
  3350. .table2{margin-top:10px;}
  3351. $width:350px;
  3352. $left:325px;
  3353. .selectInput{
  3354. position: relative;
  3355. display: inline-block;
  3356. .Input{width: $width;position: relative;}
  3357. .el-icon-arrow-down{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  3358. .el-icon-arrow-up{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  3359. .selectUl{
  3360. height:220px;overflow-y: auto;z-index: 111;width: $width;background: #fff;border: 1px solid #E4E7ED;box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);margin: -1px 0 0 0;padding: 6px 0; margin: 0;box-sizing: border-box;position: absolute;
  3361. li{
  3362. list-style: none;font-size: 14px; padding: 0 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #606266; height: 50px; line-height: 50px; box-sizing: border-box; cursor: pointer;
  3363. a{float:left;width: 80px;}
  3364. a:hover{color: rgba(0, 204, 102, 0.71); font-weight: 700;}
  3365. }
  3366. }
  3367. }
  3368. .template{
  3369. background: #fff;
  3370. position: relative;
  3371. }
  3372. .app-container{background: #fff;}
  3373. .detail{
  3374. background: #fff;
  3375. overflow-y: hidden;
  3376. overflow-x: hidden;
  3377. // position: fixed;
  3378. // bottom: 0;
  3379. // right:0;
  3380. z-index: 3;
  3381. // width: calc(100% - 210px);
  3382. position: relative;
  3383. }
  3384. .hide2{float: right;right:0;}
  3385. .templateDialog{
  3386. background: #fff;
  3387. position: relative;
  3388. }
  3389. .detailDialog{
  3390. background: #fff;
  3391. position: relative;
  3392. }
  3393. .hide{float: right;margin-right: 60px;}
  3394. </style>
  3395. <style>
  3396. .el-color-dropdown__main-wrapper{display: none !important;}
  3397. .el-color-dropdown__value{display: none !important;}
  3398. .el-color-dropdown__btns .el-button--text{display: none !important;}
  3399. </style>