902b8acb68e4a488efa4c3917927cf1edab03e27.svn-base 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  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="cp" 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.cp) | 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.cp) | 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" width="70" class-name="small-padding fixed-width" fixed="right">
  225. <template slot-scope="{row}">
  226. <el-button class="miniSuccess" icon="el-icon-search" @click="handleSee(row)" />
  227. </template>
  228. </el-table-column>
  229. </el-table>
  230. <pagination v-show="table.total>0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  231. </div>
  232. <!-- 查看 -->
  233. <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" class="dialogMinHeight" :visible.sync="see.dialogFormVisible" :close-on-click-modal="false" width="90%">
  234. <template slot="title">
  235. <div class="avue-crud__dialog__header">
  236. <span class="el-dialog__title">
  237. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  238. {{ textMap[see.dialogStatus] }}
  239. </span>
  240. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  241. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  242. <svg-icon v-else icon-class="fullscreen" />
  243. </div>
  244. </div>
  245. </template>
  246. <div class="app-see dialogMinHeight">
  247. <div class="tableSee">
  248. <el-table
  249. :key="see.table.tableKey"
  250. v-loading="see.table.listLoading"
  251. element-loading-text="给我一点时间"
  252. :data="see.table.list"
  253. border
  254. fit
  255. show-summary
  256. highlight-current-row
  257. style="width: 100%;"
  258. :row-style="rowStyle"
  259. :cell-style="tableCellStyle"
  260. class="elTable table-fixed"
  261. >
  262. <el-table-column label="栏舍/指标" min-width="100px" align="center">
  263. <template slot-scope="{row}">
  264. <a @click="clickFormulaHurdlesIndex(row)">{{ row.barname }}</a>
  265. </template>
  266. </el-table-column>
  267. <el-table-column label="牛头数" min-width="100px" align="center" prop="ccount" />
  268. <el-table-column label="干物质(kg)" min-width="130px" align="center">
  269. <el-table-column prop="dry-nur" label="奶牛需要" min-width="70" align="center" />
  270. <el-table-column prop="dry-FT" label="配方量" min-width="58" align="center" />
  271. <el-table-column prop="dry-H" label="TMR料" min-width="65" align="center" />
  272. <el-table-column prop="dry-S" label="采食量" min-width="58" align="center" />
  273. </el-table-column>
  274. <el-table-column label="产奶净能(M)" min-width="130px" align="center">
  275. <el-table-column prop="nm-nur" label="奶牛需要" min-width="70" align="center" />
  276. <el-table-column prop="nm-FT" label="配方量" min-width="58" align="center" />
  277. <el-table-column prop="nm-H" label="TMR料" min-width="65" align="center" />
  278. <el-table-column prop="nm-S" label="采食量" min-width="58" align="center" />
  279. </el-table-column>
  280. <el-table-column label="奶牛能量单位(NND)" min-width="130px" align="center">
  281. <el-table-column prop="nuint-nur" label="奶牛需要" min-width="70" align="center" />
  282. <el-table-column prop="nuint-FT" label="配方量" min-width="58" align="center" />
  283. <el-table-column prop="nuint-H" label="TMR料" min-width="65" align="center" />
  284. <el-table-column prop="nuint-S" label="采食量" min-width="58" align="center" />
  285. </el-table-column>
  286. <el-table-column label="粗蛋白(g)" min-width="130px" align="center">
  287. <el-table-column prop="cp-nur" label="奶牛需要" min-width="70" align="center" />
  288. <el-table-column prop="cp-FT" label="配方量" min-width="58" align="center" />
  289. <el-table-column prop="cp-H" label="TMR料" min-width="65" align="center" />
  290. <el-table-column prop="cp-S" label="采食量" min-width="58" align="center" />
  291. </el-table-column>
  292. <el-table-column label="磷(g)" min-width="130px" align="center">
  293. <el-table-column prop="p-nur" label="奶牛需要" min-width="70" align="center" />
  294. <el-table-column prop="p-FT" label="配方量" min-width="58" align="center" />
  295. <el-table-column prop="p-H" label="TMR料" min-width="65" align="center" />
  296. <el-table-column prop="p-S" label="采食量" min-width="58" align="center" />
  297. </el-table-column>
  298. <el-table-column label="产奶净能(MCal/DM)" min-width="130px" align="center">
  299. <el-table-column prop="nmd-nur" label="奶牛需要" min-width="70" align="center" />
  300. <el-table-column prop="nmd-FT" label="配方量" min-width="58" align="center" />
  301. <el-table-column prop="nmd-H" label="TMR料" min-width="65" align="center" />
  302. <el-table-column prop="nmd-S" label="采食量" min-width="58" align="center" />
  303. </el-table-column>
  304. <el-table-column label="粗蛋白(%DM)" min-width="130px" align="center">
  305. <el-table-column prop="cpd-nur" label="奶牛需要" min-width="70" align="center" />
  306. <el-table-column prop="cpd-FT" label="配方量" min-width="58" align="center" />
  307. <el-table-column prop="cpd-H" label="TMR料" min-width="65" align="center" />
  308. <el-table-column prop="cpd-S" label="采食量" min-width="58" align="center" />
  309. </el-table-column>
  310. <el-table-column label="脂肪(%DM)" min-width="130px" align="center">
  311. <el-table-column prop="fat-nur" label="奶牛需要" min-width="70" align="center" />
  312. <el-table-column prop="fat-FT" label="配方量" min-width="58" align="center" />
  313. <el-table-column prop="fat-H" label="TMR料" min-width="65" align="center" />
  314. <el-table-column prop="fat-S" label="采食量" min-width="58" align="center" />
  315. </el-table-column>
  316. <el-table-column label="淀粉(%DM)" min-width="130px" align="center">
  317. <el-table-column prop="starch-nur" label="奶牛需要" min-width="70" align="center" />
  318. <el-table-column prop="starch-FT" label="配方量" min-width="58" align="center" />
  319. <el-table-column prop="starch-H" label="TMR料" min-width="65" align="center" />
  320. <el-table-column prop="starch-S" label="采食量" min-width="58" align="center" />
  321. </el-table-column>
  322. <el-table-column label="NDF(%DM)" min-width="130px" align="center">
  323. <el-table-column prop="ndf-nur" label="奶牛需要" min-width="70" align="center" />
  324. <el-table-column prop="ndf-FT" label="配方量" min-width="58" align="center" />
  325. <el-table-column prop="ndf-H" label="TMR料" min-width="65" align="center" />
  326. <el-table-column prop="ndf-S" label="采食量" min-width="58" align="center" />
  327. </el-table-column>
  328. <el-table-column label="粗料中的NDF(%DM)" min-width="130px" align="center">
  329. <el-table-column prop="cndf-nur" label="奶牛需要" min-width="70" align="center" />
  330. <el-table-column prop="cndf-FT" label="配方量" min-width="58" align="center" />
  331. <el-table-column prop="cndf-H" label="TMR料" min-width="65" align="center" />
  332. <el-table-column prop="cndf-S" label="采食量" min-width="58" align="center" />
  333. </el-table-column>
  334. <el-table-column label="ADF(%DM)" min-width="130px" align="center">
  335. <el-table-column prop="adf-nur" label="奶牛需要" min-width="70" align="center" />
  336. <el-table-column prop="adf-FT" label="配方量" min-width="58" align="center" />
  337. <el-table-column prop="adf-H" label="TMR料" min-width="65" align="center" />
  338. <el-table-column prop="adf-S" label="采食量" min-width="58" align="center" />
  339. </el-table-column>
  340. <el-table-column label="钙(%DM)" min-width="130px" align="center">
  341. <el-table-column prop="cad-nur" label="奶牛需要" min-width="70" align="center" />
  342. <el-table-column prop="cad-FT" label="配方量" min-width="58" align="center" />
  343. <el-table-column prop="cad-H" label="TMR料" min-width="65" align="center" />
  344. <el-table-column prop="cad-S" label="采食量" min-width="58" align="center" />
  345. </el-table-column>
  346. <el-table-column label="磷(%DM)" min-width="130px" align="center">
  347. <el-table-column prop="pd-nur" label="奶牛需要" min-width="70" align="center" />
  348. <el-table-column prop="pd-FT" label="配方量" min-width="58" align="center" />
  349. <el-table-column prop="pd-H" label="TMR料" min-width="65" align="center" />
  350. <el-table-column prop="pd-S" label="采食量" min-width="58" align="center" />
  351. </el-table-column>
  352. <el-table-column label="(4.0)饲料转化效率(kg/DM)" min-width="130px" align="center">
  353. <el-table-column prop="trans4f-nur" label="奶牛需要" min-width="70" align="center" />
  354. <el-table-column prop="trans4f-FT" label="配方量" min-width="58" align="center" />
  355. <el-table-column prop="trans4f-H" label="TMR料" min-width="65" align="center" />
  356. <el-table-column prop="trans4f-S" label="采食量" min-width="58" align="center" />
  357. </el-table-column>
  358. <el-table-column label="(3.5)饲料转化效率(kg/DM)" min-width="130px" align="center">
  359. <el-table-column prop="trans35f-nur" label="奶牛需要" min-width="70" align="center" />
  360. <el-table-column prop="trans35f-FT" label="配方量" min-width="58" align="center" />
  361. <el-table-column prop="trans35f-H" label="TMR料" min-width="65" align="center" />
  362. <el-table-column prop="trans35f-S" label="采食量" min-width="58" align="center" />
  363. </el-table-column>
  364. <el-table-column label="精粗比(%)" min-width="130px" align="center">
  365. <el-table-column prop="jcrate-nur" label="奶牛需要" min-width="70" align="center" />
  366. <el-table-column prop="jcrate-FT" label="配方量" min-width="58" align="center" />
  367. <el-table-column prop="jcrate-H" label="TMR料" min-width="65" align="center" />
  368. <el-table-column prop="jcrate-S" label="采食量" min-width="58" align="center" />
  369. </el-table-column>
  370. <el-table-column label="日粮成本(元)" min-width="130px" align="center">
  371. <el-table-column prop="uprice-nur" label="奶牛需要" min-width="70" align="center" />
  372. <el-table-column prop="uprice-FT" label="配方量" min-width="58" align="center" />
  373. <el-table-column prop="uprice-H" label="TMR料" min-width="65" align="center" />
  374. <el-table-column prop="uprice-S" label="采食量" min-width="58" align="center" />
  375. </el-table-column>
  376. <el-table-column label="干物质成本(元/公斤)" min-width="130px" align="center">
  377. <el-table-column prop="upriced-nur" label="奶牛需要" min-width="70" align="center" />
  378. <el-table-column prop="upriced-FT" label="配方量" min-width="58" align="center" />
  379. <el-table-column prop="upriced-H" label="TMR料" min-width="65" align="center" />
  380. <el-table-column prop="upriced-S" label="采食量" min-width="58" align="center" />
  381. </el-table-column>
  382. <el-table-column label="日公斤奶成本(元)" min-width="130px" align="center">
  383. <el-table-column prop="kprice-nur" label="奶牛需要" min-width="70" align="center" />
  384. <el-table-column prop="kprice-FT" label="配方量" min-width="58" align="center" />
  385. <el-table-column prop="kprice-H" label="TMR料" min-width="65" align="center" />
  386. <el-table-column prop="kprice-S" label="采食量" min-width="58" align="center" />
  387. </el-table-column>
  388. </el-table>
  389. </div>
  390. </div>
  391. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  392. <el-button class="cancelClose" style="right: 20px" @click="see.dialogFormVisible = false;$route.params.tname = '' ">关闭</el-button>
  393. </div>
  394. </el-dialog>
  395. <!-- 配方详情 -->
  396. <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="details.dialogFormVisible" :close-on-click-modal="false" width="90%">
  397. <template slot="title">
  398. <div class="avue-crud__dialog__header">
  399. <span class="el-dialog__title">
  400. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  401. {{ textMap[details.dialogStatus] }}
  402. </span>
  403. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  404. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  405. <svg-icon v-else icon-class="fullscreen" />
  406. </div>
  407. </div>
  408. </template>
  409. <div class="details dialogMinHeight">
  410. <el-form ref="temp" :rules="details.rules" :model="details.temp" label-position="right" label-width="120px" style="width: 100%;margin-bottom:30px">
  411. <el-row>
  412. <el-col :span="8">
  413. <el-form-item label="历史记录时间:" prop="maxDate">
  414. <el-date-picker v-model="details.temp.maxDate" :clearable="false" format="yyyy-MM-dd" value-format="yyyy-MM-dd" type="date" placeholder="请选择历史记录时间" @change="changeMaxDate" />
  415. </el-form-item>
  416. </el-col>
  417. </el-row>
  418. </el-form>
  419. <div class="table1">
  420. <div ref="templateDialog" class="templateDialog">
  421. <div class="recipeTemplateF">
  422. <p>配方模板表</p>
  423. </div>
  424. </div>
  425. <el-table
  426. :key="details.table1.tableKey"
  427. v-loading="details.table1.listLoading"
  428. element-loading-text="给我一点时间"
  429. :data="details.table1.list"
  430. border
  431. fit
  432. highlight-current-row
  433. style="width: 100%;"
  434. :row-style="rowStyle"
  435. :cell-style="cellStyle"
  436. class="elTable table-fixed"
  437. >
  438. <el-table-column label="序号" type="index" width="50" align="center" />
  439. <el-table-column label="配方名称" min-width="100px" align="center" prop="tname" />
  440. <el-table-column label="牲畜类别" min-width="100px" align="center" prop="ccname" />
  441. <el-table-column label="配方类型" min-width="100px" align="center" prop="fttype" />
  442. <el-table-column label="来源" min-width="100px" align="center" prop="source" />
  443. <el-table-column label="版本号" min-width="100px" align="center" prop="version" />
  444. <el-table-column label="版本时间" min-width="100px" align="center" prop="versiontime" />
  445. </el-table>
  446. </div>
  447. <div class="table2 detailDialog">
  448. <div class="recipeTemplateF">
  449. <p>配方详情表</p>
  450. </div>
  451. <el-table
  452. :key="details.table2.tableKey"
  453. v-loading="details.table2.listLoading"
  454. element-loading-text="给我一点时间"
  455. :data="details.table2.list"
  456. border
  457. fit
  458. show-summary
  459. highlight-current-row
  460. style="width: 100%;"
  461. :row-style="rowStyle"
  462. :cell-style="cellStyle"
  463. class="elTable table-fixed"
  464. >
  465. <el-table-column label="序号" type="index" width="50" align="center" />
  466. <el-table-column label="饲料组" min-width="100px" align="center" prop="feedgroup" />
  467. <el-table-column label="饲料名称" min-width="100px" align="center" prop="fname" />
  468. <el-table-column label="重量(KG)" min-width="100px" align="center" prop="fweight" />
  469. <el-table-column label="搅拌延时(min)" min-width="100px" align="center" prop="autosecond" />
  470. <el-table-column label="是否锁定牛头数比例" min-width="100" align="center">
  471. <template slot-scope="scope">
  472. <span v-if="scope.row.islockcount == '0'">否</span>
  473. <span v-if="scope.row.islockcount == '1'">是</span>
  474. </template>
  475. </el-table-column>
  476. <el-table-column label="顺序" min-width="100" align="center">
  477. <template slot-scope="scope">
  478. <span>{{ scope.row.sort }}</span>
  479. </template>
  480. </el-table-column>
  481. </el-table>
  482. </div>
  483. </div>
  484. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  485. <el-button class="cancelClose" style="right: 20px" @click="details.dialogFormVisible = false;">关闭</el-button>
  486. </div>
  487. </el-dialog>
  488. </div>
  489. </template>
  490. <script>
  491. import { GetDataByName, GETNurJudgeRport } from '@/api/common'
  492. import Cookies from 'js-cookie'
  493. import Pagination from '@/components/Pagination'
  494. import { parseTime } from '@/utils/index.js'
  495. export default {
  496. name: 'FormulationEvaluation',
  497. components: { Pagination },
  498. filters: {
  499. keepTreeNum(value) {
  500. value = Number(value)
  501. return value.toFixed(3)
  502. }
  503. },
  504. data() {
  505. return {
  506. dialogFull: false,
  507. table: {
  508. getdataListParm: {
  509. name: 'judgenurFTReport',
  510. page: 1,
  511. offset: 1,
  512. pagecount: parseInt(Cookies.get('pageCount')),
  513. returntype: 'Map',
  514. parammaps: {
  515. pastureid: Cookies.get('pastureid'),
  516. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  517. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  518. inputDatetime: [new Date(), new Date()]
  519. }
  520. },
  521. tableKey: 1,
  522. list: [],
  523. total: 0,
  524. listLoading: true,
  525. temp: {}
  526. },
  527. see: {
  528. dialogFormVisible: false,
  529. dialogStatus: '',
  530. temp: {},
  531. rules: {},
  532. table: {
  533. tableKey: 0,
  534. list: [],
  535. total: 0,
  536. listLoading: true,
  537. getdataListParm: {
  538. name: 'judgenurFTReport',
  539. page: 1,
  540. offset: 1,
  541. pagecount: 0,
  542. returntype: 'Map',
  543. parammaps: {
  544. name: 'judgenurBarBmReport',
  545. name1: 'judgenurBarHSL'
  546. }
  547. }
  548. }
  549. },
  550. details: {
  551. dialogFormVisible: false,
  552. dialogStatus: '',
  553. temp: {
  554. maxDate: ''
  555. },
  556. rules: {},
  557. table1: {
  558. tableKey: 0,
  559. list: [],
  560. total: 0,
  561. listLoading: true,
  562. getdataListParm: {
  563. name: 'getFTListDateHis',
  564. page: 1,
  565. offset: 1,
  566. pagecount: 10,
  567. returntype: 'Map',
  568. parammaps: {
  569. pastureid: '',
  570. id: ''
  571. }
  572. }
  573. },
  574. table2: {
  575. tableKey: 0,
  576. list: [],
  577. total: 0,
  578. listLoading: true,
  579. getdataListParm: {
  580. name: 'getFTdetailListDate',
  581. page: 1,
  582. offset: 1,
  583. pagecount: 10,
  584. returntype: 'Map',
  585. parammaps: {
  586. pastureid: '',
  587. ftid: '',
  588. date: '',
  589. version: ''
  590. }
  591. }
  592. },
  593. maxDate: {
  594. getdataListParm: {
  595. name: 'getFTMaxDate',
  596. page: 1,
  597. offset: 1,
  598. pagecount: 10,
  599. returntype: 'Map',
  600. parammaps: {
  601. pastureid: ''
  602. }
  603. }
  604. }
  605. },
  606. textMap: {
  607. see: '',
  608. details: '配方详情'
  609. },
  610. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  611. cellStyle: { padding: 0 + 'px' }
  612. }
  613. },
  614. created() {
  615. if (this.$route.params.tname !== '' && this.$route.params.tname !== undefined && this.$route.params.startTime !== undefined && this.$route.params.stopTime !== undefined) {
  616. console.log(this.table.getdataListParm.parammaps.inputDatetime, 'this.table.getdataListParm.parammaps.inputDatetime')
  617. this.table.getdataListParm.parammaps.startTime = this.$route.params.startTime
  618. this.table.getdataListParm.parammaps.stopTime = this.$route.params.stopTime
  619. this.textMap.see = '栏舍详情——' + this.$route.params.tname
  620. setTimeout(() => {
  621. this.dialogFull = false
  622. this.see.dialogStatus = 'see'
  623. this.see.dialogFormVisible = true
  624. }, 500)
  625. this.see.table.getdataListParm.parammaps.ftid = this.$route.params.ftid
  626. this.see.table.getdataListParm.parammaps.pastureid = this.$route.params.pastureid
  627. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  628. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  629. this.getListSee()
  630. }
  631. this.getList()
  632. },
  633. methods: {
  634. getList() {
  635. this.table.listLoading = true
  636. GetDataByName(this.table.getdataListParm).then(response => {
  637. console.log('table数据', response.data.list)
  638. if (response.data.list !== null) {
  639. this.table.list = response.data.list
  640. this.table.pageNum = response.data.pageNum
  641. this.table.pageSize = response.data.pageSize
  642. this.table.total = response.data.total
  643. } else {
  644. this.table.list = []
  645. }
  646. console.log(this.$route.params.tname)
  647. // this.see.dialogFormVisible = false
  648. setTimeout(() => {
  649. this.table.listLoading = false
  650. }, 100)
  651. })
  652. },
  653. changeDate() {
  654. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  655. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  656. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  657. this.getList()
  658. }
  659. },
  660. handleBefore() {
  661. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  662. var start = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  663. var stop = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  664. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  665. this.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  666. this.$forceUpdate()
  667. }
  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. handleNext() {
  673. if (this.table.getdataListParm.parammaps.inputDatetime !== '' && this.table.getdataListParm.parammaps.inputDatetime !== null) {
  674. var start2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  675. var stop2 = new Date(this.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  676. this.table.getdataListParm.parammaps.inputDatetime.length = 0
  677. this.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
  678. this.$forceUpdate()
  679. }
  680. this.table.getdataListParm.parammaps.startTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  681. this.table.getdataListParm.parammaps.stopTime = parseTime(this.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  682. this.getList()
  683. },
  684. tableCellStyle({ row, column, rowIndex, columnIndex }) {
  685. if (columnIndex === 0) {
  686. return {
  687. textDecoration: 'underline'
  688. }
  689. }
  690. return {
  691. textDecoration: 'none'
  692. }
  693. },
  694. clickFormulaTemplateIndex(row) {
  695. console.log('点击了配方模板/指标')
  696. this.dialogFull = false
  697. this.details.dialogStatus = 'details'
  698. this.details.dialogFormVisible = true
  699. this.details.table1.getdataListParm.parammaps.pastureid = row.pastureid
  700. this.details.table1.getdataListParm.parammaps.id = row.ftid
  701. this.details.maxDate.getdataListParm.parammaps.pastureid = row.pastureid
  702. this.getMaxDate()
  703. },
  704. getMaxDate() {
  705. GetDataByName(this.details.maxDate.getdataListParm).then(response => {
  706. if (response.data.list !== null) {
  707. this.details.temp.maxDate = response.data.list[0].maxdate
  708. } else {
  709. this.details.temp.maxDate = ''
  710. }
  711. this.details.table1.getdataListParm.parammaps.date = this.details.temp.maxDate
  712. this.details.table2.getdataListParm.parammaps.date = this.details.temp.maxDate
  713. this.getListDetails1()
  714. })
  715. },
  716. changeMaxDate(item) {
  717. this.details.table1.getdataListParm.parammaps.date = this.details.temp.maxDate
  718. this.getListDetails1()
  719. },
  720. getListDetails1() {
  721. this.details.table1.listLoading = true
  722. GetDataByName(this.details.table1.getdataListParm).then(response => {
  723. console.log('table数据', response.data.list)
  724. if (response.data.list !== null) {
  725. this.details.table1.list = response.data.list
  726. this.details.table1.pageNum = response.data.pageNum
  727. this.details.table1.pageSize = response.data.pageSize
  728. this.details.table1.total = response.data.total
  729. this.details.table2.getdataListParm.parammaps.pastureid = this.details.table1.list[0].pastureid
  730. this.details.table2.getdataListParm.parammaps.ftid = this.details.table1.list[0].id
  731. this.details.table2.getdataListParm.parammaps.version = this.details.table1.list[0].version
  732. this.getListDetails2()
  733. } else {
  734. this.details.table1.list = []
  735. this.details.table2.list = []
  736. }
  737. setTimeout(() => {
  738. this.details.table1.listLoading = false
  739. }, 100)
  740. })
  741. },
  742. getListDetails2() {
  743. this.details.table2.listLoading = true
  744. GetDataByName(this.details.table2.getdataListParm).then(response => {
  745. console.log('table数据', response.data.list)
  746. if (response.data.list !== null) {
  747. this.details.table2.list = response.data.list
  748. this.details.table2.pageNum = response.data.pageNum
  749. this.details.table2.pageSize = response.data.pageSize
  750. this.details.table2.total = response.data.total
  751. } else {
  752. this.details.table2.list = []
  753. }
  754. setTimeout(() => {
  755. this.details.table2.listLoading = false
  756. }, 100)
  757. })
  758. },
  759. clickFormulaHurdlesIndex(row) {
  760. console.log('点击了栏舍/指标')
  761. this.$router.push('/formulationPlan/DhedFormula')
  762. },
  763. handleSee(row) {
  764. console.log('查看', row)
  765. this.dialogFull = false
  766. this.textMap.see = '栏舍详情——' + row.tname
  767. this.see.dialogStatus = 'see'
  768. this.see.dialogFormVisible = true
  769. this.see.table.getdataListParm.parammaps.ftid = row.ftid
  770. this.see.table.getdataListParm.parammaps.pastureid = row.pastureid
  771. this.see.table.getdataListParm.parammaps.startTime = this.table.getdataListParm.parammaps.startTime
  772. this.see.table.getdataListParm.parammaps.stopTime = this.table.getdataListParm.parammaps.stopTime
  773. this.getListSee()
  774. },
  775. getListSee() {
  776. this.see.table.listLoading = true
  777. GETNurJudgeRport(this.see.table.getdataListParm).then(response => {
  778. if (response.data !== null) {
  779. console.log('table数据', response.data)
  780. this.see.table.list = response.data
  781. this.see.table.pageNum = response.data.pageNum
  782. this.see.table.pageSize = response.data.pageSize
  783. this.see.table.total = response.data.total
  784. } else {
  785. this.see.table.list = []
  786. }
  787. setTimeout(() => {
  788. this.see.table.listLoading = false
  789. }, 100)
  790. })
  791. }
  792. }
  793. }
  794. </script>
  795. <style lang="scss" scoped>
  796. .search {clear: both; }
  797. .table { margin-top: 10px; }
  798. .table2{margin-top: 20px;}
  799. .templateDialog{
  800. background: #fff;
  801. position: relative;
  802. }
  803. .detailDialog{
  804. background: #fff;
  805. position: relative;
  806. }
  807. </style>
  808. <style>
  809. .tableSee .el-table { overflow-x: auto; }
  810. .tableSee .el-table__header-wrapper,
  811. .tableSee .el-table__body-wrapper,
  812. .tableSee .el-table__footer-wrapper { overflow: visible; }
  813. .tableSee .el-table::after { position: relative; }
  814. .tableSee .el-table--scrollable-x .el-table__body-wrapper { overflow: visible; }
  815. </style>