index.vue 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. <template>
  2. <div class="app-container">
  3. <div class="search">
  4. <el-input v-model="table.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
  5. <el-select v-model="table.getdataListParm.parammaps.fclassid" filterable placeholder="饲料类别" class="filter-item" style="width: 150px;" clearable>
  6. <el-option v-for="item in feedTypeList" :key="item.id" :label="item.mixname" :value="item.id" />
  7. </el-select>
  8. <el-select v-model="table.getdataListParm.parammaps.source" filterable placeholder="饲料来源" class="filter-item" style="width: 120px;" clearable>
  9. <el-option v-for="item in feedSourcesList" :key="item.id" :label="item.name" :value="item.id" />
  10. </el-select>
  11. <el-select v-model="table.getdataListParm.parammaps.enable" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
  12. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  13. </el-select>
  14. <div ref="selectInput" class="filter-item selectInput">
  15. <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" />
  16. <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  17. <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  18. <ul v-if="arrowUp" class="selectUl">
  19. <li><a>允许误差数</a><el-input v-model="table.getdataListParm.parammaps.allowratio"type="text" style="width: 245px;" /></li>
  20. <li><a>跳转重量域</a><el-input v-model="table.getdataListParm.parammaps.autozone" type="text" style="width: 245px;" /></li>
  21. <li>
  22. <a>跳转延时</a>
  23. <el-select v-model="table.getdataListParm.parammaps.autosecond" filterable placeholder="跳转延时" class="filter-item" style="width: 245px;" clearable>
  24. <el-option v-for="item in jumpDelayList" :key="item.value" :label="item.label" :value="item.value" />
  25. </el-select>
  26. </li>
  27. <li>
  28. <div style="float: right;">
  29. <el-button class="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
  30. <el-button class="miniPrimary" @click="handleSearch">搜索</el-button>
  31. </div>
  32. </li>
  33. </ul>
  34. </div>
  35. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  36. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  37. </div>
  38. <div class="operation">
  39. <el-button v-if="isRoleEdit" style="float:left;" class="success" icon="el-icon-plus" @click="handleCreate">新增</el-button>
  40. <el-button v-if="isRoleEdit" style="float:left;" class="danger" icon="el-icon-delete" @click="handleDelete">删除</el-button>
  41. <el-button class="success" style="float:left;" icon="el-icon-receiving" @click="handleFeedBank">饲料库</el-button>
  42. <el-button v-if="isOrder && isRoleEdit" style="float:left;" icon="el-icon-sort" class="success" @click="handleChangeOrder">更改顺序</el-button>
  43. <div v-else style="float:left;margin-left: 10px;">
  44. <el-button v-if="isRoleEdit" icon="el-icon-folder-checked" class="success" @click="saveChangeOrder">保存</el-button>
  45. <el-button v-if="isRoleEdit" icon="el-icon-close" class="sortCancel" @click="cancelChangeOrder">取消</el-button>
  46. </div>
  47. <el-upload style="float: right;" :headers="headers" :data="uploadData" :action="uploadExcelUrl" :show-file-list="false" :before-upload="beforeImport" :on-success="handleImportSuccess">
  48. <el-button v-if="isRoleEdit" class="import" icon="el-icon-download" style="float: right;">导入</el-button>
  49. </el-upload>
  50. <el-dropdown style="float: right;margin-right: 10px;">
  51. <el-button class="export" icon="el-icon-upload2">导出</el-button>
  52. <el-dropdown-menu slot="dropdown">
  53. <el-dropdown-item @click.native="handleExport(1)">导出模板</el-dropdown-item>
  54. <el-dropdown-item @click.native="handleExport(2)">导出数据</el-dropdown-item>
  55. </el-dropdown-menu>
  56. </el-dropdown>
  57. </div>
  58. <div class="table">
  59. <u-table
  60. id="table"
  61. :key="table.tableKey"
  62. v-loading="table.listLoading"
  63. element-loading-text="给我一点时间"
  64. :data="table.list"
  65. border
  66. fit
  67. highlight-current-row
  68. style="width: 100%;"
  69. :row-style="rowStyle"
  70. :cell-style="cellStyle"
  71. class="elTable table-fixed"
  72. row-key="id"
  73. @selection-change="handleSelectionChange"
  74. >
  75. <u-table-column type="selection" align="center" width="50" fixed="left" />
  76. <u-table-column label="序号" type="index" align="center" width="50" fixed="left" />
  77. <u-table-column label="饲料名称" min-width="80px" align="center" fixed="left">
  78. <template slot-scope="scope">
  79. <span>{{ scope.row.fname }}</span>
  80. </template>
  81. </u-table-column>
  82. <u-table-column label="饲料分类" min-width="80px" align="center" fixed="left">
  83. <template slot-scope="scope">
  84. <span>{{ scope.row.fclass }}</span>
  85. </template>
  86. </u-table-column>
  87. <u-table-column label="唯一编码" min-width="80px" align="center">
  88. <template slot-scope="scope">
  89. <span>{{ scope.row.feedcode }}</span>
  90. </template>
  91. </u-table-column>
  92. <u-table-column label="饲料来源" min-width="80px" align="center">
  93. <template slot-scope="scope">
  94. <span>{{ scope.row.source }}</span>
  95. </template>
  96. </u-table-column>
  97. <u-table-column label="计划类型" min-width="90px" align="center">
  98. <template slot-scope="scope">
  99. <span>{{ scope.row.printgroup }}</span>
  100. </template>
  101. </u-table-column>
  102. <u-table-column v-if="isInforvalue" label="小料秤" min-width="90px" align="center">
  103. <template slot-scope="scope">
  104. <span>{{ scope.row.smtmrname }}</span>
  105. </template>
  106. </u-table-column>
  107. <u-table-column label="允许误差数(kg)" min-width="85px" align="center">
  108. <template slot-scope="scope">
  109. <span>{{ scope.row.allowratio }}</span>
  110. </template>
  111. </u-table-column>
  112. <u-table-column label="包装单位重量(kg)" min-width="80px" align="center">
  113. <template slot-scope="scope">
  114. <span>{{ scope.row.unitweight }}</span>
  115. </template>
  116. </u-table-column>
  117. <u-table-column label="单价" min-width="50px" align="center">
  118. <template slot-scope="scope">
  119. <span>{{ scope.row.uprice }}</span>
  120. </template>
  121. </u-table-column>
  122. <u-table-column label="跳转重量域(kg)" min-width="90px" align="center">
  123. <template slot-scope="scope">
  124. <span>{{ scope.row.autozone }}</span>
  125. </template>
  126. </u-table-column>
  127. <u-table-column label="跳转延时" min-width="80px" align="center">
  128. <template slot-scope="scope">
  129. <span>{{ scope.row.autosecondname }}</span>
  130. </template>
  131. </u-table-column>
  132. <u-table-column label="确认开始" min-width="80px" align="center">
  133. <template slot-scope="scope">
  134. <span>{{ scope.row.confirmstartname }}</span>
  135. </template>
  136. </u-table-column>
  137. <u-table-column label="继电器位置" min-width="60px" align="center">
  138. <template slot-scope="scope">
  139. <span>{{ scope.row.trgaddress }}</span>
  140. </template>
  141. </u-table-column>
  142. <u-table-column label="无上域" min-width="60px" align="center">
  143. <template slot-scope="scope">
  144. <span v-if="scope.row.jmp == 0">否</span>
  145. <span v-else>是</span>
  146. </template>
  147. </u-table-column>
  148. <u-table-column label="备用字段01" min-width="90px" align="center">
  149. <template slot-scope="scope">
  150. <span>{{ scope.row.backup1 }}</span>
  151. </template>
  152. </u-table-column>
  153. <u-table-column label="备用字段02" min-width="90px" align="center">
  154. <template slot-scope="scope">
  155. <span>{{ scope.row.backup2 }}</span>
  156. </template>
  157. </u-table-column>
  158. <u-table-column label="备用字段03" min-width="90px" align="center">
  159. <template slot-scope="scope">
  160. <span>{{ scope.row.backup3 }}</span>
  161. </template>
  162. </u-table-column>
  163. <u-table-column label="是否启用" min-width="80px" align="center">
  164. <template slot-scope="scope">
  165. <el-switch v-model="scope.row.enable" disabled active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" />
  166. </template>
  167. </u-table-column>
  168. <u-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width" fixed="right">
  169. <template slot-scope="{row}">
  170. <a class="correcting" @click="handleNutritive (row)">营养价值</a>
  171. <span class="centerSpan">|</span>
  172. <a v-if="isRoleEdit" class="correcting" @click="handleRelation(row)">关联</a>
  173. <span v-if="isRoleEdit" class="centerSpan">|</span>
  174. <el-button v-if="isRoleEdit" icon="el-icon-edit-outline" class="miniSuccess" @click="handleUpdate(row)" />
  175. <span v-if="isRoleEdit" class="centerSpan">|</span>
  176. <el-button v-if="isRoleEdit" icon="el-icon-delete" class="miniDanger" @click="handleRowDelete(row)" />
  177. </template>
  178. </u-table-column>
  179. </u-table>
  180. <!-- <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" /> -->
  181. <span v-if="table.listLoading == false" style="margin-right: 30px;margin-top: 10px;font-size: 14px;">共{{ table.total }}条</span>
  182. </div>
  183. <!-- 新增/编辑 -->
  184. <el-dialog :fullscreen="dialogFull" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="90%">
  185. <template slot="title">
  186. <div class="avue-crud__dialog__header">
  187. <span class="el-dialog__title">
  188. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  189. {{ textMap[create.dialogStatus] }}
  190. </span>
  191. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  192. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  193. <svg-icon v-else icon-class="fullscreen" />
  194. </div>
  195. </div>
  196. </template>
  197. <div class="app-add">
  198. <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="155px" style="width: 100%;margin:0 auto 50px">
  199. <el-row>
  200. <el-col :span="24">
  201. <h3 style="width: 160px;text-align: right;">基础信息</h3>
  202. </el-col>
  203. </el-row>
  204. <el-row>
  205. <el-col :span="6">
  206. <el-form-item label="饲料名称:" prop="fname">
  207. <el-input ref="fname" v-model="create.temp.fname" class="filter-item" placeholder="请输入饲料名称" type="textarea" :autosize="{ minRows:1}" maxlength="32" />
  208. </el-form-item>
  209. </el-col>
  210. <el-col :span="6">
  211. <el-form-item label="饲料类别:" prop="fclassid">
  212. <el-select v-model="create.temp.fclassid" filterable placeholder="饲料类别" class="filter-item" style="width: 100%;" @change="changeFeedList">
  213. <el-option v-for="item in feedTypeList" :key="item.id" :label="item.mixname" :value="item.id" />
  214. </el-select>
  215. </el-form-item>
  216. </el-col>
  217. <el-col :span="6">
  218. <el-form-item label="唯一编码:" prop="feedcode">
  219. <el-input ref="feedcode" v-model="create.temp.feedcode" class="filter-item" placeholder="请输入唯一编码" type="text" />
  220. </el-form-item>
  221. </el-col>
  222. <el-col :span="6">
  223. <el-form-item label="饲料来源:" prop="source">
  224. <el-input ref="source" v-model="create.temp.source" class="filter-item" disabled placeholder="用户自定义" type="text" />
  225. </el-form-item>
  226. </el-col>
  227. </el-row>
  228. <el-row>
  229. <el-col :span="6">
  230. <el-form-item label="计划类型:" prop="printgroupid">
  231. <el-select v-model="create.temp.printgroupid" filterable placeholder="计划类型" class="filter-item" style="width: 100%;" @change="changePlanList">
  232. <el-option v-for="item in planTypeList" :key="item.value" :label="item.label" :value="item.value" />
  233. </el-select>
  234. </el-form-item>
  235. </el-col>
  236. <el-col :span="6">
  237. <el-form-item label="包装单位重量(kg):" prop="unitweight">
  238. <el-input ref="unitweight" v-model="create.temp.unitweight" class="filter-item" placeholder="正整数" type="number" style="width: 100%;" />
  239. </el-form-item>
  240. </el-col>
  241. <el-col :span="6">
  242. <el-form-item label="单价:" prop="uprice">
  243. <el-input ref="uprice" v-model="create.temp.uprice" class="filter-item" placeholder="最多俩位小数" type="number" step="0.01" style="width: 100%;" />
  244. </el-form-item>
  245. </el-col>
  246. </el-row>
  247. <el-row>
  248. <el-col :span="24">
  249. <h3 style="width: 160px;text-align: right;">搅拌参数</h3>
  250. </el-col>
  251. </el-row>
  252. <el-row>
  253. <el-col :span="6">
  254. <el-form-item label="允许误差数(kg):" prop="allowratio">
  255. <el-input ref="allowratio" v-model="create.temp.allowratio" class="filter-item" placeholder="正整数" type="text" />
  256. </el-form-item>
  257. </el-col>
  258. <el-col :span="6">
  259. <el-form-item label="跳转重量域(kg):" prop="autozone">
  260. <el-input ref="autozone" v-model="create.temp.autozone" :disabled="create.temp.autosecond=='0'" class="filter-item" placeholder="0-50之间的整数" type="text" />
  261. </el-form-item>
  262. </el-col>
  263. <el-col :span="6">
  264. <el-form-item label="跳转延时:" prop="autosecond">
  265. <el-select v-model="create.temp.autosecond" filterable placeholder="跳转延时" class="filter-item" style="width: 100%;" @change="changeAutosecond">
  266. <el-option v-for="item in jumpDelayList" :key="item.value" :label="item.label" :value="item.value" />
  267. </el-select>
  268. </el-form-item>
  269. </el-col>
  270. <el-col :span="6">
  271. <el-form-item label="确认开始:" prop="confirmstart">
  272. <el-select v-model="create.temp.confirmstart" filterabler placeholde="确认开始" class="filter-item" style="width: 100%;" @change="changeConfirmstart">
  273. <el-option v-for="item in confirmStartList" :key="item.id" :label="item.name" :value="item.id" />
  274. </el-select>
  275. </el-form-item>
  276. </el-col>
  277. </el-row>
  278. <el-row>
  279. <el-col :span="6">
  280. <el-form-item label="是否启用:" prop="enable">
  281. <el-select v-model="create.temp.enable" filterable placeholder="是否启用" class="filter-item" style="width: 100%;">
  282. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  283. </el-select>
  284. </el-form-item>
  285. </el-col>
  286. <el-col :span="6">
  287. <el-form-item label="继电器位置:" prop="trgaddress">
  288. <el-input ref="trgaddress" v-model="create.temp.trgaddress" class="filter-item" placeholder="继电器位置" type="number" />
  289. </el-form-item>
  290. </el-col>
  291. <el-col v-if="isInforvalue" :span="6">
  292. <el-form-item label="小料秤:" prop="smtmrid">
  293. <el-select v-model="create.temp.smtmrid" filterable placeholder="小料秤" clearable class="filter-item" style="width: 100%;" @change="changeSmallMaterial">
  294. <el-option v-for="item in smallMaterialList" :key="item.id" :label="item.tname" :value="item.id" />
  295. </el-select>
  296. </el-form-item>
  297. </el-col>
  298. <el-col :span="6">
  299. <el-form-item label="无上域:" prop="jmp">
  300. <el-select v-model="create.temp.jmp" placeholder="无上域" class="filter-item" style="width: 100%;" @change="changeSmallMaterial">
  301. <el-option v-for="item in jmpList" :key="item.id" :label="item.name" :value="item.id" />
  302. </el-select>
  303. </el-form-item>
  304. </el-col>
  305. </el-row>
  306. <el-row>
  307. <h3 style="width: 160px;text-align: right;">备用字段</h3>
  308. </el-row>
  309. <el-row>
  310. <el-col :span="6">
  311. <el-form-item label="备用字段01:" prop="backup1">
  312. <el-input ref="backup1" v-model="create.temp.backup1" class="filter-item" placeholder="备用字段01" type="text" />
  313. </el-form-item>
  314. </el-col>
  315. <el-col :span="6">
  316. <el-form-item label="备用字段02:" prop="backup2">
  317. <el-input ref="backup2" v-model="create.temp.backup2" class="filter-item" placeholder="备用字段02" type="text" />
  318. </el-form-item>
  319. </el-col>
  320. <el-col :span="6">
  321. <el-form-item label="备用字段03:" prop="backup3">
  322. <el-input ref="backup3" v-model="create.temp.backup3" class="filter-item" placeholder="备用字段03" type="text" />
  323. </el-form-item>
  324. </el-col>
  325. </el-row>
  326. </el-form>
  327. <div slot="footer" class="dialog-footer">
  328. <el-button class="cancelClose" @click="create.dialogFormVisible = false;getList()">关闭</el-button>
  329. <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="save" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button>
  330. </div>
  331. </div>
  332. </el-dialog>
  333. <!-- 饲料库 -->
  334. <el-dialog :fullscreen="dialogFull" :visible.sync="feedBank.dialogFormVisible" :close-on-click-modal="false" width="90%">
  335. <template slot="title">
  336. <div class="avue-crud__dialog__header">
  337. <span class="el-dialog__title">
  338. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  339. {{ textMap[feedBank.dialogStatus] }}
  340. </span>
  341. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  342. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  343. <svg-icon v-else icon-class="fullscreen" />
  344. </div>
  345. </div>
  346. </template>
  347. <div class="app-add">
  348. <div class="search">
  349. <el-input v-model="feedBank.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
  350. <el-select v-model="feedBank.getdataListParm.parammaps.statue" filterabler placeholder="关联状态" class="filter-item" style="width: 120px;" clearable>
  351. <el-option v-for="item in associationStatusList" :key="item.id" :label="item.name" :value="item.id" />
  352. </el-select>
  353. <el-button class="successBorder" @click="handleFeedBankSearch">查询</el-button>
  354. <el-button class="successBorder" @click="handleFeedBankRefresh">重置</el-button>
  355. </div>
  356. <div class="table">
  357. <el-table
  358. :key="feedBank.tableKey"
  359. v-loading="feedBank.listLoading"
  360. element-loading-text="给我一点时间"
  361. :data="feedBank.list"
  362. border
  363. fit
  364. highlight-current-row
  365. style="width: 100%;margin: 0 auto 50px;"
  366. :row-style="rowStyle"
  367. :cell-style="cellStyle"
  368. class="elTable table-fixed"
  369. >
  370. <el-table-column label="序号" align="center" type="index" width="50px" />
  371. <el-table-column label="来源" min-width="50" align="center">
  372. <template slot-scope="scope">
  373. <span>{{ scope.row.sources }}</span>
  374. </template>
  375. </el-table-column>
  376. <el-table-column label="中国饲料号" min-width="70px" align="center">
  377. <template slot-scope="scope">
  378. <span>{{ scope.row.feedcode }}</span>
  379. </template>
  380. </el-table-column>
  381. <el-table-column label="饲料名称" min-width="80px" align="center">
  382. <template slot-scope="scope">
  383. <span>{{ scope.row.fname }}</span>
  384. </template>
  385. </el-table-column>
  386. <el-table-column label="价格" min-width="50px" align="center">
  387. <template slot-scope="scope">
  388. <span>{{ scope.row.price }}</span>
  389. </template>
  390. </el-table-column>
  391. <el-table-column label="样品说明" min-width="50px" align="center">
  392. <template slot-scope="scope">
  393. <span>{{ scope.row.remark }}</span>
  394. </template>
  395. </el-table-column>
  396. <el-table-column label="干物质(DM%)" min-width="65px" align="center">
  397. <template slot-scope="scope">
  398. <span>{{ scope.row.dry }}</span>
  399. </template>
  400. </el-table-column>
  401. <el-table-column label="淀粉(%DM)" min-width="59px" align="center">
  402. <template slot-scope="scope">
  403. <span>{{ scope.row.starch }}</span>
  404. </template>
  405. </el-table-column>
  406. <el-table-column label="粗蛋白(CP%DM)" min-width="70px" align="center">
  407. <template slot-scope="scope">
  408. <span>{{ scope.row.cp }}</span>
  409. </template>
  410. </el-table-column>
  411. <el-table-column label="钙(Ca%DM)" min-width="85px" align="center">
  412. <template slot-scope="scope">
  413. <span>{{ scope.row.ca }}</span>
  414. </template>
  415. </el-table-column>
  416. <el-table-column label="磷(P%DM)" min-width="85px" align="center">
  417. <template slot-scope="scope">
  418. <span>{{ scope.row.p }}</span>
  419. </template>
  420. </el-table-column>
  421. <el-table-column label="产奶净能(%DM)" min-width="75px" align="center">
  422. <template slot-scope="scope">
  423. <span>{{ scope.row.n }}</span>
  424. </template>
  425. </el-table-column>
  426. <el-table-column label="脂肪(%DM)" min-width="59px" align="center">
  427. <template slot-scope="scope">
  428. <span>{{ scope.row.fat }}</span>
  429. </template>
  430. </el-table-column>
  431. <el-table-column label="ADF(%DM)" min-width="60px" align="center">
  432. <template slot-scope="scope">
  433. <span>{{ scope.row.adf }}</span>
  434. </template>
  435. </el-table-column>
  436. <el-table-column label="NDF(%DM)" min-width="60px" align="center">
  437. <template slot-scope="scope">
  438. <span>{{ scope.row.ndf }}</span>
  439. </template>
  440. </el-table-column>
  441. <el-table-column label="NDIP%" min-width="70px" align="center">
  442. <template slot-scope="scope">
  443. <span>{{ scope.row.ndip }}</span>
  444. </template>
  445. </el-table-column>
  446. <el-table-column label="粗灰分(Ash%)" min-width="65px" align="center">
  447. <template slot-scope="scope">
  448. <span>{{ scope.row.ash }}</span>
  449. </template>
  450. </el-table-column>
  451. <el-table-column label="粗料" min-width="50px" align="center">
  452. <template slot-scope="scope">
  453. <span>{{ scope.row.iscu }}</span>
  454. </template>
  455. </el-table-column>
  456. <el-table-column label="关联状态" min-width="50px" align="center">
  457. <template slot-scope="scope">
  458. <span v-if="scope.row.statue==0">否</span>
  459. <span v-if="scope.row.statue==1">是</span>
  460. </template>
  461. </el-table-column>
  462. </el-table>
  463. </div>
  464. <div slot="footer" class="dialog-footer">
  465. <el-button class="cancelClose cancelClose1" @click="feedBank.dialogFormVisible = false; ">关闭</el-button>
  466. </div>
  467. </div>
  468. </el-dialog>
  469. <!-- 关联 -->
  470. <el-dialog :fullscreen="dialogFull" :visible.sync="relation.dialogFormVisible" :close-on-click-modal="false" width="90%">
  471. <template slot="title">
  472. <div class="avue-crud__dialog__header">
  473. <span class="el-dialog__title">
  474. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  475. {{ textMap[relation.dialogStatus] }}
  476. </span>
  477. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  478. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  479. <svg-icon v-else icon-class="fullscreen" />
  480. </div>
  481. </div>
  482. </template>
  483. <div class="app-add">
  484. <div class="search">
  485. <el-input v-model="relation.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
  486. <el-button class="successBorder" @click="handleRelationSearch">查询</el-button>
  487. </div>
  488. <div class="table">
  489. <el-table
  490. :key="relation.tableKey"
  491. v-loading="relation.listLoading"
  492. element-loading-text="给我一点时间"
  493. :data="relation.list"
  494. border
  495. fit
  496. highlight-current-row
  497. style="width: 100%;margin: 0 auto 50px;"
  498. :row-style="rowStyle"
  499. :cell-style="cellStyle"
  500. class="elTable table-fixed"
  501. >
  502. <el-table-column label="序号" align="center" type="index" width="50px" />
  503. <el-table-column label="来源" min-width="50" align="center">
  504. <template slot-scope="scope">
  505. <span>{{ scope.row.sources }}</span>
  506. </template>
  507. </el-table-column>
  508. <el-table-column label="中国饲料号" min-width="80px" align="center">
  509. <template slot-scope="scope">
  510. <span>{{ scope.row.feedcode }}</span>
  511. </template>
  512. </el-table-column>
  513. <el-table-column label="饲料名称" min-width="80px" align="center">
  514. <template slot-scope="scope">
  515. <span>{{ scope.row.fname }}</span>
  516. </template>
  517. </el-table-column>
  518. <el-table-column label="价格" min-width="50px" align="center">
  519. <template slot-scope="scope">
  520. <span>{{ scope.row.price }}</span>
  521. </template>
  522. </el-table-column>
  523. <el-table-column label="样品说明" min-width="50px" align="center">
  524. <template slot-scope="scope">
  525. <span>{{ scope.row.remark }}</span>
  526. </template>
  527. </el-table-column>
  528. <el-table-column label="干物质(DM%)" min-width="65px" align="center">
  529. <template slot-scope="scope">
  530. <span>{{ scope.row.dry }}</span>
  531. </template>
  532. </el-table-column>
  533. <el-table-column label="淀粉(%DM)" min-width="59px" align="center">
  534. <template slot-scope="scope">
  535. <span>{{ scope.row.starch }}</span>
  536. </template>
  537. </el-table-column>
  538. <el-table-column label="粗蛋白(CP%DM)" min-width="75px" align="center">
  539. <template slot-scope="scope">
  540. <span>{{ scope.row.cp }}</span>
  541. </template>
  542. </el-table-column>
  543. <el-table-column label="钙(Ca%DM)" min-width="83px" align="center">
  544. <template slot-scope="scope">
  545. <span>{{ scope.row.ca }}</span>
  546. </template>
  547. </el-table-column>
  548. <el-table-column label="磷(P%DM)" min-width="80px" align="center">
  549. <template slot-scope="scope">
  550. <span>{{ scope.row.p }}</span>
  551. </template>
  552. </el-table-column>
  553. <el-table-column label="产奶净能(%DM)" min-width="75px" align="center">
  554. <template slot-scope="scope">
  555. <span>{{ scope.row.n }}</span>
  556. </template>
  557. </el-table-column>
  558. <el-table-column label="脂肪(%DM)" min-width="59px" align="center">
  559. <template slot-scope="scope">
  560. <span>{{ scope.row.fat }}</span>
  561. </template>
  562. </el-table-column>
  563. <el-table-column label="ADF(%DM)" min-width="60px" align="center">
  564. <template slot-scope="scope">
  565. <span>{{ scope.row.adf }}</span>
  566. </template>
  567. </el-table-column>
  568. <el-table-column label="NDF(%DM)" min-width="60px" align="center">
  569. <template slot-scope="scope">
  570. <span>{{ scope.row.ndf }}</span>
  571. </template>
  572. </el-table-column>
  573. <el-table-column label="NDIP%" min-width="70px" align="center">
  574. <template slot-scope="scope">
  575. <span>{{ scope.row.ndip }}</span>
  576. </template>
  577. </el-table-column>
  578. <el-table-column label="粗灰分(Ash%)" min-width="65px" align="center">
  579. <template slot-scope="scope">
  580. <span>{{ scope.row.ash }}</span>
  581. </template>
  582. </el-table-column>
  583. <el-table-column label="粗料" min-width="50px" align="center">
  584. <template slot-scope="scope">
  585. <span>{{ scope.row.iscu }}</span>
  586. </template>
  587. </el-table-column>
  588. <el-table-column label="操作" min-width="50px" align="center" class-name="small-padding fixed-width" fixed="right">
  589. <template slot-scope="{row}">
  590. <a v-if="row.statueRelation == '1'" class="correcting" :disabled="isokDisable" @click="disassociateData(row)">取消关联</a>
  591. <a v-if="row.statueRelation == '0'" class="correcting" :disabled="isokDisable" @click="relationData(row)">关联</a>
  592. </template>
  593. </el-table-column>
  594. </el-table>
  595. </div>
  596. <div slot="footer" class="dialog-footer">
  597. <el-button class="cancelClose cancelClose1" @click="relation.dialogFormVisible = false;getList() ">关闭</el-button>
  598. </div>
  599. </div>
  600. </el-dialog>
  601. <!-- 营养价值 -->
  602. <el-dialog :fullscreen="dialogFull" :visible.sync="nutritive.dialogFormVisible" :close-on-click-modal="false" width="90%">
  603. <template slot="title">
  604. <div class="avue-crud__dialog__header">
  605. <span class="el-dialog__title">
  606. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  607. {{ textMap[nutritive.dialogStatus] }}
  608. </span>
  609. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  610. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  611. <svg-icon v-else icon-class="fullscreen" />
  612. </div>
  613. </div>
  614. </template>
  615. <div class="app-add">
  616. <el-form ref="temp" :rules="nutritive.rules" :model="nutritive.temp" label-position="right" label-width="160px" style="width: 100%;margin:0 auto 50px">
  617. <el-row>
  618. <el-col :span="6">
  619. <el-form-item label="干物质(DM%):" prop="dry">
  620. <el-input ref="dry" v-model="nutritive.temp.dry" :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入干物质" type="number" step="0.01" />
  621. </el-form-item>
  622. </el-col>
  623. <el-col :span="6">
  624. <el-form-item label="淀粉(%DM):" prop="starch">
  625. <el-input ref="starch" v-model="nutritive.temp.starch" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入淀粉" type="number" step="0.01" />
  626. </el-form-item>
  627. </el-col>
  628. <el-col :span="6">
  629. <el-form-item label="粗蛋白(CP%DM):" prop="cp">
  630. <el-input ref="cp" v-model="nutritive.temp.cp" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入粗蛋白" type="number" step="0.01" />
  631. </el-form-item>
  632. </el-col>
  633. <el-col :span="6">
  634. <el-form-item label="钙(Ca%DM):" prop="ca">
  635. <el-input ref="ca" v-model="nutritive.temp.ca" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入钙" type="number" step="0.01" />
  636. </el-form-item>
  637. </el-col>
  638. </el-row>
  639. <el-row>
  640. <el-col :span="6">
  641. <el-form-item label="磷(P%DM):" prop="p">
  642. <el-input ref="p" v-model="nutritive.temp.p" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入磷" type="number" step="0.01" />
  643. </el-form-item>
  644. </el-col>
  645. <el-col :span="6">
  646. <el-form-item label="产奶净能(%DM):" prop="n">
  647. <el-input ref="n" v-model="nutritive.temp.n" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入产奶净能" type="number" step="0.01" />
  648. </el-form-item>
  649. </el-col>
  650. <el-col :span="6">
  651. <el-form-item label="脂肪(%DM):" prop="fat">
  652. <el-input ref="fat" v-model="nutritive.temp.fat" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入脂肪" type="number" step="0.01" />
  653. </el-form-item>
  654. </el-col>
  655. <el-col :span="6">
  656. <el-form-item label="ADF(%DM):" prop="adf">
  657. <el-input ref="adf" v-model="nutritive.temp.adf" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入ADF" type="number" step="0.01" />
  658. </el-form-item>
  659. </el-col>
  660. </el-row>
  661. <el-row>
  662. <el-col :span="6">
  663. <el-form-item label="NDF(%DM):" prop="ndf">
  664. <el-input ref="ndf" v-model="nutritive.temp.ndf" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入NDF" type="number" step="0.01" />
  665. </el-form-item>
  666. </el-col>
  667. <el-col :span="6">
  668. <el-form-item label="NDIP(%):" prop="ndip">
  669. <el-input ref="ndip" v-model="nutritive.temp.ndip" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入NDIP" type="number" step="0.01" />
  670. </el-form-item>
  671. </el-col>
  672. <el-col :span="6">
  673. <el-form-item label="粗灰分(Ash%):" prop="ash">
  674. <el-input ref="ash" v-model="nutritive.temp.ash" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入粗灰分" type="number" min="0.00" step="0.01" />
  675. </el-form-item>
  676. </el-col>
  677. </el-row>
  678. </el-form>
  679. <div slot="footer" class="dialog-footer">
  680. <el-button class="cancelClose" @click="nutritive.dialogFormVisible = false;getList()">关闭</el-button>
  681. <el-button v-if="nutritive.dialogStatus==='nutritive' && isRoleEdit" class="save" :disabled="isokDisable" @click="nutritiveData()">确认</el-button>
  682. </div>
  683. </div>
  684. </el-dialog>
  685. </div>
  686. </template>
  687. <script>
  688. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons } from '@/api/common'
  689. import Cookies from 'js-cookie'
  690. import Sortable from 'sortablejs'
  691. import Pagination from '@/components/Pagination'
  692. import { getToken } from '@/utils/auth'
  693. import { parseTime, json2excel, handleTableSpan, handleObjectSpanMethod } from '@/utils/index.js'
  694. import { MessageBox } from 'element-ui'
  695. export default {
  696. name: 'FeedTable',
  697. components: { Pagination },
  698. directives: {
  699. limit: {
  700. // 指令的定义
  701. update: function(el) {
  702. el.onkeypress = function(e) {
  703. var code = e.charCode
  704. if (code != 0) {
  705. if (!String.fromCharCode(code).match(/[0-9\.]/)) {
  706. return false
  707. }
  708. }
  709. }
  710. el.addEventListener('textInput', function(e) {
  711. e.target.value = e.target.value.replace(/[^0-9\.]/g, '')
  712. })
  713. el.onkeyup = function(e) {
  714. e.target.value = e.target.value.replace(/[^0-9\.]/g, '')
  715. }
  716. }
  717. }
  718. },
  719. data() {
  720. return {
  721. dialogFull: false,
  722. isInforvalue: false,
  723. isRoleEdit: [],
  724. download: {
  725. getdataListParm: {
  726. name: 'getFeedList',
  727. page: 1,
  728. offset: 1,
  729. pagecount: 0,
  730. returntype: 'Map',
  731. parammaps: {
  732. pastureid: Cookies.get('pastureid'),
  733. fname: '',
  734. fclassid: '',
  735. source: '',
  736. autozone: '',
  737. autosecond: '',
  738. allowratio: '',
  739. printgroup: '',
  740. enable: ''
  741. }
  742. },
  743. list: []
  744. },
  745. requestParams: [
  746. { name: 'getDictByName', offset: 0, pagecount: 0, params: ['跳转延时'] },
  747. { name: 'getFeedclassByBig', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }},
  748. { name: 'getDictByName2', offset: 0, pagecount: 0, params: ['计划类型'] },
  749. { name: 'getTMRListEnableTypeFeed', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid'), eqtype: '4' }}
  750. ],
  751. requestParams2: {
  752. name: 'getSysoptEnable', offset: 0, parammaps: { pastureid: Cookies.get('pastureid'), inforname: 'isSmallMaterial' }
  753. },
  754. enableList: [{ id: '1', name: '是' }, { id: '0', name: '否' }], // 是否启用
  755. feedSourcesList: [{ id: '0', name: '系统内置' }, { id: '1', name: '用户自定义' }], // 饲料来源
  756. confirmStartList: [{ id: '0', name: '禁用' }, { id: '1', name: '启用' }], // 确认开始
  757. associationStatusList: [{ id: '1', name: '是' }, { id: '0', name: '否' }], // 关联状态
  758. jumpDelayList: [], // 跳转延时
  759. feedTypeList: [], // 饲料分类
  760. planTypeList: [], // 计划类型
  761. smallMaterialList: [], // 小料秤
  762. jmpList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 无上域
  763. table: {
  764. tableKey: 0,
  765. list: [],
  766. total: 0,
  767. listLoading: true,
  768. getdataListParm: {
  769. name: 'getFeedList',
  770. page: 1,
  771. offset: 1,
  772. pagecount: '',
  773. returntype: 'Map',
  774. parammaps: {
  775. pastureid: Cookies.get('pastureid'),
  776. fname: '',
  777. fclassid: '',
  778. source: '',
  779. autozone: '',
  780. autosecond: '',
  781. allowratio: '',
  782. printgroup: '',
  783. enable: ''
  784. }
  785. }
  786. },
  787. // 多项搜索显示隐藏
  788. arrowDown: true,
  789. arrowUp: false,
  790. // 新增/编辑
  791. create: {
  792. dialogFormVisible: false,
  793. dialogStatus: '',
  794. temp: { pastureid: Cookies.get('pastureid'), fname: '', fclassid: '', fclass: '', feedcode: '', source: '用户自定义', printgroupid: '1', printgroup: '无', unitweight: '', uprice: '', allowratio: '', autozone: '', autosecond: '0', autosecondname: '禁用', confirmstart: '0', confirmstartname: '禁用', enable: '1', trgaddress: '', backup1: '', backup2: '', backup3: '' },
  795. rules: {
  796. printgroupid :[{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  797. fname: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  798. fclassid: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  799. feedcode: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }]
  800. }
  801. },
  802. // 饲料库
  803. feedBank: {
  804. dialogFormVisible: false,
  805. dialogStatus: '',
  806. temp: {},
  807. rules: {},
  808. tableKey: 0,
  809. list: [],
  810. total: 0,
  811. listLoading: true,
  812. getdataListParm: {
  813. name: 'getFeednurList',
  814. page: 1,
  815. offset: 1,
  816. returntype: 'Map',
  817. parammaps: {
  818. pastureid: Cookies.get('pastureid'),
  819. fname: '',
  820. statue: ''
  821. }
  822. }
  823. },
  824. // 关联
  825. relation: {
  826. dialogFormVisible: false,
  827. dialogStatus: '',
  828. temp: {},
  829. rules: {},
  830. tableKey: 0,
  831. list: [],
  832. total: 0,
  833. listLoading: true,
  834. getdataListParm: {
  835. name: 'getFeednurRelation',
  836. page: 1,
  837. offset: 1,
  838. returntype: 'Map',
  839. parammaps: {
  840. pastureid: Cookies.get('pastureid'),
  841. fname: ''
  842. }
  843. }
  844. },
  845. // 营养价值
  846. nutritive: {
  847. dialogFormVisible: false,
  848. dialogStatus: '',
  849. temp: {},
  850. rules: {}
  851. },
  852. textMap: {
  853. create: '新增',
  854. update: '编辑',
  855. feedBank: '饲料库',
  856. relation: '关联',
  857. nutritive: '营养价值'
  858. },
  859. isokDisable: false,
  860. selectList: [],
  861. requestParam: {},
  862. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  863. cellStyle: { padding: 0 + 'px' },
  864. dropState: false,
  865. isOrder: true
  866. }
  867. },
  868. computed: {
  869. // 设置请求头
  870. headers() {
  871. return {
  872. token: getToken()
  873. }
  874. },
  875. uploadData() {
  876. return {
  877. name: 'fname,fclass,feedcode,source,printgroup,allowratio,unitweight,uprice,autozone,autosecondnam,onfirmstartname,trgaddress,jmp,backup1,backup2,backup3',
  878. importParams: '饲料名称,饲料分类,唯一编码,饲料来源,计划类型,允许误差数(kg),包装单位重量(kg),单价,跳转重量域(kg),跳转延时,确认开始,继电器位置,无上域,备用字段01,备用字段02,备用字段03',
  879. sheetname: 'Sheet1',
  880. // 登录牧场
  881. pastureid: Cookies.get('pastureid'),
  882. // 日期参数
  883. dateParams: '',
  884. // 必填参数
  885. requiredParams: '饲料名称,饲料分类',
  886. // 为数值的参数
  887. numParams: ''
  888. }
  889. },
  890. // 设置上传地址
  891. uploadExcelUrl() {
  892. return process.env.VUE_APP_BASE_API + 'authdata/ImportExcel'
  893. }
  894. },
  895. mounted() {
  896. document.addEventListener('click', (e) => {
  897. if (this.$refs.selectInput !== undefined) {
  898. if (!this.$refs.selectInput.contains(e.target)) {
  899. this.arrowDown = true
  900. this.arrowUp = false
  901. } else {
  902. this.arrowDown = false
  903. this.arrowUp = true
  904. }
  905. }
  906. })
  907. },
  908. created() {
  909. this.getList()
  910. this.getDownList()
  911. this.getButtons()
  912. this.getInforvalueList()
  913. },
  914. methods: {
  915. beforeImport(file) {
  916. const isLt2M = file.size / 1024 / 1024 < 2
  917. if (!isLt2M) {
  918. this.$message.error('上传文件大小不能超过 2MB!')
  919. }
  920. return isLt2M
  921. },
  922. handleImportSuccess(res, file) {
  923. this.getList()
  924. if (res.msg === 'ok') {
  925. this.$message({ title: '成功', message: '导入成功:' + res.data.success + '条!', type: 'success', duration: 2000 })
  926. if (res.data.err_count > 0) {
  927. this.$notify({ title: '失败', message: '导入失败:' + res.data.err_count + '条!', type: 'danger', duration: 2000 })
  928. import('@/vendor/Export2Excel').then(excel => {
  929. const list1 = res.data.result
  930. const tHeader = [
  931. '饲料名称', '饲料分类', '唯一编码', '计划类型', '允许误差数(kg)', '包装单位重量(kg)', '单价', '跳转重量域(kg)', '跳转延时', '确认开始', '继电器位置', '无上域', '备用字段01', '备用字段02', '备用字段03', '错误信息'
  932. ]
  933. const filterVal = [
  934. '饲料名称', '饲料分类', '唯一编码', '计划类型', '允许误差数(kg)', '包装单位重量(kg)', '单价', '跳转重量域(kg)', '跳转延时', '确认开始', '继电器位置', '无上域', '备用字段01', '备用字段02', '备用字段03', 'error_msg'
  935. ]
  936. const data1 = this.formatJson(filterVal, list1)
  937. excel.export_json_to_excel({ header: tHeader, data: data1, filename: '饲料表导入报错信息', autoWidth: true, bookType: 'xlsx' })
  938. })
  939. }
  940. } else {
  941. this.$notify({ title: '失败', message: '上传失败', type: 'danger', duration: 2000 })
  942. }
  943. },
  944. formatJson(filterVal, jsonData) {
  945. return jsonData.map(v =>
  946. filterVal.map(j => {
  947. if (j === 'timestamp') {
  948. return parseTime(v[j])
  949. } else {
  950. return v[j]
  951. }
  952. })
  953. )
  954. },
  955. handleExport(item) {
  956. if (item == 1) {
  957. console.log('点击了导出模板')
  958. this.download.getdataListParm.parammaps = this.table.getdataListParm.parammaps
  959. GetDataByName(this.download.getdataListParm).then(response => {
  960. if (response.data.list !== null) {
  961. this.download.list = response.data.list
  962. } else {
  963. this.download.list = []
  964. }
  965. var downloadList = [
  966. { 'obj1': '1、文件类型为xlsx类型,对应表格文件名格式为:文件名称.xlsx;' },
  967. { 'obj1': '2、底部工作表名称不可更改,默认为:Sheet1;' },
  968. // { 'obj1': '3、栏舍名称,实际牛头数,系数(%),系数头数,配方模板,补料配方字体为必填;' },
  969. // { 'obj1': '4、第一列栏舍名称默认为系统中栏舍,不可修改;' },
  970. // { 'obj1': '5、实际牛头数为正整数,系数为正数,至多保留俩位小数;' },
  971. // { 'obj1': '6、配方模板名称必须与系统中配方计划—配方模板中的饲喂配方匹配;若补料配方开启,需与配方模板中的补料配方匹配;' },
  972. // { 'obj1': '7、数据最多可导入200条,超过200条请分多个文件导入。' }
  973. ]
  974. var excelDatas = [
  975. {
  976. tHeader: [
  977. '饲料名称', '饲料分类', '唯一编码', '计划类型', '允许误差数(kg)', '包装单位重量(kg)', '单价', '跳转重量域(kg)', '跳转延时', '确认开始', '继电器位置', '无上域', '备用字段01', '备用字段02', '备用字段03'
  978. ],
  979. filterVal: ['fname', 'fclass', 'feedcode', '', '', '', '', '', '', '', '', '', '', '', '', ''],
  980. tableDatas: this.download.list,
  981. sheetName: 'Sheet1'
  982. }, {
  983. tHeader: ['填写规范:'],
  984. filterVal: ['obj1'],
  985. tableDatas: downloadList,
  986. sheetName: 'Sheet2'
  987. }
  988. ]
  989. json2excel(excelDatas, '饲料表导入模板', true, 'xlsx')
  990. })
  991. // console.log('点击了导出模板')
  992. // const requestParam = this.requestParam
  993. // const url = process.env.VUE_APP_BASE_API + 'file/导入导出模板/库存管理/饲料合同导入模板.xlsx' // 请求下载文件的地址
  994. // console.log(url)
  995. // axios({
  996. // method: 'GET',
  997. // url: url,
  998. // data: requestParam,
  999. // headers: { token: getToken(), optname: 'insertcustomdoc' },
  1000. // responseType: 'blob'
  1001. // }).then(res => {
  1002. // if (!res) return
  1003. // this.percentage = 99
  1004. // setTimeout(() => {
  1005. // this.isPercentage = false
  1006. // }, 2000)
  1007. // const blob = new Blob([res.data], {
  1008. // type: 'application/octet-stream;charset=utf-8'
  1009. // })
  1010. // const url = window.URL.createObjectURL(blob)
  1011. // const aLink = document.createElement('a')
  1012. // aLink.style.display = 'none'
  1013. // aLink.href = url
  1014. // const docname = '饲料表导入模板.xlsx'
  1015. // aLink.setAttribute('download', docname) // 下载的文件
  1016. // document.body.appendChild(aLink)
  1017. // aLink.click()
  1018. // document.body.removeChild(aLink)
  1019. // window.URL.revokeObjectURL(url)
  1020. // })
  1021. } else {
  1022. console.log('点击了导出数据')
  1023. this.download.getdataListParm.parammaps = this.table.getdataListParm.parammaps
  1024. GetDataByName(this.download.getdataListParm).then(response => {
  1025. if (response.data.list !== null) {
  1026. this.download.list = response.data.list
  1027. } else {
  1028. this.download.list = []
  1029. }
  1030. var excelDatas = [
  1031. {
  1032. tHeader: [
  1033. '饲料名称', '饲料分类', '唯一编码', '计划类型', '允许误差数(kg)', '包装单位重量(kg)', '单价', '跳转重量域(kg)', '跳转延时', '确认开始', '继电器位置', '无上域', '备用字段01', '备用字段02', '备用字段03'
  1034. ],
  1035. filterVal: ['fname', 'fclass', 'feedcode', 'source', 'printgroup', 'allowratio', 'unitweight', 'uprice', 'autozone', 'autosecondnam', 'onfirmstartname', 'trgaddress', 'jmp', 'backup1', 'backup2', 'backup3'],
  1036. tableDatas: this.download.list,
  1037. sheetName: 'Sheet1'
  1038. }
  1039. ]
  1040. json2excel(excelDatas, '饲料表', true, 'xlsx')
  1041. })
  1042. }
  1043. },
  1044. getButtons() {
  1045. const Edit = 'FeedTable'
  1046. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  1047. this.isRoleEdit = isRoleEdit
  1048. },
  1049. getInforvalueList() {
  1050. GetDataByName(this.requestParams2).then(response => {
  1051. if (response.data !== null) {
  1052. if (response.data.list[0].inforvalue == 0) {
  1053. this.isInforvalue = false
  1054. } else {
  1055. this.isInforvalue = true
  1056. }
  1057. } else {
  1058. this.isInforvalue = false
  1059. }
  1060. })
  1061. },
  1062. getDownList() {
  1063. GetDataByNames(this.requestParams).then(response => {
  1064. this.jumpDelayList = response.data.getDictByName.list
  1065. this.feedTypeList = response.data.getFeedclassByBig.list
  1066. this.planTypeList = response.data.getDictByName2.list
  1067. this.smallMaterialList = response.data.getTMRListEnableTypeFeed.list
  1068. })
  1069. },
  1070. getList() {
  1071. this.table.listLoading = true
  1072. GetDataByName(this.table.getdataListParm).then(response => {
  1073. console.log('table数据', response.data.list)
  1074. if (response.data.list !== null) {
  1075. this.table.list = response.data.list
  1076. this.table.pageNum = response.data.pageNum
  1077. this.table.pageSize = response.data.pageSize
  1078. this.table.total = response.data.total
  1079. } else {
  1080. this.table.list = []
  1081. }
  1082. setTimeout(() => {
  1083. this.table.listLoading = false
  1084. }, 100)
  1085. })
  1086. },
  1087. handleSearch() {
  1088. console.log('点击了查询')
  1089. this.table.getdataListParm.offset = 1
  1090. this.getList()
  1091. this.arrowDown = true
  1092. this.arrowUp = false
  1093. },
  1094. handleRefresh() {
  1095. console.log('点击了重置')
  1096. this.table.getdataListParm.parammaps.fname = ''
  1097. this.table.getdataListParm.parammaps.fclassid = ''
  1098. this.table.getdataListParm.parammaps.source = ''
  1099. this.table.getdataListParm.parammaps.autozone = ''
  1100. this.table.getdataListParm.parammaps.autosecond = ''
  1101. this.table.getdataListParm.parammaps.allowratio = ''
  1102. this.table.getdataListParm.parammaps.printgroup = ''
  1103. this.table.getdataListParm.parammaps.enable = ''
  1104. this.table.getdataListParm.offset = 1
  1105. this.getList()
  1106. },
  1107. resetTemp() {
  1108. this.create.temp = { pastureid: Cookies.get('pastureid'), fname: '', fclassid: '', fclass: '', feedcode: '', source: '用户自定义', printgroupid: '1', printgroup: '无', unitweight: '', uprice: '', allowratio: '', autozone: '', autosecond: '0', autosecondname: '禁用', confirmstart: '0', confirmstartname: '禁用', enable: '1', trgaddress: '', backup1: '', backup2: '', backup3: '', jmp: '0' }
  1109. },
  1110. // 计划类型
  1111. changePlanList(item) {
  1112. console.log(item, '======')
  1113. this.create.temp.printgroup = this.planTypeList.find(obj => obj.value === item).label
  1114. },
  1115. // 饲料类型
  1116. changeFeedList(item) {
  1117. this.create.temp.fclass = this.feedTypeList.find(obj => obj.id === item).mixname
  1118. },
  1119. // 跳转延时
  1120. changeAutosecond(item) {
  1121. this.create.temp.autosecondname = this.jumpDelayList.find(obj => obj.value === item).label
  1122. },
  1123. // 确认开始
  1124. changeConfirmstart(item) {
  1125. this.create.temp.confirmstartname = this.confirmStartList.find(obj => obj.id === item).name
  1126. },
  1127. changeSmallMaterial(item) {
  1128. if (item !== '') {
  1129. this.create.temp.smtmrname = this.smallMaterialList.find(obj => obj.id === item).tname
  1130. } else {
  1131. this.create.temp.smtmrname = ''
  1132. }
  1133. },
  1134. // 新增
  1135. handleCreate() {
  1136. console.log('点击了新增')
  1137. this.resetTemp()
  1138. this.dialogFull = false
  1139. this.create.dialogStatus = 'create'
  1140. this.create.dialogFormVisible = true
  1141. },
  1142. createData() {
  1143. console.log('点击了新增保存')
  1144. this.isokDisable = true
  1145. setTimeout(() => {
  1146. this.isokDisable = false
  1147. }, 1000)
  1148. this.$refs['temp'].validate(valid => {
  1149. if (valid) {
  1150. const unitweight = /^[1-9]\d*$/
  1151. if (this.create.temp.unitweight !== '') {
  1152. if (!unitweight.test(parseFloat(this.create.temp.unitweight))) {
  1153. this.$message({ type: 'error', message: '包装单位重量请输入正整数', duration: 2000 })
  1154. return false
  1155. }
  1156. }
  1157. // const uprice = /^\d+(\.\d{1,2})?$/
  1158. const uprice = /^(\d+|\d+\.\d{1,2})$/
  1159. if (this.create.temp.uprice !== '') {
  1160. if (!uprice.test(parseFloat(this.create.temp.uprice))) {
  1161. this.$message({ type: 'error', message: '单价请保留两位小数', duration: 2000 })
  1162. return false
  1163. }
  1164. }
  1165. if (this.create.temp.autozone !== '') {
  1166. const autozone = /^([0-9]|(1[0-9]|2[0-9]|3[0-9]|4[0-9]|(50)))$/
  1167. if (!autozone.test(parseFloat(this.create.temp.autozone))) {
  1168. this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于50的整数', duration: 2000 })
  1169. return false
  1170. }
  1171. } else {
  1172. this.create.temp.autozone = '0'
  1173. }
  1174. if (this.create.temp.trgaddress.length > 8) {
  1175. this.$message({ type: 'error', message: '继电器位置请输入1-8位数字', duration: 2000 })
  1176. return false
  1177. }
  1178. const allowratio = /^[0-9]\d*$/
  1179. if (this.create.temp.allowratio !== '') {
  1180. if (!allowratio.test(parseFloat(this.create.temp.allowratio))) {
  1181. this.$message({ type: 'error', message: '允许误差数请输入大于等于0的整数', duration: 2000 })
  1182. return false
  1183. }
  1184. }
  1185. this.isokDisable = true
  1186. setTimeout(() => {
  1187. this.isokDisable = false
  1188. }, 1000)
  1189. this.requestParam.name = 'insertFeed'
  1190. this.requestParam.parammaps = this.create.temp
  1191. if (this.create.temp.allowratio == '') { this.create.temp.allowratio = '0' }
  1192. if (this.create.temp.uprice == '') { this.create.temp.uprice = '0' }
  1193. if (this.create.temp.unitweight == '') { this.create.temp.unitweight = '0' }
  1194. if (this.create.temp.autozone == '') { this.create.temp.autozone = '0' }
  1195. if (this.create.temp.trgaddress == '') { this.create.temp.trgaddress = '0' }
  1196. PostDataByName(this.requestParam).then(response => {
  1197. console.log('新增保存发送参数', this.requestParam)
  1198. if (response.msg !== 'fail') {
  1199. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1200. this.create.dialogFormVisible = false
  1201. this.getList()
  1202. } else {
  1203. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1204. if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
  1205. if (this.create.temp.uprice == '0') { this.create.temp.uprice = '' }
  1206. if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
  1207. if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
  1208. if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
  1209. }
  1210. })
  1211. }
  1212. })
  1213. },
  1214. // 编辑
  1215. handleUpdate(row) {
  1216. console.log('点击了编辑', row)
  1217. this.create.dialogStatus = 'update'
  1218. this.dialogFull = false
  1219. this.create.dialogFormVisible = true
  1220. row.fclassid = String(row.fclassid)
  1221. row.printgroupid = String(row.printgroupid)
  1222. row.autosecond = String(row.autosecond)
  1223. row.confirmstart = String(row.confirmstart)
  1224. row.enable = String(row.enable)
  1225. row.jmp = String(row.jmp)
  1226. if (row.printgroupid !== '') {
  1227. row.printgroup = this.planTypeList.find(obj => obj.value == row.printgroupid).label
  1228. }
  1229. this.create.temp = Object.assign({}, row)
  1230. if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
  1231. if (this.create.temp.uprice == '0.00') { this.create.temp.uprice = '' }
  1232. if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
  1233. if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
  1234. if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
  1235. if (this.create.temp.smtmrid == '-1') { this.create.temp.smtmrid = '' }
  1236. console.log(this.create.temp, '=====123')
  1237. },
  1238. updateData() {
  1239. console.log('点击了编辑保存')
  1240. this.isokDisable = true
  1241. setTimeout(() => {
  1242. this.isokDisable = false
  1243. }, 1000)
  1244. this.$refs['temp'].validate(valid => {
  1245. if (valid) {
  1246. const unitweight = /^[1-9]\d*$/
  1247. if (this.create.temp.unitweight !== '') {
  1248. if (!unitweight.test(parseFloat(this.create.temp.unitweight))) {
  1249. this.$message({ type: 'error', message: '包装单位重量请输入正整数', duration: 2000 })
  1250. return false
  1251. }
  1252. }
  1253. // const uprice = /^\d+(\.\d{1,2})?$/
  1254. const uprice = /^(\d+|\d+\.\d{1,2})$/
  1255. if (this.create.temp.uprice !== '') {
  1256. if (!uprice.test(parseFloat(this.create.temp.uprice))) {
  1257. this.$message({ type: 'error', message: '单价请保留两位小数', duration: 2000 })
  1258. return false
  1259. }
  1260. }
  1261. if (this.create.temp.autozone !== '') {
  1262. const autozone = /^([0-9]|(1[0-9]|2[0-9]|3[0-9]|4[0-9]|(50)))$/
  1263. if (!autozone.test(parseFloat(this.create.temp.autozone))) {
  1264. this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于50的整数', duration: 2000 })
  1265. return false
  1266. }
  1267. } else {
  1268. this.create.temp.autozone = '0'
  1269. }
  1270. if (this.create.temp.trgaddress.length > 8) {
  1271. this.$message({ type: 'error', message: '继电器位置请输入1-8位数字', duration: 2000 })
  1272. return false
  1273. }
  1274. const allowratio = /^[0-9]\d*$/
  1275. if (this.create.temp.allowratio !== '') {
  1276. if (!allowratio.test(parseFloat(this.create.temp.allowratio))) {
  1277. this.$message({ type: 'error', message: '允许误差数请输入大于等于0的整数', duration: 2000 })
  1278. return false
  1279. }
  1280. }
  1281. this.isokDisable = true
  1282. setTimeout(() => {
  1283. this.isokDisable = false
  1284. }, 1000)
  1285. this.requestParam.name = 'updateFeed'
  1286. this.requestParam.parammaps = this.create.temp
  1287. if (this.create.temp.allowratio == '') { this.create.temp.allowratio = '0' }
  1288. if (this.create.temp.uprice == '') { this.create.temp.uprice = '0' }
  1289. if (this.create.temp.unitweight == '') { this.create.temp.unitweight = '0' }
  1290. if (this.create.temp.autozone == '') { this.create.temp.autozone = '0' }
  1291. if (this.create.temp.trgaddress == '') { this.create.temp.trgaddress = '0' }
  1292. PostDataByName(this.requestParam).then(response => {
  1293. console.log('新增保存发送参数', this.requestParam)
  1294. if (response.msg !== 'fail') {
  1295. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1296. this.create.dialogFormVisible = false
  1297. this.getList()
  1298. } else {
  1299. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1300. if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
  1301. if (this.create.temp.uprice == '0') { this.create.temp.uprice = '' }
  1302. if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
  1303. if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
  1304. if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
  1305. }
  1306. })
  1307. }
  1308. })
  1309. },
  1310. // 饲料库
  1311. handleFeedBank() {
  1312. console.log('点击了饲料库')
  1313. this.dialogFull = false
  1314. this.feedBank.dialogStatus = 'feedBank'
  1315. this.feedBank.dialogFormVisible = true
  1316. this.getFeedBankList()
  1317. },
  1318. getFeedBankList() {
  1319. this.feedBank.listLoading = true
  1320. GetDataByName(this.feedBank.getdataListParm).then(response => {
  1321. console.log('table数据', response.data.list)
  1322. if (response.data.list !== null) {
  1323. this.feedBank.list = response.data.list
  1324. this.feedBank.pageNum = response.data.pageNum
  1325. this.feedBank.pageSize = response.data.pageSize
  1326. this.feedBank.total = response.data.total
  1327. } else {
  1328. this.feedBank.list = []
  1329. }
  1330. setTimeout(() => {
  1331. this.feedBank.listLoading = false
  1332. }, 100)
  1333. })
  1334. },
  1335. handleFeedBankSearch() {
  1336. console.log('点击了饲料库搜索')
  1337. this.getFeedBankList()
  1338. this.feedBank.getdataListParm.offset = 1
  1339. },
  1340. handleFeedBankRefresh() {
  1341. console.log('点击了饲料库重置')
  1342. this.feedBank.getdataListParm.parammaps.fname = ''
  1343. this.feedBank.getdataListParm.parammaps.statue = ''
  1344. this.getFeedBankList()
  1345. },
  1346. // 关联
  1347. handleRelation(row) {
  1348. console.log('点击了关联')
  1349. this.dialogFull = false
  1350. this.relation.dialogStatus = 'relation'
  1351. this.relation.dialogFormVisible = true
  1352. this.relation.temp = Object.assign({}, row)
  1353. this.relation.getdataListParm.parammaps.fid = this.relation.temp.id
  1354. this.getRelationList()
  1355. },
  1356. getRelationList() {
  1357. this.relation.listLoading = true
  1358. GetDataByName(this.relation.getdataListParm).then(response => {
  1359. console.log('table数据', response.data.list)
  1360. if (response.data.list !== null) {
  1361. this.relation.list = response.data.list
  1362. this.relation.pageNum = response.data.pageNum
  1363. this.relation.pageSize = response.data.pageSize
  1364. this.relation.total = response.data.total
  1365. } else {
  1366. this.relation.list = []
  1367. }
  1368. setTimeout(() => {
  1369. this.relation.listLoading = false
  1370. }, 100)
  1371. })
  1372. },
  1373. handleRelationSearch() {
  1374. console.log('点击了关联搜索')
  1375. this.relation.getdataListParm.offset = 1
  1376. this.getRelationList()
  1377. },
  1378. disassociateData(row) {
  1379. console.log('点击了取消关联')
  1380. MessageBox.confirm('是否确认取消关联?', {
  1381. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1382. }).then(() => {
  1383. this.isokDisable = true
  1384. setTimeout(() => {
  1385. this.isokDisable = false
  1386. }, 1000)
  1387. this.requestParam.name = 'updateFeedrelation'
  1388. this.requestParam.parammaps = {}
  1389. this.requestParam.parammaps.pastureid = this.relation.temp.pastureid
  1390. this.requestParam.parammaps.fid = this.relation.temp.id
  1391. this.requestParam.parammaps.id = row.id
  1392. PostDataByName(this.requestParam).then(response => {
  1393. console.log('取消关联保存发送参数', this.requestParam)
  1394. if (response.msg !== 'fail') {
  1395. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1396. this.getRelationList()
  1397. this.getList()
  1398. } else {
  1399. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1400. }
  1401. })
  1402. }).catch(() => {
  1403. this.$message({ type: 'info', message: '已取消' })
  1404. })
  1405. },
  1406. relationData(row) {
  1407. console.log('点击了关联保存')
  1408. MessageBox.confirm('是否确认关联?', {
  1409. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1410. }).then(() => {
  1411. this.isokDisable = true
  1412. setTimeout(() => {
  1413. this.isokDisable = false
  1414. }, 1000)
  1415. this.requestParam.name = 'insertFeednur'
  1416. this.requestParam.parammaps = {}
  1417. this.requestParam.parammaps.pastureid = this.relation.temp.pastureid
  1418. this.requestParam.parammaps.fid = this.relation.temp.id
  1419. this.requestParam.parammaps.fname = this.relation.temp.fname
  1420. this.requestParam.parammaps.feedcode = this.relation.temp.feedcode
  1421. this.requestParam.parammaps.price = row.price
  1422. this.requestParam.parammaps.remark = row.remark
  1423. this.requestParam.parammaps.dry = row.dry
  1424. this.requestParam.parammaps.starch = row.starch
  1425. this.requestParam.parammaps.cp = row.cp
  1426. this.requestParam.parammaps.ca = row.ca
  1427. this.requestParam.parammaps.p = row.p
  1428. this.requestParam.parammaps.n = row.n
  1429. this.requestParam.parammaps.fat = row.fat
  1430. this.requestParam.parammaps.adf = row.adf
  1431. this.requestParam.parammaps.ndf = row.ndf
  1432. this.requestParam.parammaps.ndip = row.ndip
  1433. this.requestParam.parammaps.ash = row.ash
  1434. this.requestParam.parammaps.fpercent = row.fpercent
  1435. this.requestParam.parammaps.iscu = row.iscu
  1436. this.requestParam.parammaps.feednurid = row.id
  1437. PostDataByName(this.requestParam).then(response => {
  1438. console.log('关联保存发送参数', this.requestParam)
  1439. if (response.msg !== 'fail') {
  1440. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1441. this.getRelationList()
  1442. this.getList()
  1443. } else {
  1444. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1445. }
  1446. })
  1447. }).catch(() => {
  1448. this.$message({ type: 'info', message: '已取消' })
  1449. })
  1450. },
  1451. // 营养价值
  1452. handleNutritive(row) {
  1453. console.log('点击了营养价值', row)
  1454. this.dialogFull = false
  1455. this.nutritive.dialogStatus = 'nutritive'
  1456. this.nutritive.dialogFormVisible = true
  1457. this.nutritive.temp = Object.assign({}, row)
  1458. },
  1459. nutritiveData() {
  1460. console.log('点击了营养价值保存')
  1461. this.isokDisable = true
  1462. setTimeout(() => {
  1463. this.isokDisable = false
  1464. }, 1000)
  1465. if (this.nutritive.temp.dry == undefined) { this.$set(this.nutritive.temp, 'dry', '') }
  1466. if (this.nutritive.temp.starch == undefined) { this.$set(this.nutritive.temp, 'starch', '') }
  1467. if (this.nutritive.temp.cp == undefined) { this.$set(this.nutritive.temp, 'cp', '') }
  1468. if (this.nutritive.temp.ca == undefined) { this.$set(this.nutritive.temp, 'ca', '') }
  1469. if (this.nutritive.temp.p == undefined) { this.$set(this.nutritive.temp, 'p', '') }
  1470. if (this.nutritive.temp.n == undefined) { this.$set(this.nutritive.temp, 'n', '') }
  1471. if (this.nutritive.temp.fat == undefined) { this.$set(this.nutritive.temp, 'fat', '') }
  1472. if (this.nutritive.temp.adf == undefined) { this.$set(this.nutritive.temp, 'adf', '') }
  1473. if (this.nutritive.temp.ndf == undefined) { this.$set(this.nutritive.temp, 'ndf', '') }
  1474. if (this.nutritive.temp.ndip == undefined) { this.$set(this.nutritive.temp, 'ndip', '') }
  1475. if (this.nutritive.temp.ash == undefined) { this.$set(this.nutritive.temp, 'ash', '') }
  1476. var positiveNumber = /^\d+(\.\d{1,2})?$/
  1477. if (this.nutritive.temp.dry !== '') {
  1478. if (!positiveNumber.test(parseFloat(this.nutritive.temp.dry))) {
  1479. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1480. return false
  1481. }
  1482. }
  1483. console.log(this.nutritive.temp.starch)
  1484. if (this.nutritive.temp.starch !== '') {
  1485. if (!positiveNumber.test(parseFloat(this.nutritive.temp.starch))) {
  1486. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1487. return false
  1488. }
  1489. }
  1490. if (this.nutritive.temp.cp !== '') {
  1491. if (!positiveNumber.test(parseFloat(this.nutritive.temp.cp))) {
  1492. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1493. return false
  1494. }
  1495. }
  1496. if (this.nutritive.temp.ca !== '') {
  1497. if (!positiveNumber.test(parseFloat(this.nutritive.temp.ca))) {
  1498. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1499. return false
  1500. }
  1501. }
  1502. if (this.nutritive.temp.p !== '') {
  1503. if (!positiveNumber.test(parseFloat(this.nutritive.temp.p))) {
  1504. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1505. return false
  1506. }
  1507. }
  1508. if (this.nutritive.temp.n !== '') {
  1509. if (!positiveNumber.test(parseFloat(this.nutritive.temp.n))) {
  1510. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1511. return false
  1512. }
  1513. }
  1514. if (this.nutritive.temp.fat !== '') {
  1515. if (!positiveNumber.test(parseFloat(this.nutritive.temp.fat))) {
  1516. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1517. return false
  1518. }
  1519. }
  1520. if (this.nutritive.temp.adf !== '') {
  1521. if (!positiveNumber.test(parseFloat(this.nutritive.temp.adf))) {
  1522. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1523. return false
  1524. }
  1525. }
  1526. if (this.nutritive.temp.ndf !== '') {
  1527. if (!positiveNumber.test(parseFloat(this.nutritive.temp.ndf))) {
  1528. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1529. return false
  1530. }
  1531. }
  1532. if (this.nutritive.temp.ndip !== '') {
  1533. if (!positiveNumber.test(parseFloat(this.nutritive.temp.ndip))) {
  1534. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1535. return false
  1536. }
  1537. }
  1538. if (this.nutritive.temp.ash !== '') {
  1539. if (!positiveNumber.test(parseFloat(this.nutritive.temp.ash))) {
  1540. this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
  1541. return false
  1542. }
  1543. }
  1544. this.requestParam.name = 'insertFeednur'
  1545. this.requestParam.parammaps = {}
  1546. this.requestParam.parammaps.pastureid = this.nutritive.temp.pastureid
  1547. this.requestParam.parammaps.fid = this.nutritive.temp.id
  1548. this.requestParam.parammaps.fname = this.nutritive.temp.fname
  1549. this.requestParam.parammaps.feedcode = this.nutritive.temp.feedcode
  1550. this.requestParam.parammaps.price = this.nutritive.temp.uprice
  1551. this.requestParam.parammaps.remark = this.nutritive.temp.remark
  1552. this.requestParam.parammaps.dry = this.nutritive.temp.dry
  1553. this.requestParam.parammaps.starch = this.nutritive.temp.starch
  1554. this.requestParam.parammaps.cp = this.nutritive.temp.cp
  1555. this.requestParam.parammaps.ca = this.nutritive.temp.ca
  1556. this.requestParam.parammaps.p = this.nutritive.temp.p
  1557. this.requestParam.parammaps.n = this.nutritive.temp.n
  1558. this.requestParam.parammaps.fat = this.nutritive.temp.fat
  1559. this.requestParam.parammaps.adf = this.nutritive.temp.adf
  1560. this.requestParam.parammaps.ndf = this.nutritive.temp.ndf
  1561. this.requestParam.parammaps.ndip = this.nutritive.temp.ndip
  1562. this.requestParam.parammaps.ash = this.nutritive.temp.ash
  1563. this.requestParam.parammaps.fpercent = this.nutritive.temp.fpercent
  1564. this.requestParam.parammaps.iscu = this.nutritive.temp.iscu
  1565. this.requestParam.parammaps.feednurid = '-1'
  1566. PostDataByName(this.requestParam).then(response => {
  1567. console.log('关联保存发送参数', this.requestParam)
  1568. if (response.msg !== 'fail') {
  1569. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  1570. this.getList()
  1571. this.nutritive.dialogFormVisible = false
  1572. } else {
  1573. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  1574. }
  1575. })
  1576. },
  1577. // 行内删除
  1578. handleRowDelete(row) {
  1579. console.log('点击了行内删除')
  1580. MessageBox.confirm('是否确认删除此信息?', {
  1581. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1582. }).then(() => {
  1583. this.selectList = []
  1584. this.requestParam = {}
  1585. this.requestParam.common = { 'returnmap': '0' }
  1586. this.requestParam.data = []
  1587. this.requestParam.data[0] = { 'name': 'checkDeleteFeed', 'type': 'v', 'parammaps': {
  1588. 'pastureid': row.pastureid,
  1589. 'id': row.id
  1590. }}
  1591. this.requestParam.data[1] = { 'name': 'deleteFeed', 'type': 'e', 'parammaps': {
  1592. 'pastureid': row.pastureid,
  1593. 'id': row.id
  1594. }}
  1595. ExecDataByConfig(this.requestParam).then(response => {
  1596. console.log('删除保存发送参数', this.requestParam)
  1597. if (response.msg === 'fail') {
  1598. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  1599. } else {
  1600. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  1601. this.getList()
  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. // 多项删除
  1613. handleDelete() {
  1614. console.log('点击了删除')
  1615. if (this.selectList.length == 0) {
  1616. this.$message({ type: 'error', message: '请选择饲料表信息', duration: 2000 })
  1617. } else {
  1618. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  1619. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  1620. }).then(() => {
  1621. this.requestParam = {}
  1622. this.requestParam.common = { 'returnmap': '0' }
  1623. this.requestParam.data = []
  1624. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  1625. this.requestParam.data[0].children = []
  1626. this.requestParam.data[0].children[0] = { 'name': 'checkDeleteFeed', 'type': 'v', 'parammaps': {
  1627. id: '@insertSpotList.id',
  1628. pastureid: '@insertSpotList.pastureid'
  1629. }}
  1630. this.requestParam.data[0].children[1] = { 'name': 'deleteFeed', 'type': 'e', 'parammaps': {
  1631. id: '@insertSpotList.id',
  1632. pastureid: '@insertSpotList.pastureid'
  1633. }}
  1634. ExecDataByConfig(this.requestParam).then(response => {
  1635. console.log('删除保存发送参数', this.requestParam)
  1636. if (response.msg === 'fail') {
  1637. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  1638. } else {
  1639. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  1640. this.getList()
  1641. }
  1642. })
  1643. })
  1644. }
  1645. },
  1646. handleChangeOrder() {
  1647. this.isOrder = false
  1648. this.rowDrop()
  1649. },
  1650. saveChangeOrder() {
  1651. // 保存顺序
  1652. var sortArr = []
  1653. for (let i = 0; i < this.table.list.length; i++) {
  1654. var obj = {}
  1655. obj.sort = i + 1
  1656. obj.id = this.table.list[i].id
  1657. obj.pastureid = this.table.list[i].pastureid
  1658. sortArr.push(obj)
  1659. }
  1660. this.requestParam = {}
  1661. this.requestParam.common = { 'returnmap': '0' }
  1662. this.requestParam.data = []
  1663. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': sortArr }}
  1664. this.requestParam.data[0].children = []
  1665. this.requestParam.data[0].children[0] = { 'name': 'updateFeedSort', 'type': 'e', 'parammaps': {
  1666. id: '@insertSpotList.id',
  1667. pastureid: '@insertSpotList.pastureid',
  1668. sort: '@insertSpotList.sort'
  1669. }}
  1670. ExecDataByConfig(this.requestParam).then(response => {
  1671. console.log('顺序切换保存发送参数', this.requestParam)
  1672. if (response.msg === 'fail') {
  1673. this.$notify({ title: '顺序切换失败', message: response.data, type: 'warning', duration: 2000 })
  1674. } else {
  1675. this.$notify({ title: '', message: '顺序切换成功', type: 'success', duration: 2000 })
  1676. this.getList()
  1677. this.isOrder = true
  1678. }
  1679. })
  1680. },
  1681. cancelChangeOrder() {
  1682. // 取消顺序
  1683. this.getList()
  1684. this.isOrder = true
  1685. },
  1686. // 行拖拽
  1687. rowDrop() {
  1688. console.log(document.querySelector('#table .el-table__body-wrapper tbody'))
  1689. const tbody = document.querySelector('#table .el-table__body-wrapper tbody')
  1690. const that = this
  1691. var sortable = Sortable.create(tbody, {
  1692. disabled: that.dropState,
  1693. onChoose({ newIndex, oldIndex }) {
  1694. if (that.dropState == true) {
  1695. sortable.destroy()
  1696. }
  1697. },
  1698. onEnd({ newIndex, oldIndex }) {
  1699. const currRow = that.table.list.splice(oldIndex, 1)[0]
  1700. that.table.list.splice(newIndex, 0, currRow)
  1701. console.log('索引', newIndex)
  1702. console.log('拖动数据', currRow)
  1703. console.log('上', that.table.list[newIndex - 1])
  1704. console.log('下', that.table.list[newIndex + 1])
  1705. }
  1706. })
  1707. },
  1708. }
  1709. }
  1710. </script>
  1711. <style lang="scss" scoped>
  1712. .search{margin-top:10px;}
  1713. .table{margin-top:10px;}
  1714. $width:350px;
  1715. $left:325px;
  1716. .selectInput{
  1717. position: relative;
  1718. display: inline-block;
  1719. .Input{width: $width;position: relative;}
  1720. .el-icon-arrow-down{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  1721. .el-icon-arrow-up{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  1722. .selectUl{
  1723. 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;
  1724. li{
  1725. 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;
  1726. a{float:left;width: 80px;}
  1727. a:hover{color: rgba(0, 204, 102, 0.71); font-weight: 700;}
  1728. }
  1729. }
  1730. }
  1731. </style>