| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 | 
							- <template>
 
-   <div v-if="visible">
 
-     <!-- 干物质调节-配方选择 -->
 
-     <el-dialog title="干物质调节-配方选择" :destroy-on-close="true" :visible.sync="visible" :close-on-click-modal="false" append-to-body :before-close="closeDialog" width="35%">
 
-       <div style="min-height:200px;justify-content:center;align-items:center;display:flex;">
 
-         <div style="height: 40px;width: 80%;">
 
-           <span style="margin-right: 10px;">请选择栏舍配方:</span>
 
-           <el-select v-model="temp.ftid" filterable class="filter-item">
 
-             <el-option v-for="item in balconicFormulaList" :key="item.id" :label="item.tname" :value="item.id" />
 
-           </el-select>
 
-         </div>
 
-       </div>
 
-       <div slot="footer" class="dialog-footer" style="bottom: 10px;">
 
-         <el-button class="minCancel" @click="closeDialog()">取消</el-button>
 
-         <el-button class="miniSuccess" @click="handleNextSamplingSelection()">下一步</el-button>
 
-       </div>
 
-     </el-dialog>
 
-     <!-- 干物质调节—采样选择 -->
 
-     <el-dialog :title="textMap[samplingSelection.dialogStatus]" :visible.sync="samplingSelection.dialogFormVisible" append-to-body :close-on-click-modal="false" width="80%">
 
-       <div class="dialogMinHeight">
 
-         <div class="search filter-item">
 
-           <el-select v-model="samplingSelection.getdataListParm.parammaps.date" filterable placeholder="日期" class="filter-item" style="width: 150px;">
 
-             <el-option v-for="item in samplingSelection.dateList" :key="item.id" :label="item.date" :value="item.date" />
 
-           </el-select>
 
-           <el-select v-model="samplingSelection.getdataListParm.parammaps.barid" filterable placeholder="栏舍名称" class="filter-item" style="width: 120px;" clearable>
 
-             <el-option v-for="item in samplingSelection.houseNameList" :key="item.id" :label="item.bname" :value="item.id" />
 
-           </el-select>
 
-           <el-select v-model="samplingSelection.getdataListParm.parammaps.times" filterable placeholder="班次" class="filter-item" style="width: 120px;" clearable>
 
-             <el-option v-for="item in samplingSelection.frequencyList" :key="item.id" :label="item.name" :value="item.id" />
 
-           </el-select>
 
-           <el-button class="successBorder" @click="handleSearch">查询</el-button>
 
-         </div>
 
-         <div class="table" style="margin-top: 10px;">
 
-           <el-table
 
-             :key="samplingSelection.tableKey"
 
-             v-loading="samplingSelection.listLoading"
 
-             element-loading-text="给我一点时间"
 
-             :data="samplingSelection.list"
 
-             border
 
-             fit
 
-             highlight-current-row
 
-             style="width: 100%;"
 
-             :row-style="rowStyle"
 
-             :cell-style="cellStyle"
 
-             class="elTable table-fixed"
 
-             @selection-change="handleSelectionChange"
 
-           >
 
-             <el-table-column type="selection" align="center" width="50" />
 
-             <el-table-column label="序号" align="center" type="index" width="50px" />
 
-             <el-table-column label="栏舍名称" prop="barname" min-width="110px" align="center" />
 
-             <el-table-column label="班次" prop="times" min-width="110px" align="center" />
 
-             <el-table-column label="鲜样重量(g)" prop="freshweight" min-width="110px" align="center" />
 
-             <el-table-column label="烘干重量(g)" prop="dryweight" min-width="110px" align="center" />
 
-             <el-table-column label="理论干物质" prop="thoweight" min-width="110px" align="center" />
 
-             <el-table-column label="实际干物质" prop="actweight" min-width="110px" align="center" />
 
-             <el-table-column label="操作人" prop="emp" min-width="110px" align="center" />
 
-             <el-table-column label="操作日期" prop="operatetime" min-width="110px" align="center" />
 
-           </el-table>
 
-         </div>
 
