index.vue 42 KB

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