revisePlan.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <div v-if="visible">
  3. <el-dialog id="reviseplanDialog" :title="title" :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="visible" :close-on-click-modal="false" :modal-append-to-body="false" :append-to-body="true" :before-close="closeDialog" width="90%">
  4. <template slot="title">
  5. <div class="avue-crud__dialog__header">
  6. <span class="el-dialog__title">
  7. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  8. {{ title }}
  9. </span>
  10. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  11. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  12. <svg-icon v-else icon-class="fullscreen" />
  13. </div>
  14. </div>
  15. </template>
  16. <el-row class="dialogMinHeight">
  17. <el-button class="successBorder" size="medium" style="position: absolute;z-index: 1;right: 2px;top: 2px;" @click="saveData()">{{$t('message.msg304')}}</el-button>
  18. <el-tabs v-model="parentActiveName" type="border-card" @tab-click="handleClick">
  19. <el-tab-pane :label="$t('message.msg305')" name="栏舍配方">
  20. <DhedFormula ref="DhedFormula" :parent-date="date" />
  21. </el-tab-pane>
  22. <el-tab-pane :label="$t('message.msg306')" name="撒料计划">
  23. <MaterialIssuancePlan ref="MaterialIssuancePlan" :parent-date="date" />
  24. </el-tab-pane>
  25. <el-tab-pane :label="$t('message.msg307')" name="预混计划">
  26. <PremixedPlan ref="PremixedPlan" :parent-date="date" />
  27. </el-tab-pane>
  28. <el-tab-pane :label="$t('message.msg308')" name="剩料计划">
  29. <SurplusMaterialPlan ref="SurplusMaterialPlan" :parent-date="date" />
  30. </el-tab-pane>
  31. </el-tabs>
  32. </el-row>
  33. <div slot="footer" class="dialog-footer">
  34. <el-button class="cancelClose cancelClose1" @click="closeDialog()">{{$t('common.closed')}}</el-button>
  35. </div>
  36. </el-dialog>
  37. </div>
  38. </template>
  39. <script>
  40. import { PostDataByName } from '@/api/common'
  41. import DhedFormula from './typePage/dhedFormula.vue'
  42. import MaterialIssuancePlan from './typePage/materialIssuancePlan.vue'
  43. import PremixedPlan from './typePage/premixedPlan.vue'
  44. import SurplusMaterialPlan from './typePage/surplusMaterialPlan.vue'
  45. import { MessageBox } from 'element-ui'
  46. import Cookies from 'js-cookie'
  47. export default {
  48. name: 'RevisePlan',
  49. components: {
  50. DhedFormula, MaterialIssuancePlan, PremixedPlan,SurplusMaterialPlan
  51. },
  52. props: {
  53. show: { type: Boolean, default: false }, // 弹框可见标志
  54. parentActiveName: { type: String, defalut: ''},
  55. parentDate: { type: String, defalut: '' }
  56. },
  57. data() {
  58. return {
  59. dialogFull: false,
  60. typeList: [{ id: '1', effect: 'dark', label: this.$t('message.msg193') }, { id: '2', effect: 'plain', label: this.$t('message.msg306') }, { id: '3', effect: 'plain', label: this.$t('message.msg307') }],
  61. visible: this.show,
  62. dialogFormVisible: false,
  63. dialogStatus: '',
  64. rules: {},
  65. date: '',
  66. // parentActiveName: '',
  67. temp: {},
  68. title: '',
  69. isDhedFormula: true,
  70. isMaterialIssuancePlan: false,
  71. isPremixedPlan: false,
  72. textMap: {
  73. revisePlan: this.$t('message.msg220')
  74. },
  75. isokDisable: false,
  76. requestParam: {}
  77. }
  78. },
  79. watch: {
  80. // 监听show,visible 随着show变化而变化
  81. show: {
  82. immediate: true,
  83. handler(show) {
  84. this.visible = show
  85. }
  86. },
  87. parentDate: {
  88. immediate: true,
  89. handler(newVal, oldVal) {
  90. console.log('newVal-date', newVal)
  91. this.date = newVal
  92. this.title = this.$t('message.msg220')+ this.date
  93. }
  94. },
  95. parentActiveName: {
  96. immediate: true,
  97. handler(newVal, oldVal) {
  98. console.log('newVal===', newVal)
  99. console.log('oldVal', oldVal)
  100. this.parentActiveName = newVal
  101. }
  102. }
  103. },
  104. created() {
  105. },
  106. methods: {
  107. closeDialog() {
  108. this.dialogFull = false
  109. this.$emit('update:show', false) // 子组件更新弹框隐藏
  110. this.$emit('activeName','栏舍配方' )
  111. },
  112. saveData() {
  113. console.log('点击了应用')
  114. MessageBox.confirm(this.$t('message.msg309') + this.date, {
  115. confirmButtonText: this.$t('common.confirm'), cancelButtonText: this.$t('common.cancel'), type: 'warning'
  116. }).then(() => {
  117. this.requestParam.name = 'updatedownloadedplanDone'
  118. this.requestParam.parammaps = {}
  119. this.requestParam.parammaps.pastureid = Cookies.get('pastureid')
  120. this.requestParam.parammaps.date = this.date
  121. PostDataByName(this.requestParam).then(response => {
  122. if (response.msg === 'fail') {
  123. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  124. } else {
  125. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  126. this.closeDialog()
  127. this.$parent.getList()
  128. }
  129. })
  130. }).catch(() => {
  131. this.$message({ type: 'info', message: this.$t('message.msg41') })
  132. })
  133. },
  134. handleClick(item) {
  135. console.log(item.name)
  136. if (item.name == this.$t('message.msg306')) {
  137. this.$refs.MaterialIssuancePlan.getButtons()
  138. this.$refs.MaterialIssuancePlan.getIsDisplay()
  139. this.$refs.MaterialIssuancePlan.getList()
  140. } else if (item.name == '栏舍配方') {
  141. this.$refs.DhedFormula.getIsDisplay()
  142. this.$refs.DhedFormula.getDownList()
  143. } else if (item.name == '栏舍配方'){
  144. this.$refs.PremixedPlan.getDownList()
  145. this.$refs.PremixedPlan.getIsDisplay()
  146. this.$refs.PremixedPlan.getList()
  147. }else if (item.name == '剩料计划'){
  148. this.$refs.SurplusMaterialPlan.getButtons()
  149. this.$refs.SurplusMaterialPlan.getDownList()
  150. this.$refs.SurplusMaterialPlan.getIsDisplay()
  151. this.$refs.SurplusMaterialPlan.getList()
  152. }
  153. }
  154. }
  155. }
  156. </script>
  157. <style lang="scss" scoped>
  158. // #reviseplanDialog {
  159. // margin-top: -10vh !important
  160. // }
  161. </style>