-       </div>
 
-       <div slot="footer" class="dialog-footer" style="bottom: 10px;">
 
-         <el-button class="minCancel" @click="closeDialog();">取消</el-button>
 
-         <el-button class="miniSuccess" @click="handleNextChangeDetails()">下一步</el-button>
 
-       </div>
 
-     </el-dialog>
 
-     <!-- 干物质调节-变化详情 -->
 
-     <el-dialog :title="textMap[changeDetails.dialogStatus]" :visible.sync="changeDetails.dialogFormVisible" append-to-body :close-on-click-modal="false" width="80%">
 
-       <div class="dialogMinHeight">
 
-         <div class="table">
 
-           <el-table
 
-             :key="changeDetails.tableKey"
 
-             v-loading="changeDetails.listLoading"
 
-             element-loading-text="给我一点时间"
 
-             :data="changeDetails.list"
 
-             border
 
-             fit
 
-             highlight-current-row
 
-             style="width: 100%;"
 
-             :row-style="rowStyle"
 
-             :cell-style="cellStyle"
 
-             class="elTable table-fixed"
 
-             :span-method="objectSpanMethod"
 
-           >
 
-             <el-table-column label="栏舍" prop="barname" min-width="70px" align="center" class-name="small-padding fixed-width" fixed="left" />
 
-             <el-table-column label="班次" prop="times" min-width="70px" align="center" class-name="small-padding fixed-width" fixed="left" />
 
-             <el-table-column label="调节前班次重量" prop="weight" min-width="70px" align="center" />
 
-             <el-table-column label="调节后班次重量" prop="weightafter" min-width="100px" align="center" />
 
-             <el-table-column label="调节前理论干物质量" prop="ftweight" min-width="70px" align="center" />
 
-             <el-table-column label="调节后理论干物质量" prop="ftweightafter" min-width="90px" align="center" />
 
-             <el-table-column label="调节前采样干物质量" prop="cyweight" min-width="70px" align="center" />
 
-             <el-table-column label="调节后采样干物质量" prop="cyweightafter" min-width="90px" align="center" />
 
-             <el-table-column label="调节前日投喂量" prop="totalweight" min-width="70px" align="center" />
 
-             <el-table-column label="调节后日投喂量" prop="totalweightafter" min-width="100px" align="center" />
 
-           </el-table>
 
-         </div>
 
-       </div>
 
-       <div slot="footer" class="dialog-footer" style="bottom: 10px;">
 
-         <el-button class="minCancel" @click="closeDialog();">取消</el-button>
 
-         <el-button class="miniSuccess" @click="handleNextLast()">下一步</el-button>
 
-       </div>
 
-     </el-dialog>
 
-   </div>
 
- </template>
 
- <script>
 
- import { GetDataByName, GetDataByNames, ExecDataByConfig } from '@/api/common'
 
- import { parseTime, handleTableSpan, handleObjectSpanMethod } from '@/utils/index.js'
 
- import Cookies from 'js-cookie'
 
- import { MessageBox } from 'element-ui'
 
