108bb2375b56d9e60d26661cd50b06972f488e4a.svn-base 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  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 label="配方模板/指标" min-width="110px" 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 label="牛头数" prop="ccount" min-width="110px" align="center" />
  29. <el-table-column label="干物质(kg)" min-width="130px" align="center">
  30. <el-table-column prop="dry" label="配方量" min-width="70" align="center" />
  31. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  43. <el-table-column prop="nm" label="配方量" min-width="70" align="center" />
  44. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  56. <el-table-column prop="nuint" label="配方量" min-width="70" align="center" />
  57. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  69. <el-table-column prop="cpd" label="配方量" min-width="70" align="center" />
  70. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  82. <el-table-column prop="p" label="配方量" min-width="70" align="center" />
  83. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  95. <el-table-column prop="nmd" label="配方量" min-width="70" align="center" />
  96. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  108. <el-table-column prop="cpd" label="配方量" min-width="70" align="center" />
  109. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  121. <el-table-column prop="fat" label="配方量" min-width="70" align="center" />
  122. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  134. <el-table-column prop="starch" label="配方量" min-width="70" align="center" />
  135. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  147. <el-table-column prop="ndf" label="配方量" min-width="70" align="center" />
  148. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  160. <el-table-column prop="cndf" label="配方量" min-width="70" align="center" />
  161. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  173. <el-table-column prop="adf" label="配方量" min-width="70" align="center" />
  174. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  186. <el-table-column prop="cad" label="配方量" min-width="70" align="center" />
  187. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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)" min-width="130px" align="center">
  199. <el-table-column prop="pd" label="配方量" min-width="70" align="center" />
  200. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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 label="精粗比(%)" min-width="130px" align="center">
  212. <el-table-column prop="jcrate" label="配方量" min-width="70" align="center" />
  213. <el-table-column label="TMR料" min-width="70" 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 label="采食量" min-width="70" 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="日粮成本(元)" min-width="130px" align="center">
  225. <el-table-column prop="nm" label="配方量" min-width="70" align="center" />
  226. <el-table-column label="TMR料" min-width="70" 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="70" 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="70" align="center" />
  239. <el-table-column label="TMR料" min-width="70" 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="70" 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="70" align="center" />
  252. <el-table-column label="TMR料" min-width="70" 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="70" 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="100" class-name="small-padding fixed-width" fixed="right">
  264. <template slot-scope="{row}">
  265. <el-button class="miniPrimary" @click="handleSee(row)">查看</el-button>
  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" :visible.sync="see.dialogFormVisible" :close-on-click-modal="false" width="90%">
  273. <div class="app-see">
  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="70" align="center" />
  298. <el-table-column prop="dry-H" label="TMR料" min-width="70" align="center" />
  299. <el-table-column prop="fat-S" label="采食量" min-width="70" 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="70" align="center" />
  304. <el-table-column prop="nm-H" label="TMR料" min-width="70" align="center" />
  305. <el-table-column prop="nm-S" label="采食量" min-width="70" 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="70" align="center" />
  310. <el-table-column prop="nuint-H" label="TMR料" min-width="70" align="center" />
  311. <el-table-column prop="nuint-S" label="采食量" min-width="70" 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="70" align="center" />
  316. <el-table-column prop="cp-H" label="TMR料" min-width="70" align="center" />
  317. <el-table-column prop="cp-S" label="采食量" min-width="70" 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="70" align="center" />
  322. <el-table-column prop="p-H" label="TMR料" min-width="70" align="center" />
  323. <el-table-column prop="p-S" label="采食量" min-width="70" 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="70" align="center" />
  328. <el-table-column prop="nmd-H" label="TMR料" min-width="70" align="center" />
  329. <el-table-column prop="nmd-S" label="采食量" min-width="70" 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="70" align="center" />
  334. <el-table-column prop="cpd-H" label="TMR料" min-width="70" align="center" />
  335. <el-table-column prop="cpd-S" label="采食量" min-width="70" 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="70" align="center" />
  340. <el-table-column prop="fat-H" label="TMR料" min-width="70" align="center" />
  341. <el-table-column prop="fat-S" label="采食量" min-width="70" 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="70" align="center" />
  346. <el-table-column prop="starch-H" label="TMR料" min-width="70" align="center" />
  347. <el-table-column prop="starch-S" label="采食量" min-width="70" 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="70" align="center" />
  352. <el-table-column prop="ndf-H" label="TMR料" min-width="70" align="center" />
  353. <el-table-column prop="ndf-S" label="采食量" min-width="70" 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="70" align="center" />
  358. <el-table-column prop="cndf-H" label="TMR料" min-width="70" align="center" />
  359. <el-table-column prop="cndf-S" label="采食量" min-width="70" 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="70" align="center" />
  364. <el-table-column prop="adf-H" label="TMR料" min-width="70" align="center" />
  365. <el-table-column prop="adf-S" label="采食量" min-width="70" 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="70" align="center" />
  370. <el-table-column prop="cad-H" label="TMR料" min-width="70" align="center" />
  371. <el-table-column prop="cad-S" label="采食量" min-width="70" 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="70" align="center" />
  376. <el-table-column prop="p-H" label="TMR料" min-width="70" align="center" />
  377. <el-table-column prop="p-S" label="采食量" min-width="70" 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="70" align="center" />
  382. <el-table-column prop="trans4f-H" label="TMR料" min-width="70" align="center" />
  383. <el-table-column prop="trans4f-S" label="采食量" min-width="70" 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="70" align="center" />
  388. <el-table-column prop="trans35f-H" label="TMR料" min-width="70" align="center" />
  389. <el-table-column prop="trans35f-S" label="采食量" min-width="70" 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="70" align="center" />
  394. <el-table-column prop="jcrate-H" label="TMR料" min-width="70" align="center" />
  395. <el-table-column prop="jcrate-S" label="采食量" min-width="70" 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="70" align="center" />
  400. <el-table-column prop="uprice-H" label="TMR料" min-width="70" align="center" />
  401. <el-table-column prop="uprice-S" label="采食量" min-width="70" 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="70" align="center" />
  406. <el-table-column prop="upriced-H" label="TMR料" min-width="70" align="center" />
  407. <el-table-column prop="upriced-S" label="采食量" min-width="70" 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="70" align="center" />
  412. <el-table-column prop="kprice-H" label="TMR料" min-width="70" align="center" />
  413. <el-table-column prop="kprice-S" label="采食量" min-width="70" 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" @click="see.dialogFormVisible = false; ">关闭</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">
  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-select v-model="details.temp.maxDate" placeholder="请选择历史记录时间" class="filter-item" style="width:100%;">
  430. <el-option v-for="item in livestockTypeList" :key="item.id" :label="item.name" :value="item.id" />
  431. </el-select>
  432. </el-form-item>
  433. </el-col>
  434. </el-row>
  435. </el-form>
  436. <div class="table1">
  437. <div ref="templateDialog" class="templateDialog">
  438. <div class="recipeTemplate">
  439. <p>配方模板表</p>
  440. </div>
  441. </div>
  442. <el-table
  443. :key="details.table1.tableKey"
  444. v-loading="details.table1.listLoading"
  445. element-loading-text="给我一点时间"
  446. :data="details.table1.list"
  447. border
  448. fit
  449. highlight-current-row
  450. style="width: 100%;"
  451. :row-style="rowStyle"
  452. :cell-style="cellStyle"
  453. class="elTable table-fixed"
  454. >
  455. <el-table-column label="配方名称" min-width="100px" align="center" prop="tname" />
  456. <el-table-column label="牲畜类别" min-width="100px" align="center" prop="ccname" />
  457. <el-table-column label="配方类型" min-width="100px" align="center" prop="fttype" />
  458. <el-table-column label="来源" min-width="100px" align="center" prop="source" />
  459. </el-table>
  460. </div>
  461. <div class="table2 detailDialog">
  462. <div class="recipeTemplate">
  463. <p>配方详情表</p>
  464. </div>
  465. <el-table
  466. :key="details.table2.tableKey"
  467. v-loading="details.table2.listLoading"
  468. element-loading-text="给我一点时间"
  469. :data="details.table2.list"
  470. border
  471. fit
  472. show-summary
  473. highlight-current-row
  474. style="width: 100%;"
  475. :row-style="rowStyle"
  476. :cell-style="cellStyle"
  477. class="elTable table-fixed"
  478. >
  479. <el-table-column label="序号" type="index" width="50" />
  480. <el-table-column label="饲料组" min-width="100px" align="center" prop="feedgroup" />
  481. <el-table-column label="饲料名称" min-width="100px" align="center" prop="fname" />
  482. <el-table-column label="重量(KG)" min-width="100px" align="center" prop="fweight" />
  483. <el-table-column label="搅拌延时(min)" min-width="100px" align="center" prop="autosecondname" />
  484. <el-table-column label="是否锁定牛头数比例" min-width="100px" align="center" prop="islockcount" />
  485. <el-table-column label="顺序" min-width="100px" align="center" prop="sort" />
  486. </el-table>
  487. </div>
  488. </div>
  489. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  490. <el-button class="cancelClose" @click="details.dialogFormVisible = false; ">关闭</el-button>
  491. </div>
  492. </el-dialog>
  493. </div>
  494. </template>
  495. <script>
  496. import { GetDataByName, GETNurJudgeRport } from '@/api/common'
  497. import Cookies from 'js-cookie'
  498. import Pagination from '@/components/Pagination'
  499. import { parseTime } from '@/utils/index.js'
  500. export default {
  501. name: 'FormulationEvaluation',
  502. components: { Pagination },
  503. filters: {
  504. keepTreeNum(value) {
  505. value = Number(value)
  506. return value.toFixed(3)
  507. }
  508. },
  509. data() {
  510. return {
  511. livestockTypeList: [{ id: 0, name: '2020-01-01' }],
  512. table: {
  513. getdataListParm: {
  514. name: 'judgenurFTReport',
  515. page: 1,
  516. offset: 1,
  517. pagecount: 10,
  518. returntype: 'Map',
  519. parammaps: {
  520. pastureid: Cookies.get('pastureid'),
  521. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  522. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  523. inputDatetime: [new Date(), new Date()]
  524. }
  525. },
  526. tableKey: 1,
  527. list: [],
  528. total: 0,
  529. listLoading: true,
  530. temp: {}
  531. },
  532. see: {
  533. dialogFormVisible: false,
  534. dialogStatus: '',
  535. temp: {},
  536. rules: {},
  537. table: {
  538. tableKey: 0,
  539. list: [],
  540. total: 0,
  541. listLoading: true,
  542. getdataListParm: {
  543. name: 'judgenurFTReport',
  544. page: 1,
  545. offset: 1,
  546. pagecount: 0,
  547. returntype: 'Map',
  548. parammaps: {
  549. name: 'judgenurBarBmReport',
  550. name1: 'judgenurBarHSL'
  551. }
  552. }
  553. }
  554. },
  555. details: {
  556. dialogFormVisible: false,
  557. dialogStatus: '',
  558. temp: {
  559. maxDate: ''
  560. },
  561. rules: {},
  562. table1: {
  563. tableKey: 0,
  564. list: [],
  565. total: 0,
  566. listLoading: true,
  567. getdataListParm: {
  568. name: 'getFTListDateHis',
  569. page: 1,
  570. offset: 1,
  571. pagecount: 10,
  572. returntype: 'Map',
  573. parammaps: {
  574. pastureid: '',
  575. id: ''
  576. }
  577. }
  578. },
  579. table2: {
  580. tableKey: 0,
  581. list: [],
  582. total: 0,
  583. listLoading: true,
  584. getdataListParm: {
  585. name: 'getFTdetailListDate',
  586. page: 1,
  587. offset: 1,
  588. pagecount: 10,
  589. returntype: 'Map',
  590. parammaps: {
  591. pastureid: '',
  592. ftid: '',
  593. date: ''
  594. }
  595. }
  596. },
  597. maxDate: {
  598. getdataListParm: {
  599. name: 'getFTMaxDate',
  600. page: 1,
  601. offset: 1,
  602. pagecount: 10,
  603. returntype: 'Map',
  604. parammaps: {
  605. pastureid: ''
  606. }
  607. }
  608. }
  609. },
  610. textMap: {
  611. see: '',
  612. details: '配方详情'
  613. },
  614. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  615. cellStyle: { padding: 0 + 'px' }
  616. }
  617. },
  618. created() {
  619. if (this.$route.params.tname !== undefined && this.$route.params.startTime !== undefined && this.$route.params.stopTime !== undefined) {
  620. this.table.getdataListParm.parammaps.startTime = this.$route.params.startTime
  621. this.table.getdataListParm.parammaps.inputDatetime = this.$route.params.inputDatetime
  622. this.table.getdataListParm.parammaps.stopTime = this.$route.params.stopTime
  623. this.textMap.see = '栏舍详情——' + this.$route.params.tname
  624. this.see.dialogStatus = 'see'
  625. this.see.dialogFormVisible = true
  626. this.see.table.getdataListParm.parammaps.ftid = this.$route.params.ftid
  627. this.see.table.getdataListParm.parammaps.pastureid = this.$route.params.pastureid
  628. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  629. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  630. this.getListSee()
  631. }
  632. this.getList()
  633. },
  634. methods: {
  635. getList() {
  636. this.table.listLoading = true
  637. GetDataByName(this.table.getdataListParm).then(response => {
  638. console.log('table数据', response.data.list)
  639. if (response.data.list !== null) {
  640. this.table.list = response.data.list
  641. this.table.pageNum = response.data.pageNum
  642. this.table.pageSize = response.data.pageSize
  643. this.table.total = response.data.total
  644. } else {
  645. this.table.list = []
  646. }
  647. setTimeout(() => {
  648. this.table.listLoading = false
  649. }, 100)
  650. })
  651. },
  652. changeDate() {
  653. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  654. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  655. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  656. this.getList()
  657. }
  658. },
  659. handleBefore() {
  660. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  661. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  662. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  663. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  664. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  665. this.$forceUpdate()
  666. }
  667. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  668. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  669. this.getList()
  670. },
  671. handleNext() {
  672. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  673. var start2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  674. var stop2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  675. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  676. this.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
  677. this.$forceUpdate()
  678. }
  679. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  680. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  681. this.getList()
  682. },
  683. tableCellStyle({ row, column, rowIndex, columnIndex }) {
  684. if (columnIndex === 0) {
  685. return {
  686. textDecoration: 'underline'
  687. }
  688. }
  689. return {
  690. textDecoration: 'none'
  691. }
  692. },
  693. clickFormulaTemplateIndex(row) {
  694. console.log('点击了配方模板/指标')
  695. this.details.dialogStatus = 'details'
  696. this.details.dialogFormVisible = true
  697. this.details.table1.getdataListParm.parammaps.pastureid = row.pastureid
  698. this.details.table1.getdataListParm.parammaps.id = row.ftid
  699. this.details.maxDate.getdataListParm.parammaps.pastureid = row.pastureid
  700. this.getMaxDate()
  701. },
  702. getMaxDate() {
  703. GetDataByName(this.details.maxDate.getdataListParm).then(response => {
  704. if (response.data.list !== null) {
  705. this.details.temp.maxDate = response.data.list[0].maxdate
  706. } else {
  707. this.details.temp.maxDate = ''
  708. }
  709. this.details.table1.getdataListParm.parammaps.date = this.details.temp.maxDate
  710. this.details.table2.getdataListParm.parammaps.date = this.details.temp.maxDate
  711. this.getListDetails1()
  712. })
  713. },
  714. getListDetails1() {
  715. this.details.table1.listLoading = true
  716. GetDataByName(this.details.table1.getdataListParm).then(response => {
  717. console.log('table数据', response.data.list)
  718. if (response.data.list !== null) {
  719. this.details.table1.list = response.data.list
  720. this.details.table1.pageNum = response.data.pageNum
  721. this.details.table1.pageSize = response.data.pageSize
  722. this.details.table1.total = response.data.total
  723. this.details.table2.getdataListParm.parammaps.pastureid = this.details.table1.list[0].pastureid
  724. this.details.table2.getdataListParm.parammaps.ftid = this.details.table1.list[0].id
  725. this.getListDetails2()
  726. } else {
  727. this.details.table1.list = []
  728. }
  729. setTimeout(() => {
  730. this.details.table1.listLoading = false
  731. }, 100)
  732. })
  733. },
  734. getListDetails2() {
  735. this.details.table2.listLoading = true
  736. GetDataByName(this.details.table2.getdataListParm).then(response => {
  737. console.log('table数据', response.data.list)
  738. if (response.data.list !== null) {
  739. this.details.table2.list = response.data.list
  740. this.details.table2.pageNum = response.data.pageNum
  741. this.details.table2.pageSize = response.data.pageSize
  742. this.details.table2.total = response.data.total
  743. } else {
  744. this.details.table2.list = []
  745. }
  746. setTimeout(() => {
  747. this.details.table2.listLoading = false
  748. }, 100)
  749. })
  750. },
  751. clickFormulaHurdlesIndex(row) {
  752. console.log('点击了栏舍/指标')
  753. this.$router.push('/formulationPlan/DhedFormula')
  754. },
  755. handleSee(row) {
  756. console.log('查看', row)
  757. this.textMap.see = '栏舍详情——' + row.tname
  758. this.see.dialogStatus = 'see'
  759. this.see.dialogFormVisible = true
  760. this.see.table.getdataListParm.parammaps.ftid = row.ftid
  761. this.see.table.getdataListParm.parammaps.pastureid = row.pastureid
  762. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  763. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  764. this.getListSee()
  765. },
  766. getListSee() {
  767. this.see.table.listLoading = true
  768. GETNurJudgeRport(this.see.table.getdataListParm).then(response => {
  769. if (response.data !== null) {
  770. console.log('table数据', response.data)
  771. this.see.table.list = response.data
  772. this.see.table.pageNum = response.data.pageNum
  773. this.see.table.pageSize = response.data.pageSize
  774. this.see.table.total = response.data.total
  775. } else {
  776. this.see.table.list = []
  777. }
  778. setTimeout(() => {
  779. this.see.table.listLoading = false
  780. }, 100)
  781. })
  782. }
  783. }
  784. }
  785. </script>
  786. <style lang="scss" scoped>
  787. .search {clear: both; }
  788. .table { margin-top: 10px; }
  789. .table2{margin-top: 20px;}
  790. .templateDialog{
  791. background: #fff;
  792. position: relative;
  793. }
  794. .detailDialog{
  795. background: #fff;
  796. position: relative;
  797. }
  798. </style>
  799. <style>
  800. .tableSee .el-table { overflow-x: auto; }
  801. .tableSee .el-table__header-wrapper,
  802. .tableSee .el-table__body-wrapper,
  803. .tableSee .el-table__footer-wrapper { overflow: visible; }
  804. .tableSee .el-table::after { position: relative; }
  805. .tableSee .el-table--scrollable-x .el-table__body-wrapper { overflow: visible; }
  806. </style>