507a284fda1e3c178ccee88185c77ad1af3c3e83.svn-base 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-date-picker v-model="table.getdataListParm.parammaps.inputDatetime" :clearable="false" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;margin-right: 10px;" @change="changeDate" />
  5. <el-button class="el-icon-arrow-left elIconArrowLeft" @click="handleBefore" />
  6. <el-button class="el-icon-arrow-right elIconArrowRight" @click="handleNext" />
  7. </div>
  8. <div class="search" />
  9. <div class="table">
  10. <el-table
  11. :key="table.tableKey"
  12. v-loading="table.listLoading"
  13. element-loading-text="给我一点时间"
  14. :data="table.list"
  15. border
  16. fit
  17. highlight-current-row
  18. style="width: 100%;"
  19. :row-style="rowStyle"
  20. :cell-style="tableCellStyle"
  21. class="elTable table-fixed"
  22. >
  23. <el-table-column sortable label="配方模板/指标" min-width="98px" align="center">
  24. <template slot-scope="{row}">
  25. <a @click="clickFormulaTemplateIndex(row)">{{ row.tname }}</a>
  26. </template>
  27. </el-table-column>
  28. <el-table-column sortable label="牛头数" prop="ccount" min-width="58px" align="center" />
  29. <el-table-column label="干物质(kg)" align="center">
  30. <el-table-column sortable prop="dry" label="配方量" min-width="58" align="center" />
  31. <el-table-column sortable label="TMR料" min-width="65" align="center">
  32. <template slot-scope="scope">
  33. <span>{{ (scope.row.Hrate * scope.row.dry) | keepTreeNum }}</span>
  34. </template>
  35. </el-table-column>
  36. <el-table-column sortable label="采食量" min-width="58" align="center">
  37. <template slot-scope="scope">
  38. <span>{{ (scope.row.Srate * scope.row.dry) | keepTreeNum }}</span>
  39. </template>
  40. </el-table-column>
  41. </el-table-column>
  42. <el-table-column label="产奶净能(MJ)" align="center">
  43. <el-table-column sortable prop="nm" label="配方量" min-width="58" align="center" />
  44. <el-table-column sortable label="TMR料" min-width="65" align="center">
  45. <template slot-scope="scope">
  46. <span>{{ (scope.row.Hrate * scope.row.nm) | keepTreeNum }}</span>
  47. </template>
  48. </el-table-column>
  49. <el-table-column sortable label="采食量" min-width="58" align="center">
  50. <template slot-scope="scope">
  51. <span>{{ (scope.row.Srate * scope.row.nm) | keepTreeNum }}</span>
  52. </template>
  53. </el-table-column>
  54. </el-table-column>
  55. <el-table-column label="奶牛能量单位(NND)" align="center">
  56. <el-table-column sortable prop="nuint" label="配方量" min-width="58" align="center" />
  57. <el-table-column sortable label="TMR料" min-width="65" align="center">
  58. <template slot-scope="scope">
  59. <span>{{ (scope.row.Hrate * scope.row.nuint) | keepTreeNum }}</span>
  60. </template>
  61. </el-table-column>
  62. <el-table-column sortable label="采食量" min-width="58" align="center">
  63. <template slot-scope="scope">
  64. <span>{{ (scope.row.Srate * scope.row.nuint) | keepTreeNum }}</span>
  65. </template>
  66. </el-table-column>
  67. </el-table-column>
  68. <el-table-column label="粗蛋白(g)" align="center">
  69. <el-table-column prop="cpd" label="配方量" min-width="58" align="center" />
  70. <el-table-column label="TMR料" min-width="65" align="center">
  71. <template slot-scope="scope">
  72. <span>{{ (scope.row.Hrate * scope.row.cpd) | keepTreeNum }}</span>
  73. </template>
  74. </el-table-column>
  75. <el-table-column sortable label="采食量" min-width="58" align="center">
  76. <template slot-scope="scope">
  77. <span>{{ (scope.row.Srate * scope.row.cpd) | keepTreeNum }}</span>
  78. </template>
  79. </el-table-column>
  80. </el-table-column>
  81. <el-table-column label="磷(g)" align="center">
  82. <el-table-column sortable prop="p" label="配方量" min-width="58" align="center" />
  83. <el-table-column sortable label="TMR料" min-width="65" align="center">
  84. <template slot-scope="scope">
  85. <span>{{ (scope.row.Hrate * scope.row.p) | keepTreeNum }}</span>
  86. </template>
  87. </el-table-column>
  88. <el-table-column sortable label="采食量" min-width="58" align="center">
  89. <template slot-scope="scope">
  90. <span>{{ (scope.row.Srate * scope.row.p) | keepTreeNum }}</span>
  91. </template>
  92. </el-table-column>
  93. </el-table-column>
  94. <el-table-column label="产奶净能(MCal/DM)" align="center">
  95. <el-table-column sortable prop="nmd" label="配方量" min-width="58" align="center" />
  96. <el-table-column sortable label="TMR料" min-width="65" align="center">
  97. <template slot-scope="scope">
  98. <span>{{ (scope.row.Hrate * scope.row.nmd) | keepTreeNum }}</span>
  99. </template>
  100. </el-table-column>
  101. <el-table-column sortable label="采食量" min-width="58" align="center">
  102. <template slot-scope="scope">
  103. <span>{{ (scope.row.Srate * scope.row.nmd) | keepTreeNum }}</span>
  104. </template>
  105. </el-table-column>
  106. </el-table-column>
  107. <el-table-column label="粗蛋白(%DM)" align="center">
  108. <el-table-column sortable prop="cpd" label="配方量" min-width="58" align="center" />
  109. <el-table-column sortable label="TMR料" min-width="65" align="center">
  110. <template slot-scope="scope">
  111. <span>{{ (scope.row.Hrate * scope.row.cpd) | keepTreeNum }}</span>
  112. </template>
  113. </el-table-column>
  114. <el-table-column sortable label="采食量" min-width="58" align="center">
  115. <template slot-scope="scope">
  116. <span>{{ (scope.row.Srate * scope.row.cpd) | keepTreeNum }}</span>
  117. </template>
  118. </el-table-column>
  119. </el-table-column>
  120. <el-table-column label="脂肪(%DM)" align="center">
  121. <el-table-column sortable prop="fat" label="配方量" min-width="58" align="center" />
  122. <el-table-column sortable label="TMR料" min-width="65" align="center">
  123. <template slot-scope="scope">
  124. <span>{{ (scope.row.Hrate * scope.row.fat) | keepTreeNum }}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column sortable label="采食量" min-width="58" align="center">
  128. <template slot-scope="scope">
  129. <span>{{ (scope.row.Srate * scope.row.fat) | keepTreeNum }}</span>
  130. </template>
  131. </el-table-column>
  132. </el-table-column>
  133. <el-table-column label="淀粉(%DM)" align="center">
  134. <el-table-column sortable prop="starch" label="配方量" min-width="58" align="center" />
  135. <el-table-column sortable label="TMR料" min-width="65" align="center">
  136. <template slot-scope="scope">
  137. <span>{{ (scope.row.Hrate * scope.row.starch) | keepTreeNum }}</span>
  138. </template>
  139. </el-table-column>
  140. <el-table-column sortable label="采食量" min-width="58" align="center">
  141. <template slot-scope="scope">
  142. <span>{{ (scope.row.Srate * scope.row.starch) | keepTreeNum }}</span>
  143. </template>
  144. </el-table-column>
  145. </el-table-column>
  146. <el-table-column label="NDF(%DM)" align="center">
  147. <el-table-column sortable prop="ndf" label="配方量" min-width="58" align="center" />
  148. <el-table-column sortable label="TMR料" min-width="65" align="center">
  149. <template slot-scope="scope">
  150. <span>{{ (scope.row.Hrate * scope.row.ndf) | keepTreeNum }}</span>
  151. </template>
  152. </el-table-column>
  153. <el-table-column sortable label="采食量" min-width="58" align="center">
  154. <template slot-scope="scope">
  155. <span>{{ (scope.row.Srate * scope.row.ndf) | keepTreeNum }}</span>
  156. </template>
  157. </el-table-column>
  158. </el-table-column>
  159. <el-table-column label="粗料中的NDF(%DM)" align="center">
  160. <el-table-column sortable prop="cndf" label="配方量" min-width="58" align="center" />
  161. <el-table-column sortable label="TMR料" min-width="65" align="center">
  162. <template slot-scope="scope">
  163. <span>{{ (scope.row.Hrate * scope.row.cndf) | keepTreeNum }}</span>
  164. </template>
  165. </el-table-column>
  166. <el-table-column sortable label="采食量" min-width="58" align="center">
  167. <template slot-scope="scope">
  168. <span>{{ (scope.row.Srate * scope.row.cndf) | keepTreeNum }}</span>
  169. </template>
  170. </el-table-column>
  171. </el-table-column>
  172. <el-table-column label="ADF(%DM)" align="center">
  173. <el-table-column sortable prop="adf" label="配方量" min-width="58" align="center" />
  174. <el-table-column sortable label="TMR料" min-width="65" align="center">
  175. <template slot-scope="scope">
  176. <span>{{ (scope.row.Hrate * scope.row.adf) | keepTreeNum }}</span>
  177. </template>
  178. </el-table-column>
  179. <el-table-column sortable label="采食量" min-width="58" align="center">
  180. <template slot-scope="scope">
  181. <span>{{ (scope.row.Srate * scope.row.adf) | keepTreeNum }}</span>
  182. </template>
  183. </el-table-column>
  184. </el-table-column>
  185. <el-table-column label="钙(%DM)" align="center">
  186. <el-table-column sortable prop="cad" label="配方量" min-width="58" align="center" />
  187. <el-table-column sortable label="TMR料" min-width="65" align="center">
  188. <template slot-scope="scope">
  189. <span>{{ (scope.row.Hrate * scope.row.cad) | keepTreeNum }}</span>
  190. </template>
  191. </el-table-column>
  192. <el-table-column sortable label="采食量" min-width="58" align="center">
  193. <template slot-scope="scope">
  194. <span>{{ (scope.row.Srate * scope.row.cad) | keepTreeNum }}</span>
  195. </template>
  196. </el-table-column>
  197. </el-table-column>
  198. <el-table-column label="磷(%DM)" align="center">
  199. <el-table-column sortable prop="pd" label="配方量" min-width="58" align="center" />
  200. <el-table-column sortable label="TMR料" min-width="65" align="center">
  201. <template slot-scope="scope">
  202. <span>{{ (scope.row.Hrate * scope.row.pd) | keepTreeNum }}</span>
  203. </template>
  204. </el-table-column>
  205. <el-table-column sortable label="采食量" min-width="58" align="center">
  206. <template slot-scope="scope">
  207. <span>{{ (scope.row.Srate * scope.row.pd) | keepTreeNum }}</span>
  208. </template>
  209. </el-table-column>
  210. </el-table-column>
  211. <el-table-column sortable label="精粗比(%)" align="center">
  212. <el-table-column sortable prop="jcrate" label="配方量" min-width="58" align="center" />
  213. <el-table-column sortable label="TMR料" min-width="65" align="center">
  214. <template slot-scope="scope">
  215. <span>{{ (scope.row.Hrate * scope.row.jcrate) | keepTreeNum }}</span>
  216. </template>
  217. </el-table-column>
  218. <el-table-column sortable label="采食量" min-width="58" align="center">
  219. <template slot-scope="scope">
  220. <span>{{ (scope.row.Srate * scope.row.jcrate) | keepTreeNum }}</span>
  221. </template>
  222. </el-table-column>
  223. </el-table-column>
  224. <!-- <el-table-column label="日粮成本(元)" align="center">
  225. <el-table-column prop="nm" label="配方量" min-width="58" align="center" />
  226. <el-table-column label="TMR料" min-width="65" align="center">
  227. <template slot-scope="scope">
  228. <span>{{ (scope.row.Hrate * scope.row.nm) | keepTreeNum }}</span>
  229. </template>
  230. </el-table-column>
  231. <el-table-column label="采食量" min-width="58" align="center">
  232. <template slot-scope="scope">
  233. <span>{{ (scope.row.Srate * scope.row.nm) | keepTreeNum }}</span>
  234. </template>
  235. </el-table-column>
  236. </el-table-column>
  237. <el-table-column label="干物质成本(元/公斤)" min-width="130px" align="center">
  238. <el-table-column prop="nm" label="配方量" min-width="58" align="center" />
  239. <el-table-column label="TMR料" min-width="65" align="center">
  240. <template slot-scope="scope">
  241. <span>{{ (scope.row.Hrate * scope.row.nm) | keepTreeNum }}</span>
  242. </template>
  243. </el-table-column>
  244. <el-table-column label="采食量" min-width="58" align="center">
  245. <template slot-scope="scope">
  246. <span>{{ (scope.row.Srate * scope.row.nm) | keepTreeNum }}</span>
  247. </template>
  248. </el-table-column>
  249. </el-table-column>
  250. <el-table-column label="公斤奶成本(元)" min-width="130px" align="center">
  251. <el-table-column prop="nm" label="配方量" min-width="58" align="center" />
  252. <el-table-column label="TMR料" min-width="65" align="center">
  253. <template slot-scope="scope">
  254. <span>{{ (scope.row.Hrate * scope.row.nm) | keepTreeNum }}</span>
  255. </template>
  256. </el-table-column>
  257. <el-table-column label="采食量" min-width="58" align="center">
  258. <template slot-scope="scope">
  259. <span>{{ (scope.row.Srate * scope.row.nm) | keepTreeNum }}</span>
  260. </template>
  261. </el-table-column>
  262. </el-table-column> -->
  263. <el-table-column label="操作" align="center" width="70" class-name="small-padding fixed-width" fixed="right">
  264. <template slot-scope="{row}">
  265. <el-button class="miniSuccess" icon="el-icon-search" @click="handleSee(row)" />
  266. </template>
  267. </el-table-column>
  268. </el-table>
  269. <pagination v-show="table.total>0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  270. </div>
  271. <!-- 查看 -->
  272. <el-dialog :title="textMap[see.dialogStatus]" :destroy-on-close="true" class="dialogMinHeight" :visible.sync="see.dialogFormVisible" :close-on-click-modal="false" width="90%">
  273. <div class="app-see dialogMinHeight">
  274. <div class="tableSee">
  275. <el-table
  276. :key="see.table.tableKey"
  277. v-loading="see.table.listLoading"
  278. element-loading-text="给我一点时间"
  279. :data="see.table.list"
  280. border
  281. fit
  282. show-summary
  283. highlight-current-row
  284. style="width: 100%;"
  285. :row-style="rowStyle"
  286. :cell-style="tableCellStyle"
  287. class="elTable table-fixed"
  288. >
  289. <el-table-column label="栏舍/指标" min-width="100px" align="center">
  290. <template slot-scope="{row}">
  291. <a @click="clickFormulaHurdlesIndex(row)">{{ row.barname }}</a>
  292. </template>
  293. </el-table-column>
  294. <el-table-column label="牛头数" min-width="100px" align="center" prop="ccount" />
  295. <el-table-column label="干物质(kg)" min-width="130px" align="center">
  296. <el-table-column prop="dry-nur" label="奶牛需要" min-width="70" align="center" />
  297. <el-table-column prop="dry-FT" label="配方量" min-width="58" align="center" />
  298. <el-table-column prop="dry-H" label="TMR料" min-width="65" align="center" />
  299. <el-table-column prop="fat-S" label="采食量" min-width="58" align="center" />
  300. </el-table-column>
  301. <el-table-column label="产奶净能(M)" min-width="130px" align="center">
  302. <el-table-column prop="nm-nur" label="奶牛需要" min-width="70" align="center" />
  303. <el-table-column prop="nm-FT" label="配方量" min-width="58" align="center" />
  304. <el-table-column prop="nm-H" label="TMR料" min-width="65" align="center" />
  305. <el-table-column prop="nm-S" label="采食量" min-width="58" align="center" />
  306. </el-table-column>
  307. <el-table-column label="奶牛能量单位(NND)" min-width="130px" align="center">
  308. <el-table-column prop="nuint-nur" label="奶牛需要" min-width="70" align="center" />
  309. <el-table-column prop="nuint-FT" label="配方量" min-width="58" align="center" />
  310. <el-table-column prop="nuint-H" label="TMR料" min-width="65" align="center" />
  311. <el-table-column prop="nuint-S" label="采食量" min-width="58" align="center" />
  312. </el-table-column>
  313. <el-table-column label="粗蛋白(g)" min-width="130px" align="center">
  314. <el-table-column prop="cp-nur" label="奶牛需要" min-width="70" align="center" />
  315. <el-table-column prop="cp-FT" label="配方量" min-width="58" align="center" />
  316. <el-table-column prop="cp-H" label="TMR料" min-width="65" align="center" />
  317. <el-table-column prop="cp-S" label="采食量" min-width="58" align="center" />
  318. </el-table-column>
  319. <el-table-column label="磷(g)" min-width="130px" align="center">
  320. <el-table-column prop="p-nur" label="奶牛需要" min-width="70" align="center" />
  321. <el-table-column prop="p-FT" label="配方量" min-width="58" align="center" />
  322. <el-table-column prop="p-H" label="TMR料" min-width="65" align="center" />
  323. <el-table-column prop="p-S" label="采食量" min-width="58" align="center" />
  324. </el-table-column>
  325. <el-table-column label="产奶净能(MCal/DM)" min-width="130px" align="center">
  326. <el-table-column prop="nmd-nur" label="奶牛需要" min-width="70" align="center" />
  327. <el-table-column prop="nmd-FT" label="配方量" min-width="58" align="center" />
  328. <el-table-column prop="nmd-H" label="TMR料" min-width="65" align="center" />
  329. <el-table-column prop="nmd-S" label="采食量" min-width="58" align="center" />
  330. </el-table-column>
  331. <el-table-column label="粗蛋白(%DM)" min-width="130px" align="center">
  332. <el-table-column prop="cpd-nur" label="奶牛需要" min-width="70" align="center" />
  333. <el-table-column prop="cpd-FT" label="配方量" min-width="58" align="center" />
  334. <el-table-column prop="cpd-H" label="TMR料" min-width="65" align="center" />
  335. <el-table-column prop="cpd-S" label="采食量" min-width="58" align="center" />
  336. </el-table-column>
  337. <el-table-column label="脂肪(%DM)" min-width="130px" align="center">
  338. <el-table-column prop="fat-nur" label="奶牛需要" min-width="70" align="center" />
  339. <el-table-column prop="fat-FT" label="配方量" min-width="58" align="center" />
  340. <el-table-column prop="fat-H" label="TMR料" min-width="65" align="center" />
  341. <el-table-column prop="fat-S" label="采食量" min-width="58" align="center" />
  342. </el-table-column>
  343. <el-table-column label="淀粉(%DM)" min-width="130px" align="center">
  344. <el-table-column prop="starch-nur" label="奶牛需要" min-width="70" align="center" />
  345. <el-table-column prop="starch-FT" label="配方量" min-width="58" align="center" />
  346. <el-table-column prop="starch-H" label="TMR料" min-width="65" align="center" />
  347. <el-table-column prop="starch-S" label="采食量" min-width="58" align="center" />
  348. </el-table-column>
  349. <el-table-column label="NDF(%DM)" min-width="130px" align="center">
  350. <el-table-column prop="ndf-nur" label="奶牛需要" min-width="70" align="center" />
  351. <el-table-column prop="ndf-FT" label="配方量" min-width="58" align="center" />
  352. <el-table-column prop="ndf-H" label="TMR料" min-width="65" align="center" />
  353. <el-table-column prop="ndf-S" label="采食量" min-width="58" align="center" />
  354. </el-table-column>
  355. <el-table-column label="粗料中的NDF(%DM)" min-width="130px" align="center">
  356. <el-table-column prop="cndf-nur" label="奶牛需要" min-width="70" align="center" />
  357. <el-table-column prop="cndf-FT" label="配方量" min-width="58" align="center" />
  358. <el-table-column prop="cndf-H" label="TMR料" min-width="65" align="center" />
  359. <el-table-column prop="cndf-S" label="采食量" min-width="58" align="center" />
  360. </el-table-column>
  361. <el-table-column label="ADF(%DM)" min-width="130px" align="center">
  362. <el-table-column prop="adf-nur" label="奶牛需要" min-width="70" align="center" />
  363. <el-table-column prop="adf-FT" label="配方量" min-width="58" align="center" />
  364. <el-table-column prop="adf-H" label="TMR料" min-width="65" align="center" />
  365. <el-table-column prop="adf-S" label="采食量" min-width="58" align="center" />
  366. </el-table-column>
  367. <el-table-column label="钙(%DM)" min-width="130px" align="center">
  368. <el-table-column prop="cad-nur" label="奶牛需要" min-width="70" align="center" />
  369. <el-table-column prop="cad-FT" label="配方量" min-width="58" align="center" />
  370. <el-table-column prop="cad-H" label="TMR料" min-width="65" align="center" />
  371. <el-table-column prop="cad-S" label="采食量" min-width="58" align="center" />
  372. </el-table-column>
  373. <el-table-column label="磷(%DM)" min-width="130px" align="center">
  374. <el-table-column prop="p-nur" label="奶牛需要" min-width="70" align="center" />
  375. <el-table-column prop="p-FT" label="配方量" min-width="58" align="center" />
  376. <el-table-column prop="p-H" label="TMR料" min-width="65" align="center" />
  377. <el-table-column prop="p-S" label="采食量" min-width="58" align="center" />
  378. </el-table-column>
  379. <el-table-column label="(4.0)饲料转化效率(kg/DM)" min-width="130px" align="center">
  380. <el-table-column prop="trans4f-nur" label="奶牛需要" min-width="70" align="center" />
  381. <el-table-column prop="trans4f-FT" label="配方量" min-width="58" align="center" />
  382. <el-table-column prop="trans4f-H" label="TMR料" min-width="65" align="center" />
  383. <el-table-column prop="trans4f-S" label="采食量" min-width="58" align="center" />
  384. </el-table-column>
  385. <el-table-column label="(3.5)饲料转化效率(kg/DM)" min-width="130px" align="center">
  386. <el-table-column prop="trans35f-nur" label="奶牛需要" min-width="70" align="center" />
  387. <el-table-column prop="trans35f-FT" label="配方量" min-width="58" align="center" />
  388. <el-table-column prop="trans35f-H" label="TMR料" min-width="65" align="center" />
  389. <el-table-column prop="trans35f-S" label="采食量" min-width="58" align="center" />
  390. </el-table-column>
  391. <el-table-column label="精粗比(%)" min-width="130px" align="center">
  392. <el-table-column prop="jcrate-nur" label="奶牛需要" min-width="70" align="center" />
  393. <el-table-column prop="jcrate-FT" label="配方量" min-width="58" align="center" />
  394. <el-table-column prop="jcrate-H" label="TMR料" min-width="65" align="center" />
  395. <el-table-column prop="jcrate-S" label="采食量" min-width="58" align="center" />
  396. </el-table-column>
  397. <el-table-column label="日粮成本(元)" min-width="130px" align="center">
  398. <el-table-column prop="uprice-nur" label="奶牛需要" min-width="70" align="center" />
  399. <el-table-column prop="uprice-FT" label="配方量" min-width="58" align="center" />
  400. <el-table-column prop="uprice-H" label="TMR料" min-width="65" align="center" />
  401. <el-table-column prop="uprice-S" label="采食量" min-width="58" align="center" />
  402. </el-table-column>
  403. <el-table-column label="干物质成本(元/公斤)" min-width="130px" align="center">
  404. <el-table-column prop="upriced-nur" label="奶牛需要" min-width="70" align="center" />
  405. <el-table-column prop="upriced-FT" label="配方量" min-width="58" align="center" />
  406. <el-table-column prop="upriced-H" label="TMR料" min-width="65" align="center" />
  407. <el-table-column prop="upriced-S" label="采食量" min-width="58" align="center" />
  408. </el-table-column>
  409. <el-table-column label="日公斤奶成本(元)" min-width="130px" align="center">
  410. <el-table-column prop="kprice-nur" label="奶牛需要" min-width="70" align="center" />
  411. <el-table-column prop="kprice-FT" label="配方量" min-width="58" align="center" />
  412. <el-table-column prop="kprice-H" label="TMR料" min-width="65" align="center" />
  413. <el-table-column prop="kprice-S" label="采食量" min-width="58" align="center" />
  414. </el-table-column>
  415. </el-table>
  416. </div>
  417. </div>
  418. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  419. <el-button class="cancelClose" style="right: 20px" @click="see.dialogFormVisible = false;$route.params.tname = '' ">关闭</el-button>
  420. </div>
  421. </el-dialog>
  422. <!-- 配方详情 -->
  423. <el-dialog :title="textMap[details.dialogStatus]" :destroy-on-close="true" :visible.sync="details.dialogFormVisible" :close-on-click-modal="false" width="90%">
  424. <div class="details dialogMinHeight">
  425. <el-form ref="temp" :rules="details.rules" :model="details.temp" label-position="right" label-width="120px" style="width: 100%;margin-bottom:30px">
  426. <el-row>
  427. <el-col :span="8">
  428. <el-form-item label="历史记录时间:" prop="maxDate">
  429. <el-date-picker v-model="details.temp.maxDate" :clearable="false" format="yyyy-MM-dd" value-format="yyyy-MM-dd" type="date" placeholder="请选择历史记录时间" @change="changeMaxDate" />
  430. </el-form-item>
  431. </el-col>
  432. </el-row>
  433. </el-form>
  434. <div class="table1">
  435. <div ref="templateDialog" class="templateDialog">
  436. <div class="recipeTemplateF">
  437. <p>配方模板表</p>
  438. </div>
  439. </div>
  440. <el-table
  441. :key="details.table1.tableKey"
  442. v-loading="details.table1.listLoading"
  443. element-loading-text="给我一点时间"
  444. :data="details.table1.list"
  445. border
  446. fit
  447. highlight-current-row
  448. style="width: 100%;"
  449. :row-style="rowStyle"
  450. :cell-style="cellStyle"
  451. class="elTable table-fixed"
  452. >
  453. <el-table-column label="序号" type="index" width="50" align="center" />
  454. <el-table-column label="配方名称" min-width="100px" align="center" prop="tname" />
  455. <el-table-column label="牲畜类别" min-width="100px" align="center" prop="ccname" />
  456. <el-table-column label="配方类型" min-width="100px" align="center" prop="fttype" />
  457. <el-table-column label="来源" min-width="100px" align="center" prop="source" />
  458. <el-table-column label="版本号" min-width="100px" align="center" prop="version" />
  459. <el-table-column label="版本时间" min-width="100px" align="center" prop="versiontime" />
  460. </el-table>
  461. </div>
  462. <div class="table2 detailDialog">
  463. <div class="recipeTemplateF">
  464. <p>配方详情表</p>
  465. </div>
  466. <el-table
  467. :key="details.table2.tableKey"
  468. v-loading="details.table2.listLoading"
  469. element-loading-text="给我一点时间"
  470. :data="details.table2.list"
  471. border
  472. fit
  473. show-summary
  474. highlight-current-row
  475. style="width: 100%;"
  476. :row-style="rowStyle"
  477. :cell-style="cellStyle"
  478. class="elTable table-fixed"
  479. >
  480. <el-table-column label="序号" type="index" width="50" align="center" />
  481. <el-table-column label="饲料组" min-width="100px" align="center" prop="feedgroup" />
  482. <el-table-column label="饲料名称" min-width="100px" align="center" prop="fname" />
  483. <el-table-column label="重量(KG)" min-width="100px" align="center" prop="fweight" />
  484. <el-table-column label="搅拌延时(min)" min-width="100px" align="center" prop="autosecond" />
  485. <el-table-column label="是否锁定牛头数比例" min-width="100" align="center">
  486. <template slot-scope="scope">
  487. <span v-if="scope.row.islockcount == '0'">否</span>
  488. <span v-if="scope.row.islockcount == '1'">是</span>
  489. </template>
  490. </el-table-column>
  491. <el-table-column label="顺序" min-width="100" align="center">
  492. <template slot-scope="scope">
  493. <span>{{ scope.row.sort }}</span>
  494. </template>
  495. </el-table-column>
  496. </el-table>
  497. </div>
  498. </div>
  499. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  500. <el-button class="cancelClose" style="right: 20px" @click="details.dialogFormVisible = false;">关闭</el-button>
  501. </div>
  502. </el-dialog>
  503. </div>
  504. </template>
  505. <script>
  506. import { GetDataByName, GETNurJudgeRport } from '@/api/common'
  507. import Cookies from 'js-cookie'
  508. import Pagination from '@/components/Pagination'
  509. import { parseTime } from '@/utils/index.js'
  510. export default {
  511. name: 'FormulationEvaluation',
  512. components: { Pagination },
  513. filters: {
  514. keepTreeNum(value) {
  515. value = Number(value)
  516. return value.toFixed(3)
  517. }
  518. },
  519. data() {
  520. return {
  521. table: {
  522. getdataListParm: {
  523. name: 'judgenurFTReport',
  524. page: 1,
  525. offset: 1,
  526. pagecount: parseInt(Cookies.get('pageCount')),
  527. returntype: 'Map',
  528. parammaps: {
  529. pastureid: Cookies.get('pastureid'),
  530. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  531. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  532. inputDatetime: [new Date(), new Date()]
  533. }
  534. },
  535. tableKey: 1,
  536. list: [],
  537. total: 0,
  538. listLoading: true,
  539. temp: {}
  540. },
  541. see: {
  542. dialogFormVisible: false,
  543. dialogStatus: '',
  544. temp: {},
  545. rules: {},
  546. table: {
  547. tableKey: 0,
  548. list: [],
  549. total: 0,
  550. listLoading: true,
  551. getdataListParm: {
  552. name: 'judgenurFTReport',
  553. page: 1,
  554. offset: 1,
  555. pagecount: 0,
  556. returntype: 'Map',
  557. parammaps: {
  558. name: 'judgenurBarBmReport',
  559. name1: 'judgenurBarHSL'
  560. }
  561. }
  562. }
  563. },
  564. details: {
  565. dialogFormVisible: false,
  566. dialogStatus: '',
  567. temp: {
  568. maxDate: ''
  569. },
  570. rules: {},
  571. table1: {
  572. tableKey: 0,
  573. list: [],
  574. total: 0,
  575. listLoading: true,
  576. getdataListParm: {
  577. name: 'getFTListDateHis',
  578. page: 1,
  579. offset: 1,
  580. pagecount: 10,
  581. returntype: 'Map',
  582. parammaps: {
  583. pastureid: '',
  584. id: ''
  585. }
  586. }
  587. },
  588. table2: {
  589. tableKey: 0,
  590. list: [],
  591. total: 0,
  592. listLoading: true,
  593. getdataListParm: {
  594. name: 'getFTdetailListDate',
  595. page: 1,
  596. offset: 1,
  597. pagecount: 10,
  598. returntype: 'Map',
  599. parammaps: {
  600. pastureid: '',
  601. ftid: '',
  602. date: '',
  603. version: ''
  604. }
  605. }
  606. },
  607. maxDate: {
  608. getdataListParm: {
  609. name: 'getFTMaxDate',
  610. page: 1,
  611. offset: 1,
  612. pagecount: 10,
  613. returntype: 'Map',
  614. parammaps: {
  615. pastureid: ''
  616. }
  617. }
  618. }
  619. },
  620. textMap: {
  621. see: '',
  622. details: '配方详情'
  623. },
  624. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  625. cellStyle: { padding: 0 + 'px' }
  626. }
  627. },
  628. created() {
  629. if (this.$route.params.tname !== '' && this.$route.params.tname !== undefined && this.$route.params.startTime !== undefined && this.$route.params.stopTime !== undefined) {
  630. console.log(this.table.getdataListParm.parammaps.inputDatetime, 'this.table.getdataListParm.parammaps.inputDatetime')
  631. this.table.getdataListParm.parammaps.startTime = this.$route.params.startTime
  632. this.table.getdataListParm.parammaps.stopTime = this.$route.params.stopTime
  633. this.textMap.see = '栏舍详情——' + this.$route.params.tname
  634. setTimeout(() => {
  635. this.see.dialogStatus = 'see'
  636. this.see.dialogFormVisible = true
  637. }, 500)
  638. this.see.table.getdataListParm.parammaps.ftid = this.$route.params.ftid
  639. this.see.table.getdataListParm.parammaps.pastureid = this.$route.params.pastureid
  640. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  641. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  642. this.getListSee()
  643. }
  644. this.getList()
  645. },
  646. methods: {
  647. getList() {
  648. this.table.listLoading = true
  649. GetDataByName(this.table.getdataListParm).then(response => {
  650. console.log('table数据', response.data.list)
  651. if (response.data.list !== null) {
  652. this.table.list = response.data.list
  653. this.table.pageNum = response.data.pageNum
  654. this.table.pageSize = response.data.pageSize
  655. this.table.total = response.data.total
  656. } else {
  657. this.table.list = []
  658. }
  659. console.log(this.$route.params.tname)
  660. // this.see.dialogFormVisible = false
  661. setTimeout(() => {
  662. this.table.listLoading = false
  663. }, 100)
  664. })
  665. },
  666. changeDate() {
  667. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  668. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  669. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  670. this.getList()
  671. }
  672. },
  673. handleBefore() {
  674. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  675. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  676. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  677. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  678. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  679. this.$forceUpdate()
  680. }
  681. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  682. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  683. this.getList()
  684. },
  685. handleNext() {
  686. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  687. var start2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  688. var stop2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  689. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  690. this.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
  691. this.$forceUpdate()
  692. }
  693. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  694. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  695. this.getList()
  696. },
  697. tableCellStyle({ row, column, rowIndex, columnIndex }) {
  698. if (columnIndex === 0) {
  699. return {
  700. textDecoration: 'underline'
  701. }
  702. }
  703. return {
  704. textDecoration: 'none'
  705. }
  706. },
  707. clickFormulaTemplateIndex(row) {
  708. console.log('点击了配方模板/指标')
  709. this.details.dialogStatus = 'details'
  710. this.details.dialogFormVisible = true
  711. this.details.table1.getdataListParm.parammaps.pastureid = row.pastureid
  712. this.details.table1.getdataListParm.parammaps.id = row.ftid
  713. this.details.maxDate.getdataListParm.parammaps.pastureid = row.pastureid
  714. this.getMaxDate()
  715. },
  716. getMaxDate() {
  717. GetDataByName(this.details.maxDate.getdataListParm).then(response => {
  718. if (response.data.list !== null) {
  719. this.details.temp.maxDate = response.data.list[0].maxdate
  720. } else {
  721. this.details.temp.maxDate = ''
  722. }
  723. this.details.table1.getdataListParm.parammaps.date = this.details.temp.maxDate
  724. this.details.table2.getdataListParm.parammaps.date = this.details.temp.maxDate
  725. this.getListDetails1()
  726. })
  727. },
  728. changeMaxDate(item) {
  729. this.details.table1.getdataListParm.parammaps.date = this.details.temp.maxDate
  730. this.getListDetails1()
  731. },
  732. getListDetails1() {
  733. this.details.table1.listLoading = true
  734. GetDataByName(this.details.table1.getdataListParm).then(response => {
  735. console.log('table数据', response.data.list)
  736. if (response.data.list !== null) {
  737. this.details.table1.list = response.data.list
  738. this.details.table1.pageNum = response.data.pageNum
  739. this.details.table1.pageSize = response.data.pageSize
  740. this.details.table1.total = response.data.total
  741. this.details.table2.getdataListParm.parammaps.pastureid = this.details.table1.list[0].pastureid
  742. this.details.table2.getdataListParm.parammaps.ftid = this.details.table1.list[0].id
  743. this.details.table2.getdataListParm.parammaps.version = this.details.table1.list[0].version
  744. this.getListDetails2()
  745. } else {
  746. this.details.table1.list = []
  747. this.details.table2.list = []
  748. }
  749. setTimeout(() => {
  750. this.details.table1.listLoading = false
  751. }, 100)
  752. })
  753. },
  754. getListDetails2() {
  755. this.details.table2.listLoading = true
  756. GetDataByName(this.details.table2.getdataListParm).then(response => {
  757. console.log('table数据', response.data.list)
  758. if (response.data.list !== null) {
  759. this.details.table2.list = response.data.list
  760. this.details.table2.pageNum = response.data.pageNum
  761. this.details.table2.pageSize = response.data.pageSize
  762. this.details.table2.total = response.data.total
  763. } else {
  764. this.details.table2.list = []
  765. }
  766. setTimeout(() => {
  767. this.details.table2.listLoading = false
  768. }, 100)
  769. })
  770. },
  771. clickFormulaHurdlesIndex(row) {
  772. console.log('点击了栏舍/指标')
  773. this.$router.push('/formulationPlan/DhedFormula')
  774. },
  775. handleSee(row) {
  776. console.log('查看', row)
  777. this.textMap.see = '栏舍详情——' + row.tname
  778. this.see.dialogStatus = 'see'
  779. this.see.dialogFormVisible = true
  780. this.see.table.getdataListParm.parammaps.ftid = row.ftid
  781. this.see.table.getdataListParm.parammaps.pastureid = row.pastureid
  782. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  783. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  784. this.getListSee()
  785. },
  786. getListSee() {
  787. this.see.table.listLoading = true
  788. GETNurJudgeRport(this.see.table.getdataListParm).then(response => {
  789. if (response.data !== null) {
  790. console.log('table数据', response.data)
  791. this.see.table.list = response.data
  792. this.see.table.pageNum = response.data.pageNum
  793. this.see.table.pageSize = response.data.pageSize
  794. this.see.table.total = response.data.total
  795. } else {
  796. this.see.table.list = []
  797. }
  798. setTimeout(() => {
  799. this.see.table.listLoading = false
  800. }, 100)
  801. })
  802. }
  803. }
  804. }
  805. </script>
  806. <style lang="scss" scoped>
  807. .search {clear: both; }
  808. .table { margin-top: 10px; }
  809. .table2{margin-top: 20px;}
  810. .templateDialog{
  811. background: #fff;
  812. position: relative;
  813. }
  814. .detailDialog{
  815. background: #fff;
  816. position: relative;
  817. }
  818. </style>
  819. <style>
  820. .tableSee .el-table { overflow-x: auto; }
  821. .tableSee .el-table__header-wrapper,
  822. .tableSee .el-table__body-wrapper,
  823. .tableSee .el-table__footer-wrapper { overflow: visible; }
  824. .tableSee .el-table::after { position: relative; }
  825. .tableSee .el-table--scrollable-x .el-table__body-wrapper { overflow: visible; }
  826. </style>