- export default {
 
-   name: 'RevisePlan',
 
-   components: {},
 
-   props: {
 
-     show: { type: Boolean, default: false }
 
-   },
 
-   data() {
 
-     return {
 
-       visible: this.show,
 
-       dialogFormVisible: false,
 
-       dialogStatus: '',
 
-       balconicFormulaListParm: {
 
-         name: 'getFTSWList',
 
-         page: 1,
 
-         offset: 1,
 
-         pagecount: 0,
 
-         returntype: 'Map',
 
-         parammaps: {
 
-           pastureid: Cookies.get('pastureid')
 
-         }
 
-       },
 
-       balconicFormulaList: [],
 
-       temp: {
 
-         ftid: ''
 
-       },
 
-       samplingSelection: {
 
-         dialogFormVisible: false,
 
-         dialogStatus: '',
 
-         dateList: [],
 
-         getdateListParm: {
 
-           name: 'getftdrydatelist',
 
-           offset: 0,
 
-           pagecount: 30,
 
-           parammaps: { pastureid: Cookies.get('pastureid') }
 
-         },
 
-         requestParams: [
 
-           { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid') }},
 
-           { name: 'getSysoptEnable', offset: 0, pagecount: 0, parammaps: { 'pastureid': Cookies.get('pastureid'), 'inforname': 'times' }}
 
-         ],
 
-         houseNameList: [], // 栏舍名称
 
-         frequencyList: [], // 班次
 
-         getdataListParm: {
 
-           name: 'getftdrycylist',
 
-           page: 1,
 
-           offset: 1,
 
-           pagecount: 0,
 
-           returntype: 'Map',
 
-           parammaps: {
 
-             pastureid: Cookies.get('pastureid'),
 
-             ftid: '',
 
-             date: '',
 
-             barid: '',
 
-             times: ''
 
-           }
 
-         },
 
-         tableKey: 0,
 
-         list: [],
 
-         total: 0,
 
-         listLoading: true
 
-       },
 
-       changeDetails: {
 
-         dialogFormVisible: false,
 
-         dialogStatus: '',
 
-         getdataListParm: {
 
-           name: 'getftdryafterlist',
 
-           page: 1,
 
-           offset: 1,
 
-           pagecount: 0,
 
-           returntype: 'Map',
 
-           parammaps: {
 
-             pastureid: Cookies.get('pastureid'),
 
-             ftid: '',
 
-             actweight: '',
 
-             thoweight: ''
 
-           }
 
-         },
 
-         tableKey: 1,
 
-         list: [],
 
-         total: 0,
 
-         listLoading: true,
 
-         spanObj: {},
 
-         mergekeys: ['barname', 'ftweight', 'ftweightafter', 'cyweight', 'cyweightafter', 'totalweight', 'totalweightafter']
 
-       },
 
-       textMap: {
 
-         samplingSelection: '干物质调节—采样选择',
 
-         changeDetails: '干物质调节—变化详情'
 
-       },
 
-       selectionList: [],
 
-       isokDisable: false,
 
-       requestParam: {},
 
-       rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
 
-       cellStyle: { padding: 0 + 'px' }
 
-     }
 
-   },
 
-   watch: {
 
-     // 监听show,visible 随着show变化而变化
 
-     show: {
 
-       immediate: true,
 
-       handler(show) {
 
-         this.visible = show
 
-       }
 
-     }
 
-   },
 
-   created() {
 
-   },
 
-   methods: {
 
-     restTemp() {
 
-       this.temp.ftid = ''
 
-     },
 
-     getBalconicFormula() {
 
-       GetDataByName(this.balconicFormulaListParm).then(response => {
 
-         console.log('栏舍配方数据', response.data.list)
 
-         if (response.data.list !== null) {
 
-           this.balconicFormulaList = response.data.list
 
-         } else {
 
-           this.balconicFormulaList = []
 
-         }
 
-       })
 
-     },
 
-     closeDialog() {
 
-       this.$emit('update:show', false) // 子组件更新弹框隐藏
 
-       this.samplingSelection.dialogFormVisible = false
 
-       this.changeDetails.dialogFormVisible = false
 
-     },
 
-     handleNextSamplingSelection() {
 
-       if (this.temp.ftid !== '') {
 
-         this.samplingSelection.dialogStatus = 'samplingSelection'
 
-         this.samplingSelection.dialogFormVisible = true
 
-         this.getSamplingDateList()
 
-         this.getSamplingSelectionDownList()
 
-       } else {
 
-         this.$message({ type: 'error', message: '选择需调节配方', duration: 2000 })
 
-       }
 
-     },
 
-     getSamplingSelectionDownList() {
 
-       GetDataByNames(this.samplingSelection.requestParams).then(response => {
 
-         this.samplingSelection.houseNameList = response.data.getBarListEnable.list
 
-         if (response.data.getSysoptEnable.list !== null) {
 
-           for (let i = 1; i <= response.data.getSysoptEnable.list[0].inforvalue; i++) {
 
-             const obj = {}
 
-             obj.id = String(i)
 
-             if (i == 1) { obj.name = '第一班' } else if (i == 2) { obj.name = '第二班' } else if (i == 3) { obj.name = '第三班' } else if (i == 4) { obj.name = '第四班' }
 
-             this.samplingSelection.frequencyList.push(obj)
 
-           }
 
-         } else {
 
-           this.samplingSelection.frequencyList = []
 
-         }
 
-       })
 
-     },
 
-     getSamplingDateList() {
 
-       this.samplingSelection.getdateListParm.parammaps.ftid = this.temp.ftid
 
-       GetDataByName(this.samplingSelection.getdateListParm).then(response => {
 
-         if (response.data !== null) {
 
-           this.samplingSelection.dateList = response.data.list
 
-           this.samplingSelection.getdataListParm.parammaps.date = response.data.list[0].date
 
-         } else {
 
-           this.samplingSelection.dateList = []
 
-           this.samplingSelection.getdataListParm.parammaps.date = ''
 
-         }
 
-         this.getListSamplingSelection()
 
-       })
 
-     },
 
-     handleSearch() {
 
-       this.getListSamplingSelection()
 
-     },
 
-     handleSelectionChange(item) {
 
-       this.selectionList = item
 
-     },
 
-     getListSamplingSelection() {
 
-       this.samplingSelection.listLoading = true
 
-       this.samplingSelection.getdataListParm.parammaps.ftid = this.temp.ftid
 
-       GetDataByName(this.samplingSelection.getdataListParm).then(response => {
 
-         console.log('table数据', response.data.list)
 
-         if (response.data.list !== null) {
 
-           this.samplingSelection.list = response.data.list
 
-           this.samplingSelection.pageNum = response.data.pageNum
 
-           this.samplingSelection.pageSize = response.data.pageSize
 
-           this.samplingSelection.total = response.data.total
 
-         } else {
 
-           this.samplingSelection.list = []
 
-         }
 
-         setTimeout(() => {
 
-           this.samplingSelection.listLoading = false
 
-         }, 100)
 
-       })
 
-     },
 
-     handleNextChangeDetails() {
 
-       if (this.selectionList.length == 1) {
 
-         this.changeDetails.dialogStatus = 'changeDetails'
 
-         this.changeDetails.dialogFormVisible = true
 
-         this.getListChangeDetails()
 
-       } else {
 
-         if (this.selectionList.length == 0) {
 
-           this.$message({ type: 'error', message: '请选择采样内容对应干物质比例调节', duration: 2000 })
 
-         } else {
 
-           this.$message({ type: 'error', message: '仅可选择一条采样内容进行调节', duration: 2000 })
 
-         }
 
-       }
 
-     },
 
-     // 干物质调节—变化详情
 
-     getListChangeDetails() {
 
-       this.changeDetails.listLoading = true
 
-       this.changeDetails.getdataListParm.parammaps.ftid = this.temp.ftid
 
-       this.changeDetails.getdataListParm.parammaps.actweight = this.selectionList[0].actweight
 
-       this.changeDetails.getdataListParm.parammaps.thoweight = this.selectionList[0].thoweight
 
-       console.log(this.changeDetails.getdataListParm.parammaps)
 
-       GetDataByName(this.changeDetails.getdataListParm).then(response => {
 
-         console.log('table数据', response.data.list)
 
-         if (response.data.list !== null) {
 
-           this.changeDetails.list = response.data.list
 
-           this.changeDetails.pageNum = response.data.pageNum
 
-           this.changeDetails.pageSize = response.data.pageSize
 
-           this.changeDetails.total = response.data.total
 
-           this.handleSpan()
 
-         } else {
 
-           this.changeDetails.list = []
 
-         }
 
-         setTimeout(() => {
 
-           this.changeDetails.listLoading = false
 
-         }, 100)
 
-       })
 
-     },
 
-     handleSpan() {
 
-       this.changeDetails.mergekeys.forEach(key => {
 
-         this.changeDetails.spanObj[key] = []
 
-         let position = 0
 
-         this.changeDetails.list.forEach((item, index) => {
 
-           if (index === 0) {
 
-             this.changeDetails.spanObj[key].push(1)
 
-             position = 0
 
-           } else {
 
-             if (key == 'ftweight' || key == 'ftweightafter' || key == 'cyweight' || key == 'cyweightafter' || key == 'totalweight' || key == 'totalweightafter') {
 
-               if (this.changeDetails.list[index][key] === this.changeDetails.list[index - 1][key] && this.changeDetails.list[index]['barname'] === this.changeDetails.list[index - 1]['barname']) {
 
-                 this.changeDetails.spanObj[key][position] += 1
 
-                 this.changeDetails.spanObj[key].push(0)
 
-               } else {
 
-                 this.changeDetails.spanObj[key].push(1)
 
-                 position = index
 
-               }
 
-             } else {
 
-               if (this.changeDetails.list[index][key] === this.changeDetails.list[index - 1][key]) {
 
-                 this.changeDetails.spanObj[key][position] += 1
 
-                 this.changeDetails.spanObj[key].push(0)
 
-               } else {
 
-                 this.changeDetails.spanObj[key].push(1)
 
-                 position = index
 
-               }
 
-             }
 
-           }
 
-         })
 
-       })
 
-     },
 
-     objectSpanMethod({ row, column, rowIndex, columnIndex }) {
 
-       for (let i = 0; i < this.changeDetails.mergekeys.length; i++) {
 
-         if (column.property === this.changeDetails.mergekeys[i]) {
 
-           const _row = this.changeDetails.spanObj[this.changeDetails.mergekeys[i]][rowIndex]
 
-           const _col = _row > 0 ? 1 : 0
 
-           return {
 
-             rowspan: _row,
 
-             colspan: _col
 
-           }
 
-         }
 
-       }
 
-     },
 
-     handleNextLast() {
 
-       MessageBox.confirm('是否确认进行当前干物质调节操作', '提示', {
 
-         confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning',
 
-         beforeClose: (action, instance, done) => {
 
-           console.log(action, instance, done)
 
-           this.closeDialog()
 
-           done()
 
-         }
 
-       }).then(() => {
 
-         var duplicateRemovalList = []
 
-         for (let i = 0; i < this.changeDetails.list.length; i++) {
 
-           for (var j = i + 1; j < this.changeDetails.list.length; j++) {
 
-             if (this.changeDetails.list[i].id == this.changeDetails.list[j].id) {
 
-               ++i
 
-             }
 
-           }
 
-           duplicateRemovalList.push(this.changeDetails.list[i])
 
-         }
 
-         console.log(duplicateRemovalList, '=duplicateRemovalList')
 
-         this.requestParam = {}
 
-         this.requestParam.common = { 'returnmap': '0' }
 
-         this.requestParam.data = []
 
-         this.requestParam.data[0] = { 'name': 'saveFPFTdryChange', 'type': 'e', 'parammaps': {
 
-           pastureid: Cookies.get('pastureid'),
 
-           ftid: this.temp.ftid,
 
-           actweight: this.selectionList[0].actweight,
 
-           thoweight: this.selectionList[0].thoweight
 
-         }}
 
-         this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': duplicateRemovalList }}
 
-         this.requestParam.data[1].children = []
 
-         this.requestParam.data[1].children[0] = { 'name': 'updateLPPbyFPChange', 'type': 'e', 'parammaps': {
 
-           pastureid: '@insertSpotList.pastureid',
 
-           fpid: '@insertSpotList.id'
 
-         }}
 
-         ExecDataByConfig(this.requestParam).then(response => {
 
-           console.log('新生成保存发送参数', this.requestParam)
 
-           if (response.msg === 'fail') {
 
-             this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
 
-           } else {
 
-             this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 })
 
-             this.closeDialog()
 
-             this.$emit('getIsDisplay')
 
-           }
 
-         })
 
-       })
 
-     }
 
-   }
 
- }
 
- </script>
 
- <style lang="scss" scoped>
 
- </style>
 
 
  |