<template> <div class="app-container"> <!-- 配方模板表 --> <div ref="template" class="template"> <p class="recipeTemplate" /> <div class="operation"> <el-button class="success" @click="handleCreate">新增</el-button> <el-button class="danger" @click="handleDelete">删除</el-button> <el-button class="warning" @click="handleCopy">复制</el-button> <el-button class="success" @click="handleRecipeRecord">配方记录</el-button> <el-button class="success" @click="handleHistory">生成历史</el-button> <el-button class="import" style="float: right;margin-right: 80px;" @click="handleImport">导入</el-button> <el-button class="export" style="float: right;margin-right: 10px;" @click="handleExport">导出</el-button> </div> <div class="search"> <el-select v-model="table.getdataListParm.parammaps.ccname" filterable placeholder="牲畜类别" class="filter-item" clearable> <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.label" /> </el-select> <el-select v-model="table.getdataListParm.parammaps.fttype" filterable placeholder="配方类型" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.label" /> </el-select> <el-select v-model="table.getdataListParm.parammaps.enable" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> <div ref="selectInput" class="filter-item selectInput"> <el-input type="text" placeholder="请点击选择搜索条件" class="Input" /> <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" /> <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" /> <ul v-if="arrowUp" class="selectUl"> <li><a>配方名称</a><el-input v-model="table.getdataListParm.parammaps.tname" style="width: 245px;" /></li> <li><a>备注</a><el-input v-model="table.getdataListParm.parammaps.remark" style="width: 245px;" /></li> <li><a>来源</a><el-input v-model="table.getdataListParm.parammaps.source" style="width: 245px;" /></li> <li> <div style="float: right;"> <el-button class="minCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button> <el-button class="miniSuccess" @click="handleSearch">搜索</el-button> </div> </li> </ul> </div> <el-button class="successBorder" @click="handleSearch">查询</el-button> <el-button class="successBorder" @click="handleRefresh">重置</el-button> </div> <div class="table"> <el-table :key="table.tableKey" v-loading="table.listLoading" element-loading-text="给我一点时间" :data="table.list" border fit highlight-current-row style="width: 98%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" @row-click="tableRowClick" @selection-change="handleSelectionChange" > <el-table-column type="selection" align="center" width="50" /> <el-table-column label="序号" align="center" type="index" width="50px"> <template slot-scope="scope"> <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span> </template> </el-table-column> <el-table-column label="配方名称" min-width="130px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.tname }}</span> <el-input v-if="scope.row.Edit" v-model="scope.row.tname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" /> </template> </el-table-column> <el-table-column label="配方颜色" min-width="130px" align="center"> <template slot-scope="scope"> <el-color-picker v-model="scope.row.tcolor" size="mini" :disabled="scope.row.NoEdit" style="margin:10px 0;" /> </template> </el-table-column> <el-table-column label="牲畜类别" min-width="150px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.ccname }}</span> <el-select v-if="scope.row.Edit" v-model="scope.row.ccid" filterable placeholder="牲畜类别" class="filter-item" style="width:95%;padding:10px 0;" @change="changeLivestockType"> <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.value" /> </el-select> </template> </el-table-column> <el-table-column label="配方类型" min-width="150px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.fttype }}</span> <el-select v-if="scope.row.Edit && scope.row.isCreate == true" v-model="scope.row.fttypeid" filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType"> <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.value" /> </el-select> <el-select v-if="scope.row.Edit && scope.row.isUpdateSave == true" v-model="scope.row.fttypeid" disabled filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType"> <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.value" /> </el-select> </template> </el-table-column> <el-table-column label="来源" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.source }}</span> </template> </el-table-column> <el-table-column label="备注" min-width="110px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.remark }}</span> <el-input v-if="scope.row.Edit" v-model="scope.row.remark" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="255" style="width:95%;padding:10px 0;" /> </template> </el-table-column> <el-table-column label="是否启用" min-width="110px" align="center"> <template slot-scope="scope"> <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" /> </template> </el-table-column> <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right"> <template slot-scope="{row}"> <!-- 新增 --> <el-button v-if="row.isCreate" class="miniSuccess" @click="createData(row)">保存</el-button> <el-button v-if="row.isCreate" class="minCancel" @click="createCancel(row)">取消</el-button> <!-- 编辑 --> <el-button v-if="row.isUpdate" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button> <el-button v-if="row.isUpdate" class="miniDanger" @click="handleRowDelete(row)">删除</el-button> <!-- 编辑保存 --> <el-button v-if="row.isUpdateSave" class="miniSuccess" @click="updateData(row)">保存</el-button> <el-button v-if="row.isUpdateSave" class="minCancel" @click="updateCancel(row)">取消</el-button> </template> </el-table-column> </el-table> </div> </div> <!-- 配方详情表 --> <div v-if="isDetail" ref="detail" class="detail" style="margin-top: 30px;"> <p class="recipeDetail" /> <div class="operation"> <el-button class="success" @click="handleCreate2">新增</el-button> <el-button class="danger" @click="handleDelete2">删除</el-button> <el-button class="success" @click="handleSyntheticPremix">合成预混料</el-button> <div ref="selectInput2" class="filter-item selectInput"> <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" /> <i v-if="arrowDown2" icon="el-icon-arrow-down" class="el-icon-arrow-down" /> <i v-if="arrowUp2" icon="el-icon-arrow-up" class="el-icon-arrow-up" /> <ul v-if="arrowUp2" class="selectUl" style="width: 400px;"> <li> <a style="width: 130px;">饲料名称</a> <el-select v-model="table2.getdataListParm.parammaps.fname" filterable placeholder="" style="width:245px;"> <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.fname" /> </el-select> </li> <li><a style="width: 130px;">饲料组名称</a><el-input v-model="table2.getdataListParm.parammaps.feedgroup" style="width: 245px;" /></li> <li><a style="width: 130px;">重量</a><el-input v-model="table2.getdataListParm.parammaps.fweight" style="width: 245px;" /></li> <li> <a style="width: 130px;">搅拌延时</a> <el-select v-model="table2.getdataListParm.parammaps.autosecondname" filterable placeholder="" style="width:245px;" clearable> <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.name" /> </el-select> </li> <li> <a style="width: 130px;">是否锁定牛头数比例</a> <el-select v-model="table2.getdataListParm.parammaps.islockcount" placeholder="" style="width:245px;" clearable> <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> </li> <li><a style="width: 130px;">顺序</a><el-input v-model="table2.getdataListParm.parammaps.sort" style="width: 245px;" /></li> <li> <div style="float: right;"> <el-button class="minCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button> <el-button class="miniSuccess" @click="handleSearch2">搜索</el-button> </div> </li> </ul> </div> <el-button class="successBorder" @click="handleSearch2">查询</el-button> <el-button class="successBorder" @click="handleRefresh2">重置</el-button> </div> <div class="table2" style="min-height: 400px;"> <el-table id="table2" ref="table2" :key="table2.tableKey" v-loading="table2.listLoading" element-loading-text="给我一点时间" :data="table2.list" border fit highlight-current-row style="width: 98%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" row-key="id" show-summary @selection-change="handleSelectionChange2" > <el-table-column type="selection" width="60" /> <el-table-column label="序号" align="center" type="index" width="50px" /> <el-table-column label="饲料组" min-width="110px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.groupNoEdit">{{ scope.row.feedgroup }}</span> <el-input v-if="scope.row.groupEdit" v-model="scope.row.feedgroup" :disabled="scope.row.isGroupDisabled" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" /> </template> </el-table-column> <el-table-column label="饲料名称" min-width="130px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.fname }}</span> <el-select v-if="scope.row.Edit" v-model="scope.row.fid" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeFname(value, scope.row)}"> <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.id" /> </el-select> </template> </el-table-column> <el-table-column label="重量(KG)" prop="fweight" min-width="100px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.fweight }}</span> <el-input v-if="scope.row.Edit" v-model="scope.row.fweight" placeholder="重量" step="0.01" type="number" style="width:95%;padding:10px 0;" /> </template> </el-table-column> <el-table-column label="搅拌延时(min)" min-width="110px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.autosecond }}</span> <el-select v-if="scope.row.Edit" v-model="scope.row.autosecond" filterable placeholder="搅拌延时" class="filter-item" style="width:95%;padding:10px 0;"> <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> </template> </el-table-column> <el-table-column v-if="lockCount.isLockCount" label="是否锁定牛头数比例" min-width="110px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit && scope.row.islockcount == '0'">否</span> <span v-if="scope.row.NoEdit && scope.row.islockcount == '1'">是</span> <el-select v-if="scope.row.Edit" v-model="scope.row.islockcount" placeholder="" class="filter-item" style="width:95%;padding:10px 0;"> <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> </template> </el-table-column> <el-table-column label="顺序" min-width="100px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.NoEdit">{{ scope.row.sort }}</span> <el-input v-if="scope.row.Edit" v-model="scope.row.sort" type="number" style="width:95%;padding:10px 0;" min-number="0" @blur="blurSort(scope.row)" /> </template> </el-table-column> <el-table-column label="操作" align="center" width="320" class-name="small-padding fixed-width" fixed="right"> <template slot-scope="{row}"> <!-- 新增 --> <el-button v-if="row.isCreate" class="miniSuccess" @click="createData2(row)">保存</el-button> <el-button v-if="row.isCreate" class="minCancel" @click="createCancel2(row)">取消</el-button> <!-- 编辑 --> <el-button v-if="row.isUpdate" class="miniSuccess" @click="handleUpdate2(row)">编辑</el-button> <el-button v-if="row.isUpdate" class="miniDanger" @click="handleRowDelete2(row)">删除</el-button> <!-- 编辑保存 --> <el-button v-if="row.isUpdateSave" class="miniSuccess" @click="updateData2(row)">保存</el-button> <el-button v-if="row.isUpdateSave" class="minCancel" @click="updateCancel2(row)">取消</el-button> <!-- 拆分预混料 --> <el-button v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false" class="miniSuccess" @click="handleSplitPremix(row)">拆分预混料</el-button> </template> </el-table-column> </el-table> </div> </div> <!-- 配方记录 --> <el-dialog :title="textMap[template.dialogStatus]" :destroy-on-close="true" :visible.sync="template.dialogFormVisible" :close-on-click-modal="false" width="90%"> <div style="height: 400px;overflow: auto;margin-bottom: 30px;"> <div ref="templateDialog" class="templateDialog"> <p class="recipeTemplate" /> <div class="operation"> <el-date-picker v-model="template.table.getdataListParm.parammaps.date" type="date" placeholder="请选择历史记录时间" :clearable="false" style="width: 180px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" @change="changeDate" /> <el-button class="successBorder" @click="handleApplication">应用</el-button> </div> <div class="search"> <el-select v-model="template.table.getdataListParm.parammaps.ccname" placeholder="牲畜类别" class="filter-item" clearable> <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.label" /> </el-select> <el-select v-model="template.table.getdataListParm.parammaps.fttype" placeholder="配方类型" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in formulaTypeList" :key="item.value" :label="item.label" :value="item.label" /> </el-select> <el-select v-model="template.table.getdataListParm.parammaps.enable" placeholder="是否启用" class="filter-item" style="width: 120px;" clearable> <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> <div ref="selectInput" class="filter-item selectInput"> <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" /> <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" /> <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" /> <ul v-if="arrowUp" class="selectUl"> <li><a>配方名称</a><el-input v-model="template.table.getdataListParm.parammaps.tname" style="width: 245px;" /></li> <li><a>备注</a><el-input v-model="template.table.getdataListParm.parammaps.remark" style="width: 245px;" /></li> <li><a>来源</a><el-input v-model="template.table.getdataListParm.parammaps.source" style="width: 245px;" /></li> <li> <div style="float: right;"> <el-button class="minCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button> <el-button class="miniSuccess" @click="handleDialogSearch">搜索</el-button> </div> </li> </ul> </div> <el-button class="successBorder" @click="handleDialogSearch">查询</el-button> <el-button class="successBorder" @click="handleDialogRefresh">重置</el-button> </div> <div class="table"> <el-table :key="template.table.tableKey" v-loading="template.table.listLoading" element-loading-text="给我一点时间" :data="template.table.list" border fit highlight-current-row style="width: 98%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" @row-click="tableRowClickDialog" > <el-table-column label="序号" align="center" type="index" width="50px"> <template slot-scope="scope"> <span>{{ scope.$index + (template.table.pageNum-1) * template.table.pageSize + 1 }}</span> </template> </el-table-column> <el-table-column label="配方名称" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.tname }}</span> </template> </el-table-column> <el-table-column label="配方颜色" min-width="130px" align="center"> <template slot-scope="scope"> <el-color-picker v-model="scope.row.tcolor" size="mini" disabled style="margin:10px 0;" /> </template> </el-table-column> <el-table-column label="牲畜类别" min-width="150px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.ccname }}</span> </template> </el-table-column> <el-table-column label="配方类型" min-width="150px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.fttype }}</span> </template> </el-table-column> <el-table-column label="来源" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.source }}</span> </template> </el-table-column> <el-table-column label="备注" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.remark }}</span> </template> </el-table-column> <el-table-column label="是否启用" min-width="110px" align="center"> <template slot-scope="scope"> <el-switch v-model="scope.row.enable" disabled active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" /> </template> </el-table-column> </el-table> </div> </div> <div v-if="isDetailDialog" class="detailDialog" style="margin-top: 30px;"> <p class="recipeDetail" /> <div class="operation"> <div ref="selectInput2" class="filter-item selectInput"> <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" /> <i v-if="arrowDown2" icon="el-icon-arrow-down" class="el-icon-arrow-down" /> <i v-if="arrowUp2" icon="el-icon-arrow-up" class="el-icon-arrow-up" /> <ul v-if="arrowUp2" class="selectUl" style="width: 400px;"> <li> <a style="width: 130px;">饲料名称</a> <el-select v-model="template.table2.getdataListParm.parammaps.fname" filterable placeholder="" style="width:245px;"> <el-option v-for="item in feedNameList" :key="item.id" :label="item.fname" :value="item.fname" /> </el-select> </li> <li><a style="width: 130px;">饲料组名称</a><el-input v-model="template.table2.getdataListParm.parammaps.feedgroup" style="width: 245px;" /></li> <li><a style="width: 130px;">重量</a><el-input v-model="template.table2.getdataListParm.parammaps.fweight" style="width: 245px;" /></li> <li> <a style="width: 130px;">搅拌延时</a> <el-select v-model="template.table2.getdataListParm.parammaps.autosecondname" filterable placeholder="" style="width:245px;"> <el-option v-for="item in mixingDelayList" :key="item.id" :label="item.name" :value="item.name" /> </el-select> </li> <li> <a style="width: 130px;">是否锁定牛头数比例</a> <el-select v-model="template.table2.getdataListParm.parammaps.islockcount" placeholder="" style="width:245px;"> <el-option v-for="item in lockBullsList" :key="item.id" :label="item.name" :value="item.id" /> </el-select> </li> <li><a style="width: 130px;">顺序</a><el-input v-model="template.table2.getdataListParm.parammaps.sort" style="width: 245px;" /></li> <li> <div style="float: right;"> <el-button class="minCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button> <el-button class="miniSuccess" @click="handleDialogSearch2">搜索</el-button> </div> </li> </ul> </div> <el-button class="successBorder" @click="handleDialogSearch2">查询</el-button> <el-button class="successBorder" @click="handleDialogRefresh2">重置</el-button> </div> <div class="table2"> <el-table :key="template.table2.tableKey" v-loading="template.table2.listLoading" element-loading-text="给我一点时间" :data="template.table2.list" border fit highlight-current-row style="width: 98%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" row-key="id" > <el-table-column label="饲料组" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.feedgroup }}</span> </template> </el-table-column> <el-table-column label="饲料名称" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.fname }}</span> </template> </el-table-column> <el-table-column label="重量(KG)" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.fweight }}</span> </template> </el-table-column> <el-table-column label="搅拌延时(min)" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.autosecondname }}</span> </template> </el-table-column> <el-table-column label="是否锁定牛头数比例" min-width="130px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.islockcount == '0'">否</span> <span v-if="scope.row.islockcount == '1'">是</span> </template> </el-table-column> <el-table-column label="顺序" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.sort }}</span> </template> </el-table-column> </el-table> </div> </div> <div slot="footer" class="dialog-footer" style="right:30px;position:absolute;bottom:5px"> <el-button @click="template.dialogFormVisible = false; ">关闭</el-button> </div> </div> </el-dialog> <!-- 合成预混料 --> <el-dialog :title="textMap[detail.dialogStatus]" :destroy-on-close="true" :visible.sync="detail.dialogFormVisible" :close-on-click-modal="false" width="90%"> <div class="detailDialog"> <h2>饲料</h2> <div class="table1"> <el-table :key="detail.tableKey" v-loading="detail.listLoading" element-loading-text="给我一点时间" :data="detail.list" fit highlight-current-row style="width: 100%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" show-summary > <el-table-column label="序号" align="center" type="index" width="50px" /> <el-table-column label="饲料名称" min-width="130px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.fname }}</span> </template> </el-table-column> <el-table-column prop="fweight" sortable label="重量(KG)" /> <el-table-column label="搅拌延时(min)" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.autosecond }}</span> </template> </el-table-column> <el-table-column label="是否锁定牛头数比例" min-width="130px" align="center"> <template slot-scope="scope"> <span v-if="scope.row.islockcount == '0'">否</span> <span v-if="scope.row.islockcount == '1'">是</span> </template> </el-table-column> <el-table-column label="顺序" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.sort }}</span> </template> </el-table-column> </el-table> </div> <h2>合成预混料</h2> <div class="table2" style="margin-bottom: 50px;"> <el-table :key="detail.tableKey2" v-loading="detail.listLoading2" element-loading-text="给我一点时间" :data="detail.list2" border fit highlight-current-row style="width: 100%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed" > <el-table-column label="配方名称" min-width="130px" align="center"> <template slot-scope="scope"> <el-input v-model="scope.row.tname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" :disabled="detail.disabled" /> </template> </el-table-column> <el-table-column label="配方颜色" min-width="130px" align="center"> <template slot-scope="scope"> <el-color-picker v-model="scope.row.tcolor" size="mini" style="margin:10px 0;" :disabled="detail.disabled" /> </template> </el-table-column> <el-table-column label="牲畜类别" min-width="130px" align="center"> <template slot-scope="scope"> <el-select v-model="scope.row.ccid" placeholder="选择牲畜父类" class="filter-item" style="width:95%;padding:10px 0;" :disabled="detail.disabled" @change="changeLivestockType2"> <el-option v-for="item in livestockTypeList" :key="item.value" :label="item.label" :value="item.value" /> </el-select> </template> </el-table-column> <el-table-column label="配方类型" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.fttype }}</span> </template> </el-table-column> <el-table-column label="来源" min-width="110px" align="center"> <template slot-scope="scope"> <span>{{ scope.row.source }}</span> </template> </el-table-column> <el-table-column label="备注" min-width="130px" align="center"> <template slot-scope="scope"> <el-input v-model="scope.row.remark" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" :disabled="detail.disabled" /> </template> </el-table-column> <el-table-column label="是否启用" min-width="130px" align="center"> <template slot-scope="scope"> <el-switch v-model="scope.row.enable" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" :disabled="detail.disabled" /> </template> </el-table-column> </el-table> </div> <div slot="footer" class="dialog-footer" style="bottom: -50px;"> <el-button class="cancel" @click="detail.dialogFormVisible = false; ">关闭</el-button> <el-button class="success" :disabled="isokDisable" @click="syntheticPremixData()">确认</el-button> </div> </div> </el-dialog> </div> </template> <script> import { GetDataByName, GetDataByNames, PostDataByName, failproccess, ExecDataByConfig } from '@/api/common' import Sortable from 'sortablejs' import { MessageBox } from 'element-ui' import Cookies from 'js-cookie' export default { name: 'RecipeTemplate', data() { return { requestParams: [ { name: 'getDictByName', offset: 0, pagecount: 0, params: ['牲畜父类'] }, { name: 'getDictByName2', offset: 0, pagecount: 0, params: ['配方类型'] }, { name: 'getFeedAndPre', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }} ], enableList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 是否启用 lockBullsList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 是否锁定牛头数比例 livestockTypeList: [], // 牲畜类别 formulaTypeList: [], // 配方类型 feedNameList: [], // 饲料名称 mixingDelayList: [{ id: '0', name: '0' }, { id: '1', name: '1' }, { id: '2', name: '2' }, { id: '3', name: '3' }, { id: '4', name: '4' }, { id: '5', name: '5' }, { id: '6', name: '6' }, { id: '7', name: '7' }, { id: '8', name: '8' }, { id: '9', name: '9' }, { id: '10', name: '10' }, { id: '11', name: '11' }, { id: '12', name: '12' }, { id: '13', name: '13' }, { id: '14', name: '14' }, { id: '15', name: '15' }], // 搅拌延时 selectHistoryTimeList: [{ id: 0, name: '2020-06-10' }, { id: 1, name: '2020-06-11' }, { id: 2, name: '2020-06-12' }, { id: 3, name: '2020-06-13' }], // 请选择历史记录时间 sourceList: [{ id: 0, name: '自定义' }, { id: 1, name: '集团下发' }, { id: 2, name: '导入' }], // 导入 arrowDown: true, arrowUp: false, table: { getdataListParm: { name: 'getFTList', page: 1, offset: 1, pagecount: 30, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), tname: '', ccid: '', ccname: '', fttypeid: '', fttype: '', remark: '', enable: '' } }, tableKey: 0, list: [], total: 0, listLoading: true, temp: {} }, lockCount: { getdataListParm: { name: 'getSysoptEnable', page: 1, offset: 1, pagecount: 30, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), inforname: 'isLockCount' } }, isLockCount: false // 是否显示是否锁定牛头数比例 }, isDetail: false, arrowDown2: true, arrowUp2: false, table2: { getdataListParm: { name: 'getFTdetailList', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), fname: '', feedgroup: '', fweight: '', autosecondname: '', islockcount: '', sort: '' } }, tableKey: 0, list: [], total: 0, listLoading: true, temp: {} }, isDetailDialog: false, template: { dialogFormVisible: false, dialogStatus: '', table: { getdataListParm: { name: 'getFTListDate', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), tname: '', ccid: '', ccname: '', fttype: '', remark: '', enable: '', date: '', source: '' } }, tableKey: 0, total: 0, listLoading: true, list: [] }, table2: { getdataListParm: { name: 'getFTdetailListDate', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid'), fname: '', fweight: '', islockcount: '', sort: '', feedgroup: '', autosecondname: '' } }, tableKey: 0, total: 0, listLoading: true, list: [] }, // 历史日期 getdataDateParm: { name: 'getFTMaxDate', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: { pastureid: Cookies.get('pastureid') } } }, detail: { dialogFormVisible: false, dialogStatus: '', tableKey: 0, total: 0, listLoading: true, list: [], tableKey2: 0, total2: 0, listLoading2: false, list2: [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1 }], getdataListParm: { name: 'getFTDetailCompare', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: {} }, list3: [], disabled: false, getdataListParm2: { name: 'getFTCompare', page: 1, offset: 1, pagecount: 10, returntype: 'Map', parammaps: {} } }, selectList: [], selectList2: [], textMap: { RecipeRecord: '配方记录', SyntheticPremix: '合成预混料' }, requestParam: {}, isokDisable: false, rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' }, cellStyle: { padding: 0 + 'px' } } }, mounted() { document.addEventListener('click', (e) => { if (this.$refs.selectInput !== undefined) { if (!this.$refs.selectInput.contains(e.target)) { this.arrowDown = true this.arrowUp = false } else { this.arrowDown = false this.arrowUp = true } } if (this.$refs.selectInput2 !== undefined) { if (!this.$refs.selectInput2.contains(e.target)) { this.arrowDown2 = true this.arrowUp2 = false } else { this.arrowDown2 = false this.arrowUp2 = true } } }) }, created() { this.getList() this.getDownList() this.getIsLockCount() }, methods: { handleHistory() { MessageBox.confirm('是否确认生成历史?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.requestParam.name = 'creatFTdate' this.requestParam.parammaps = {} this.requestParam.parammaps.pastureid = Cookies.get('pastureid') PostDataByName(this.requestParam).then(response => { console.log('生成历史保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) } else { failproccess(response, this.$notify) } }) }) }, getDownList() { GetDataByNames(this.requestParams).then(response => { this.livestockTypeList = response.data.getDictByName.list this.formulaTypeList = response.data.getDictByName2.list this.feedNameList = response.data.getFeedAndPre.list }) }, // -------------------模板----------------------------- getList() { this.table.listLoading = true GetDataByName(this.table.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { for (let i = 0; i < response.data.list.length; i++) { this.$set(response.data.list[i], 'Edit', false) // 编辑 this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入 this.$set(response.data.list[i], 'isCreate', false) // 新增操作 this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作 this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存 } this.table.list = response.data.list this.table.pageNum = response.data.pageNum this.table.pageSize = response.data.pageSize this.table.total = response.data.total } else { this.table.list = [] } setTimeout(() => { this.table.listLoading = false }, 100) }) }, handleSearch() { console.log('点击了查询') this.table.getdataListParm.offset = 1 this.getList() this.arrowDown = true this.arrowUp = false }, handleRefresh() { console.log('点击了重置') this.table.getdataListParm.offset = 1 this.table.getdataListParm.parammaps.ccid = '' this.table.getdataListParm.parammaps.ccname = '' this.table.getdataListParm.parammaps.fttype = '' this.table.getdataListParm.parammaps.tname = '' this.table.getdataListParm.parammaps.remark = '' this.table.getdataListParm.parammaps.enable = '' this.table.getdataListParm.parammaps.source = '' this.getList() }, // 模板新增 handleCreate() { console.log('点击了新增') // 编辑true/不可编辑false // 新增操true,编辑false,编辑保存false for (let i = 0; i < this.table.list.length; i++) { if (this.table.list[i].Edit === true) { console.log(123) this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 }) return false } } this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'tname': '', 'tcolor': '#ccc', 'ccid': '', 'ccname': '', 'fttype': '', 'fttypeid': '', 'source': '自定义', 'remark': '' }) console.log(this.table.list) }, // 畜生类别 changeLivestockType(item) { this.table.temp.ccname = this.livestockTypeList.find(obj => obj.value === item).label }, // 配方类型 changeFormulaType(item) { this.table.temp.fttype = this.formulaTypeList.find(obj => obj.value === item).label }, createData(row) { console.log('点击了新增保存', row) this.table.temp.tname = row.tname this.table.temp.tcolor = row.tcolor this.table.temp.ccid = row.ccid this.table.temp.ccname = this.table.temp.ccname this.table.temp.fttype = this.table.temp.fttype this.table.temp.fttypeid = row.fttypeid this.table.temp.source = row.source this.table.temp.remark = row.remark this.table.temp.enable = row.enable this.table.temp.pastureid = Cookies.get('pastureid') if (this.table.temp.tname == '' && this.table.temp.ccid == '' && this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 }) return false } else if (this.table.temp.ccid == '' && this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 }) return false } else if (this.table.temp.tname == '') { this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 }) return false } else if (this.table.temp.ccid == '') { this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 }) return false } else if (this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 }) return false } const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]") if (pattern.test(this.table.temp.tname)) { this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 }) return false } console.log(this.table.temp) this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.requestParam.name = 'insertFT' this.requestParam.parammaps = this.table.temp PostDataByName(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList() } else { failproccess(response, this.$notify) } }) }, createCancel(row) { console.log('点击了新增取消') for (let i = 0; i < this.table.list.length; i++) { if (row.myId === this.table.list[i].myId) { var listIndex = this.table.list.indexOf(this.table.list[i]) } if (listIndex > -1) { this.table.list.splice(listIndex, 1) return } } }, // 模板编辑 handleUpdate(row) { for (let i = 0; i < this.table.list.length; i++) { if (this.table.list[i].Edit == true) { this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 }) return false } } // 编辑true,不可编辑false row.Edit = true row.NoEdit = false // 新增false,编辑false,编辑保存true row.isCreate = false row.isUpdate = false row.isUpdateSave = true row.ccid = String(row.ccid) row.fttypeid = String(row.fttypeid) this.table.temp.ccname = row.ccname this.table.temp.fttype = row.fttype }, updateData(row) { console.log('点击了编辑保存', row) this.table.temp.tname = row.tname this.table.temp.tcolor = row.tcolor this.table.temp.ccid = row.ccid this.table.temp.fttypeid = row.fttypeid this.table.temp.source = row.source this.table.temp.remark = row.remark this.table.temp.enable = row.enable this.table.temp.ccname = this.table.temp.ccname this.table.temp.fttype = this.table.temp.fttype this.table.temp.pastureid = row.pastureid this.table.temp.id = row.id if (this.table.temp.tname == '' && this.table.temp.ccid == '' && this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 }) return false } else if (this.table.temp.ccid == '' && this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 }) return false } else if (this.table.temp.tname == '') { this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 }) return false } else if (this.table.temp.ccid == '') { this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 }) return false } else if (this.table.temp.fttypeid == '') { this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 }) return false } const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]") if (pattern.test(this.table.temp.tname)) { this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 }) return false } console.log(this.table.temp) this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.requestParam.name = 'updateFT' this.requestParam.parammaps = this.table.temp PostDataByName(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList() } else { failproccess(response, this.$notify) } }) }, updateCancel(row) { console.log('点击了编辑取消') // 编辑false,不可编辑true row.Edit = false row.NoEdit = true // 新增false,编辑true,编辑保存false row.isCreate = false row.isUpdate = true row.isUpdateSave = false this.getList() }, // 删除 handleRowDelete(row) { console.log('点击了行内删除') MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.selectList = [] this.requestParam.name = 'deleteFT' this.requestParam.parammaps = {} this.requestParam.parammaps.pastureid = row.pastureid this.requestParam.parammaps.id = row.id PostDataByName(this.requestParam).then(response => { if (response.msg === 'fail') { this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 }) this.getList() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }) }) }, handleSelectionChange(val) { console.log('勾选数据', val) this.selectList = val }, handleDelete() { console.log('点击了删除') if (this.selectList.length == 0) { this.$message({ type: 'error', message: '请选择配方', duration: 2000 }) } else { MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { console.log(this.selectList) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }} this.requestParam.data[0].children = [] this.requestParam.data[0].children[0] = { 'name': 'deleteFT', 'type': 'e', 'parammaps': { id: '@insertSpotList.id', pastureid: '@insertSpotList.pastureid' }} 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.getList() } }) }) } }, // 复制 handleCopy() { if (this.selectList.length == 0) { this.$message({ type: 'error', message: '请选择配方', duration: 2000 }) } else { MessageBox.confirm('是否确认复制此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { console.log(this.selectList) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }} this.requestParam.data[0].children = [] this.requestParam.data[0].children[0] = { 'name': 'copyFT', 'type': 'e', 'parammaps': { ftid: '@insertSpotList.id', pastureid: '@insertSpotList.pastureid' }} 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.getList() } }) }) } }, // 配方记录 handleRecipeRecord() { console.log('点击了配方记录') this.template.dialogStatus = 'RecipeRecord' this.template.dialogFormVisible = true this.template.table.getdataListParm.parammaps.ccname = '' this.template.table.getdataListParm.parammaps.fttype = '' this.template.table.getdataListParm.parammaps.enable = '' this.template.table.getdataListParm.parammaps.tname = '' this.template.table.getdataListParm.parammaps.remark = '' this.template.table.getdataListParm.parammaps.source = '' this.template.table.getdataListParm.offset = 1 this.getDateList() this.isDetailDialog = false }, // 历史时间 getDateList() { GetDataByName(this.template.getdataDateParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { this.template.table.getdataListParm.parammaps.date = response.data.list[0].maxdate this.getTemplateDialogList() } else { this.template.table.getdataListParm.parammaps.date = '' } }) }, // 配方记录-模板 getTemplateDialogList() { this.template.table.listLoading = true GetDataByName(this.template.table.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { this.template.table.list = response.data.list this.template.table.pageNum = response.data.pageNum this.template.table.pageSize = response.data.pageSize this.template.table.total = response.data.total } else { this.template.table.list = [] } setTimeout(() => { this.template.table.listLoading = false }, 100) }) }, handleDialogSearch() { this.template.table.getdataListParm.offset = 1 this.getTemplateDialogList() this.arrowDown = true this.arrowUp = false }, handleDialogRefresh() { this.template.table.getdataListParm.parammaps.ccname = '' this.template.table.getdataListParm.parammaps.fttype = '' this.template.table.getdataListParm.parammaps.enable = '' this.template.table.getdataListParm.parammaps.tname = '' this.template.table.getdataListParm.parammaps.remark = '' this.template.table.getdataListParm.parammaps.source = '' this.template.table.getdataListParm.offset = 1 this.getTemplateDialogList() }, // 配方记录-模板行点击 tableRowClickDialog(row, column, event) { console.log('配方记录-模板行点击') this.isDetailDialog = true this.template.table2.getdataListParm.parammaps.ftid = row.id this.getDialogList() this.getDownList() }, getDialogList() { this.template.table2.listLoading = true GetDataByName(this.template.table2.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { this.template.table2.list = response.data.list this.template.table2.pageNum = response.data.pageNum this.template.table2.pageSize = response.data.pageSize this.template.table2.total = response.data.total } else { this.template.table2.list = [] } setTimeout(() => { this.template.table2.listLoading = false }, 100) }) }, handleDialogSearch2() { console.log('点击了查询') this.arrowDown2 = true this.arrowUp2 = false this.template.table2.getdataListParm.offset = 1 this.getDialogList2() }, handleDialogRefresh2() { console.log('点击了重置') this.template.table2.getdataListParm.parammaps.fname = '' this.template.table2.getdataListParm.parammaps.feedgroup = '' this.template.table2.getdataListParm.parammaps.fweight = '' this.template.table2.getdataListParm.parammaps.autosecondname = '' this.template.table2.getdataListParm.parammaps.islockcount = '0' this.template.table2.getdataListParm.parammaps.sort = '' this.template.table2.getdataListParm.offset = 1 this.getDialogList2() }, getDialogList2() { this.template.table2.listLoading = true GetDataByName(this.template.table2.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { this.template.table2.list = response.data.list this.template.table2.pageNum = response.data.pageNum this.template.table2.pageSize = response.data.pageSize this.template.table2.total = response.data.total } else { this.template.table2.list = [] } this.$nextTick(function() { window.scrollTo({ 'top': this.$refs.templateDialog.clientHeight }) }) setTimeout(() => { this.template.table2.listLoading = false }, 100) }) }, handleImport() { console.log('点击了导入') }, handleExport() { console.log('点击了导出') }, changeDate() { this.getTemplateDialogList() }, // 应用 handleApplication() { console.log('点击了应用') MessageBox.confirm('是否确认将' + this.template.table.getdataListParm.parammaps.date + '的数据应用到当前?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.requestParam.name = 'applyFTdate' this.requestParam.parammaps = {} this.requestParam.parammaps.pastureid = Cookies.get('pastureid') this.requestParam.parammaps.date = this.template.table.getdataListParm.parammaps.date PostDataByName(this.requestParam).then(response => { if (response.msg === 'fail') { this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getTemplateDialogList() this.getList() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消应用' }) }) }, // 模板行点击 tableRowClick(row, column, event) { console.log(row, column, event) for (let i = 0; i < this.table.list.length; i++) { if (this.table.list[i].Edit == true) { return false } } if (column.label !== '操作') { this.isDetail = true // 点击行显示详情 this.table2.getdataListParm.parammaps.ftid = row.id this.table2.getdataListParm.parammaps.fttypeid = row.fttypeid this.getList2() this.getDownList() } }, // -------------------详情----------------------------- // 获取是否显示是否锁定牛头数 getIsLockCount() { GetDataByName(this.lockCount.getdataListParm).then(response => { console.log(response.data.list) if (response.data.list[0].inforvalue == 0) { this.lockCount.isLockCount = false } else { this.lockCount.isLockCount = true } }) }, // 详情 getList2() { this.table2.listLoading = true GetDataByName(this.table2.getdataListParm).then(response => { console.log('table数据', response.data.list) if (response.data.list !== null) { for (let i = 0; i < response.data.list.length; i++) { this.$set(response.data.list[i], 'Edit', false) // 编辑 this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入 this.$set(response.data.list[i], 'groupEdit', false) // 饲料组编辑 this.$set(response.data.list[i], 'isGroupDisabled', false) // 饲料组编辑禁止编辑 this.$set(response.data.list[i], 'groupNoEdit', true) // 饲料组不可编辑 this.$set(response.data.list[i], 'isCreate', false) // 新增操作 this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作 this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存 } this.rowDrop() this.table2.list = response.data.list this.table2.pageNum = response.data.pageNum this.table2.pageSize = response.data.pageSize this.table2.total = response.data.total } else { this.table2.list = [] } this.$nextTick(function() { console.log(this.$refs) console.log(this.$refs.template.clientHeight) window.scrollTo({ 'top': this.$refs.template.clientHeight }) }) setTimeout(() => { this.table2.listLoading = false }, 100) }) }, // 行拖拽 rowDrop() { console.log(document.querySelector('#table2 .el-table__body-wrapper tbody')) const tbody = document.querySelector('#table2 .el-table__body-wrapper tbody') const that = this Sortable.create(tbody, { onEnd({ newIndex, oldIndex }) { const currRow = that.table2.list.splice(oldIndex, 1)[0] that.table2.list.splice(newIndex, 0, currRow) console.log('索引', newIndex) console.log('拖动数据', currRow) console.log('上', that.table2.list[newIndex - 1]) console.log('下', that.table2.list[newIndex + 1]) if (that.table2.list[newIndex - 1] === undefined) { // 拖动至最上方无值 // 顺序等于0,其他+1 // 饲料组等于饲料名称 for (let i = 0; i < that.table2.list.length; i++) { that.table2.list[i].sort = parseInt(that.table2.list[i].sort) + 1 // 其他的顺序+1 } currRow.sort = 0 currRow.feedgroup = currRow.fname console.log('拖动至最上方无值') } else if (currRow.sort == that.table2.list[newIndex - 1].sort) { // 拖动值顺序等于上值顺序 currRow.sort = that.table2.list[newIndex - 1].sort console.log('拖动值顺序等于上值顺序') } else if (that.table2.list[newIndex + 1] == undefined) { // 拖动至最下方无值 // 顺序等于上方顺序+1 // 饲料组等于饲料名称 currRow.sort = parseInt(that.table2.list[newIndex - 1].sort) + 1 currRow.feedgroup = currRow.fname console.log('拖动至最下方无值') } else if (currRow.sort == that.table2.list[newIndex + 1].sort) { // 拖动值顺序等于下值顺序 currRow.sort == that.table2.list[newIndex + 1].sort console.log('拖动值顺序等于下值顺序') } else if (that.table2.list[newIndex - 1].sort == that.table2.list[newIndex + 1].sort) { // 拖动至上下顺序一致,顺序/饲料组与上下保持一致 currRow.sort = that.table2.list[newIndex - 1].sort currRow.feedgroup = that.table2.list[newIndex - 1].feedgroup console.log('拖动至上下顺序一致') } else if (that.table2.list[newIndex - 1].sort !== undefined && that.table2.list[newIndex + 1].sort !== undefined) { // 拖动至上下都有值 console.log('上下') if (parseInt(that.table2.list[newIndex - 1].sort) + 1 == that.table2.list[newIndex + 1].sort) { console.log(newIndex) for (let i = newIndex; i < that.table2.list.length; i++) { that.table2.list[i].sort = parseInt(that.table2.list[i].sort) + 1 } } currRow.sort = parseInt(that.table2.list[newIndex - 1].sort) + 1 currRow.feedgroup = currRow.fname console.log(that.table2.list[newIndex + 1].sort) } that.requestParam = {} that.requestParam.common = { 'returnmap': '0' } that.requestParam.data = [] that.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': that.table2.list }} that.requestParam.data[0].children = [] that.requestParam.data[0].children[0] = { 'name': 'updateFTdetailSort', 'type': 'e', 'parammaps': { id: '@insertSpotList.id', pastureid: '@insertSpotList.pastureid', sort: '@insertSpotList.sort', feedgroup: '@insertSpotList.feedgroup' }} ExecDataByConfig(that.requestParam).then(response => { console.log('顺序切换保存发送参数', that.requestParam) if (response.msg === 'fail') { that.$notify({ title: '顺序切换失败', message: response.data, type: 'warning', duration: 2000 }) } else { that.$notify({ title: '', message: '顺序切换成功', type: 'success', duration: 2000 }) that.getList2() } }) } }) }, handleSearch2() { console.log('点击了查询') this.arrowDown2 = true this.arrowUp2 = false this.table2.getdataListParm.offset = 1 this.getList2() }, handleRefresh2() { console.log('点击了重置') this.table2.getdataListParm.parammaps.fname = '' this.table2.getdataListParm.parammaps.feedgroup = '' this.table2.getdataListParm.parammaps.fweight = '' this.table2.getdataListParm.parammaps.autosecondname = '' this.table2.getdataListParm.parammaps.islockcount = '0' this.table2.getdataListParm.parammaps.sort = '' this.table2.getdataListParm.offset = 1 this.getList2() }, // 详情新增 handleCreate2() { console.log('点击了详情新增', this.table2.list) // 编辑true/不可编辑false // 新增操true,编辑false,编辑保存false console.log(11) for (let i = 0; i < this.table2.list.length; i++) { if (this.table2.list[i].Edit === true) { console.log(123) this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 }) return false } } console.log(this.table2.list) if (this.table2.list.length == 0) { var mysort = 0 } else { var mysort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1 } this.table2.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'groupEdit': false, 'groupNoEdit': true, 'enable': 1, 'feedgroup': '', 'fid': '', 'fname': '', 'fweight': '', 'autosecond': '0', 'islockcount': '0', 'sort': mysort }) console.log(this.table2.list) }, changeFname(item, row) { console.log(item, row) this.table2.temp.fname = this.feedNameList.find(obj => obj.id == item).fname row.fname = this.feedNameList.find(obj => obj.id == item).fname if (this.feedNameList.find(obj => obj.id == item).ispreft == '0') { this.table2.temp.preftid = '0' } else { this.table2.temp.preftid = item } if (row.sort == '') { row.feedgroup = this.table2.temp.fname } else { if (row.isCreate == true) { // 新增状态下 for (let i = 1; i < this.table2.list.length; i++) { if (this.table2.list[i].sort == row.sort) { console.log(this.table2.list[i]) row.feedgroup = this.table2.list[i].feedgroup break } else { row.feedgroup = this.table2.temp.fname } } } else if (row.isUpdateSave == true) { // 编辑状态下 var Arr = [] for (let i = 0; i < this.table2.list.length; i++) { Arr.push(this.table2.list[i].sort) } var Count = 0 for (let i = 0; i < Arr.length; i++) { if (Arr[i] == row.sort) { Count++ } } for (let i = 0; i < this.table2.list.length; i++) { if (Count > 1) { row.feedgroup = this.table2.list[i].feedgroup console.log(111, this.table2.list[i].feedgroup) break } else if (Count == 1) { row.feedgroup = this.table2.temp.fname console.log(222, this.table2.temp.fname) } } } } }, blurSort(row) { if (row.isCreate == true) { if (row.sort !== '') { for (let i = 1; i < this.table2.list.length; i++) { if (this.table2.list[i].sort == parseInt(row.sort)) { row.feedgroup = this.table2.list[i].feedgroup return false } else { row.feedgroup = row.fname } } } else { row.feedgroup = row.fname } } else if (row.isUpdateSave == true) { console.log(1111) if (row.sort !== '') { for (let i = 0; i < this.table2.list.length; i++) { if (this.table2.list[i].sort == row.sort) { console.log('失去焦点,行内顺序与表格某顺序相同时', this.table2.list[i]) if (this.table2.list[i].id !== row.id) { row.isGroupDisabled = true row.feedgroup = this.table2.list[i].feedgroup break } } else { console.log('失去焦点,行内顺序与表格某顺序不相同时') row.isGroupDisabled = true row.feedgroup = row.fname } } } else { row.feedgroup = row.fname } } }, createData2(row) { console.log('点击了详情新增保存', row) this.table2.temp.pastureid = Cookies.get('pastureid') this.table2.temp.ftid = this.table2.getdataListParm.parammaps.ftid this.table2.temp.fid = row.fid this.table2.temp.fname = this.table2.temp.fname this.table2.temp.fweight = row.fweight this.table2.temp.islockcount = row.islockcount this.table2.temp.sort = row.sort this.table2.temp.feedgroup = row.feedgroup this.table2.temp.preftid = this.table2.temp.preftid this.table2.temp.autosecond = row.autosecond if (this.table2.temp.fid == '' && this.table2.temp.fweight == '' && this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时不能为空', duration: 2000 }) return false } else if (this.table2.temp.fweight == '' && this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '重量/搅拌延时不能为空', duration: 2000 }) return false } else if (this.table2.temp.fid == '') { this.$message({ type: 'error', message: '饲料名称不能为空', duration: 2000 }) return false } else if (this.table2.temp.fweight == '') { this.$message({ type: 'error', message: '重量不能为空', duration: 2000 }) return false } else if (this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '搅拌延时不能为空', duration: 2000 }) return false } if (this.table2.temp.sort !== '') { this.table2.temp.sort = this.table2.temp.sort } else { console.log(this.table2.list.length) if (this.table2.list.length == 1) { this.table2.temp.sort = 0 } else { this.table2.temp.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1 row.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1 } } if (this.table2.getdataListParm.parammaps.fttypeid == 2) { if (parseInt(this.table2.temp.preftid) > 0) { this.$message({ type: 'error', message: '饲料名称不能选择预混配方', duration: 2000 }) return false } } // 校验顺序是否>=0 var ruleSort = /^\d+$/ if (!ruleSort.test(this.table2.temp.sort)) { this.$message({ type: 'error', message: '饲料顺序不可为负数', duration: 2000 }) return false } // 检验重量>0 var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/ if (!ruleWeight.test(this.table2.temp.fweight)) { this.$message({ type: 'error', message: '重量请输入正数,最多保留俩位小数', duration: 2000 }) return false } this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': { pastureid: this.table2.temp.pastureid, ftid: this.table2.getdataListParm.parammaps.ftid, fid: row.fid, fname: this.table2.temp.fname, fweight: row.fweight, islockcount: row.islockcount, sort: row.sort, feedgroup: row.feedgroup, preftid: this.table2.temp.preftid, autosecond: row.autosecond }} this.requestParam.data[1] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': { pastureid: this.table2.temp.pastureid, ftid: this.table2.getdataListParm.parammaps.ftid, type: this.table2.getdataListParm.parammaps.fttypeid }} ExecDataByConfig(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList2() } else { failproccess(response, this.$notify) } }) }, createCancel2(row) { console.log('点击了详情新增取消') for (let i = 0; i < this.table2.list.length; i++) { if (row.myId === this.table2.list[i].myId) { var listIndex = this.table2.list.indexOf(this.table2.list[i]) } if (listIndex > -1) { this.table2.list.splice(listIndex, 1) return } } this.getDialogList() }, // 详情编辑 handleUpdate2(row) { console.log('详情编辑', row) row.isGroupDisabled = false row.islockcount = String(row.islockcount) row.fid = String(row.fid) row.autosecond = String(row.autosecond) this.table2.temp.fname = row.fname this.table2.temp.preftid = row.preftid const rowArr = [] for (let i = 0; i < this.table2.list.length; i++) { if (this.table2.list[i].Edit == true) { this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 }) return false } rowArr.push(this.table2.list[i].sort) } var count = 0 for (let i = 0; i < rowArr.length; i++) { if (rowArr[i] == row.sort) { count++ } } // 判断是否有相同顺序,如果没有饲料组不可编辑,若有饲料组可编辑 if (count == 1) { // 饲料组编辑false,不可编辑true row.groupEdit = false row.groupNoEdit = true // 编辑true,不可编辑false row.Edit = true row.NoEdit = false // 新增false,编辑false,编辑保存true row.isCreate = false row.isUpdate = false row.isUpdateSave = true } else if (count > 1) { // 饲料组编辑true,不可编辑false row.groupEdit = true row.groupNoEdit = false console.log(222) // 编辑true,不可编辑false row.Edit = true row.NoEdit = false // 新增false,编辑false,编辑保存true row.isCreate = false row.isUpdate = false row.isUpdateSave = true return false } }, updateData2(row) { console.log('点击了详情编辑保存', row) this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.table2.temp.pastureid = row.pastureid this.table2.temp.ftid = this.table2.getdataListParm.parammaps.ftid this.table2.temp.fid = row.fid this.table2.temp.fname = this.table2.temp.fname this.table2.temp.fweight = row.fweight this.table2.temp.islockcount = row.islockcount this.table2.temp.sort = row.sort this.table2.temp.feedgroup = row.feedgroup this.table2.temp.preftid = this.table2.temp.preftid this.table2.temp.autosecond = row.autosecond this.table2.temp.id = row.id if (this.table2.temp.fid == '' && this.table2.temp.fweight == '' && this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时不能为空', duration: 2000 }) return false } else if (this.table2.temp.fweight == '' && this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '重量/搅拌延时不能为空', duration: 2000 }) return false } else if (this.table2.temp.fid == '') { this.$message({ type: 'error', message: '饲料名称不能为空', duration: 2000 }) return false } else if (this.table2.temp.fweight == '') { this.$message({ type: 'error', message: '重量不能为空', duration: 2000 }) return false } else if (this.table2.temp.autosecond == '') { this.$message({ type: 'error', message: '搅拌延时不能为空', duration: 2000 }) return false } if (this.table2.temp.sort !== '') { this.table2.temp.sort = this.table2.temp.sort } else { this.table2.temp.sort = parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1 } if (this.table2.getdataListParm.parammaps.fttypeid == 2) { if (parseInt(this.table2.temp.preftid) > 0) { this.$message({ type: 'error', message: '饲料名称不能选择预混配方', duration: 2000 }) return false } } // 校验顺序是否>=0 var ruleSort = /^\d+$/ if (!ruleSort.test(this.table2.temp.sort)) { this.$message({ type: 'error', message: '饲料顺序不可为负数', duration: 2000 }) return false } // 检验重量>0 var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/ if (!ruleWeight.test(this.table2.temp.fweight)) { this.$message({ type: 'error', message: '重量请输入正数,最多保留俩位小数', duration: 2000 }) return false } this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'updateFTdetail', 'type': 'e', 'parammaps': { pastureid: row.pastureid, ftid: this.table2.getdataListParm.parammaps.ftid, fid: row.fid, fname: this.table2.temp.fname, fweight: row.fweight, islockcount: row.islockcount, sort: row.sort, feedgroup: row.feedgroup, preftid: this.table2.temp.preftid, autosecond: row.autosecond, id: row.id }} this.requestParam.data[1] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': { pastureid: row.pastureid, ftid: this.table2.getdataListParm.parammaps.ftid, type: this.table2.getdataListParm.parammaps.fttypeid }} ExecDataByConfig(this.requestParam).then(response => { console.log('新增保存发送参数', this.requestParam) if (response.msg !== 'fail') { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList2() } else { failproccess(response, this.$notify) } }) }, updateCancel2(row) { console.log('点击了详情编辑取消') // 饲料组编辑false,不可编辑true row.groupEdit = false row.groupNoEdit = true // 编辑false,不可编辑true row.Edit = false row.NoEdit = true // 新增false,编辑true,编辑保存false row.isCreate = false row.isUpdate = true row.isUpdateSave = false this.getList2() }, // 详情删除 handleRowDelete2(row) { console.log('点击了行内删除') MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': { pastureid: row.pastureid, id: row.id }} this.requestParam.data[1] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': { pastureid: row.pastureid, ftid: this.table2.getdataListParm.parammaps.ftid, type: this.table2.getdataListParm.parammaps.fttypeid }} 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.getList2() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }) }) }, handleSelectionChange2(val) { console.log('勾选数据', val) this.selectList2 = val }, handleDelete2() { console.log('点击了删除') if (this.selectList2.length == 0) { this.$message({ type: 'error', message: '请选择配方详情', duration: 2000 }) } else { MessageBox.confirm('是否确认删除此信息?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { console.log(this.selectList) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList2 }} this.requestParam.data[0].children = [] this.requestParam.data[0].children[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': { id: '@insertSpotList.id', pastureid: '@insertSpotList.pastureid' }} 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.getList2() } }) }) } }, // 拆分预混料 handleSplitPremix(row) { console.log('点击了拆分预混料') MessageBox.confirm('是否确认拆分当前预混料?', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning' }).then(() => { this.requestParam.name = 'splitFTpre' this.requestParam.parammaps = {} this.requestParam.parammaps.ftid = this.table2.getdataListParm.parammaps.ftid this.requestParam.parammaps.preftid = row.preftid this.requestParam.parammaps.ftdid = row.id this.requestParam.parammaps.pastureid = row.pastureid this.requestParam.parammaps.feedgroup = row.feedgroup this.requestParam.parammaps.sort = row.sort this.requestParam.parammaps.fweight = row.fweight PostDataByName(this.requestParam).then(response => { if (response.msg === 'fail') { this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 }) } else { this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 }) this.getList2() } }) }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }) }) }, // 合成预混料 handleSyntheticPremix() { console.log('点击了合成预混料', this.selectList2) if (this.table2.getdataListParm.parammaps.fttypeid == 2) { this.$message({ type: 'error', message: '预混配方不可合成预混料', duration: 2000 }) return false } else { if (this.selectList2.length > 1) { for (let i = 0; i < this.selectList2.length; i++) { if (parseInt(this.selectList2[i].preftid) > 0) { this.$message({ type: 'error', message: '不可选择预混料', duration: 2000 }) return false } } if (this.selectList2[0].splitftpreid !== undefined) { this.detail.getdataListParm.parammaps.ftid = this.selectList2[0].splitftpreid this.detail.getdataListParm.parammaps.pastureid = this.selectList2[0].pastureid GetDataByName(this.detail.getdataListParm).then(response => { if (response.data.list !== null) { // 不为空时得到比对数据 this.detail.list3 = response.data.list const sortList = [] // 声明排序数组 var fweightSum = 0 // 总重量 for (let i = 0; i < this.selectList2.length; i++) { const obj = {} obj.fid = this.selectList2[i].fid obj.fweight = this.selectList2[i].fweight fweightSum = fweightSum + parseFloat(this.selectList2[i].fweight) sortList.push(obj) } // 排序 sortList.sort(function(a, b) { return a.fid.localeCompare(b.fid) }) var a = 0 if (this.detail.list3.length == sortList.length) { for (let i = 0; i < this.detail.list3.length; i++) { if (this.detail.list3[i].fid == sortList[i].fid && (this.detail.list3[i].fweight / this.detail.list3[i].sumWeight).toFixed(2) == (sortList[i].fweight / fweightSum).toFixed(2)) { a++ } } if (a == this.detail.list3.length) { // 如果相等,则该配方为原预混配方 this.detail.getdataListParm2.parammaps.ftid = this.selectList2[0].splitftpreid this.detail.getdataListParm2.parammaps.pastureid = this.selectList2[0].pastureid GetDataByName(this.detail.getdataListParm2).then(response => { if (response.data.list !== null) { this.detail.dialogStatus = 'SyntheticPremix' this.detail.dialogFormVisible = true this.detail.list = this.selectList2 this.detail.list2 = response.data.list this.detail.disabled = true setTimeout(() => { this.detail.listLoading = false }, 100) } else { this.detail.list2 = [] } }) } else { this.detail.dialogStatus = 'SyntheticPremix' this.detail.dialogFormVisible = true this.detail.list = this.selectList2 this.detail.disabled = false this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1 }] setTimeout(() => { this.detail.listLoading = false }, 100) } } else { this.detail.dialogStatus = 'SyntheticPremix' this.detail.dialogFormVisible = true this.detail.list = this.selectList2 this.detail.disabled = false this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1 }] setTimeout(() => { this.detail.listLoading = false }, 100) } } else { this.detail.list3 = [] this.detail.dialogStatus = 'SyntheticPremix' this.detail.dialogFormVisible = true this.detail.list = this.selectList2 this.detail.disabled = false this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1 }] setTimeout(() => { this.detail.listLoading = false }, 100) } }) } else { this.detail.dialogStatus = 'SyntheticPremix' this.detail.dialogFormVisible = true this.detail.list = this.selectList2 this.detail.disabled = false this.detail.list2 = [{ tname: '', tcolor: '#ccc', ccid: '', fttype: '预混配方', fttypeid: '2', source: '自定义', remark: '', 'enable': 1 }] setTimeout(() => { this.detail.listLoading = false }, 100) } } else { this.$message({ type: 'error', message: '请选择俩条及以上饲料进行合成', duration: 2000 }) return false } } }, // 畜生类别 changeLivestockType2(item) { this.detail.list2[0].ccname = this.livestockTypeList.find(obj => obj.value === item).label }, syntheticPremixData() { console.log('点击了合成预混料确认') if (this.detail.disabled == true) { // 原预混料 let sumFweight = 0 for (let i = 0; i < this.detail.list.length; i++) { sumFweight += parseFloat(this.detail.list[i].fweight) } sumFweight = sumFweight.toFixed(2) this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.detail.list }} this.requestParam.data[0].children = [] this.requestParam.data[0].children[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': { pastureid: '@insertSpotList.pastureid', id: '@insertSpotList.id' }} this.requestParam.data[1] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.detail.list2 }} this.requestParam.data[1].children = [] this.requestParam.data[1].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': { pastureid: Cookies.get('pastureid'), ftid: this.table2.getdataListParm.parammaps.ftid, fid: this.detail.list2[0].id, fname: '@insertSpotList2.tname', fweight: sumFweight, islockcount: '0', sort: parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1, feedgroup: this.detail.list[0].feedgroup, preftid: this.detail.list2[0].id, autosecond: this.detail.list[0].autosecond }} ExecDataByConfig(this.requestParam).then(response => { console.log('合成预混料保存发送参数', this.requestParam) if (response.msg === 'fail') { const tname = new RegExp("key 'tname'") if (tname.test(response.data)) { this.$message({ type: 'error', message: '预混配方已存在,不可重复生成', duration: 2000 }) } else { this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 }) } } else { this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 }) this.detail.dialogFormVisible = false this.getList() this.getList2() this.getDownList() } }) } else { // 现生成预混料 if (this.detail.list2[0].tname == '' && this.detail.list2[0].ccid == '') { this.$message({ type: 'error', message: '配方名称/牲畜类别/不能为空', duration: 2000 }) return false } else if (this.detail.list2[0].tname == '') { this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 }) return false } else if (this.detail.list2[0].ccid == '') { this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 }) return false } const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]") if (pattern.test(this.detail.list2[0].tname)) { this.$message({ type: 'error', message: '配方名称不可输入特殊字符', duration: 2000 }) return false } let sumFweight = 0 for (let i = 0; i < this.detail.list.length; i++) { sumFweight += parseFloat(this.detail.list[i].fweight) } sumFweight = sumFweight.toFixed(2) console.log(sumFweight) this.isokDisable = true setTimeout(() => { this.isokDisable = false }, 1000) this.requestParam.common = { 'returnmap': '0' } this.requestParam.data = [] this.requestParam.data[0] = { 'name': 'insertFT', 'type': 'e', 'parammaps': { pastureid: Cookies.get('pastureid'), tcode: this.detail.list2[0].tcode, tname: this.detail.list2[0].tname, tcolor: this.detail.list2[0].tcolor, ccid: this.detail.list2[0].ccid, ccname: this.detail.list2[0].ccname, fttype: this.detail.list2[0].fttype, fttypeid: this.detail.list2[0].fttypeid, source: this.detail.list2[0].source, remark: this.detail.list2[0].remark, enable: this.detail.list2[0].enable }} this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.detail.list }} this.requestParam.data[1].children = [] this.requestParam.data[1].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': { pastureid: '@insertSpotList.pastureid', ftid: '@insertFT.LastInsertId', fid: '@insertSpotList.fid', fname: '@insertSpotList.fname', fweight: '@insertSpotList.fweight', islockcount: '@insertSpotList.islockcount', sort: '@insertSpotList.sort', feedgroup: '@insertSpotList.feedgroup', preftid: '@insertSpotList.preftid', autosecond: '@insertSpotList.autosecond' }} this.requestParam.data[1].children[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': { pastureid: '@insertSpotList.pastureid', id: '@insertSpotList.id' }} this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.detail.list2 }} this.requestParam.data[2].children = [] this.requestParam.data[2].children[0] = { 'name': 'insertFTdetail', 'type': 'e', 'parammaps': { pastureid: Cookies.get('pastureid'), ftid: this.table2.getdataListParm.parammaps.ftid, fid: '@insertFT.LastInsertId', fname: '@insertSpotList2.tname', fweight: sumFweight, islockcount: '0', sort: parseInt(this.table2.list[this.table2.list.length - 1].sort) + 1, feedgroup: this.detail.list[0].feedgroup, preftid: '@insertFT.LastInsertId', autosecond: this.detail.list[0].autosecond }} ExecDataByConfig(this.requestParam).then(response => { console.log('合成预混料保存发送参数', this.requestParam) if (response.msg === 'fail') { const tname = new RegExp("key 'tname'") if (tname.test(response.data)) { this.$message({ type: 'error', message: '预混配方已存在,不可重复生成', duration: 2000 }) } else { this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 }) } } else { this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 }) this.detail.dialogFormVisible = false this.getList() this.getList2() this.getDownList() } }) } } } } </script> <style lang="scss" scoped> .search{margin-top:10px;} .table{margin-top:10px;} .table2{margin-top:10px;} $width:350px; $left:325px; .selectInput{ position: relative; display: inline-block; .Input{width: $width;position: relative;} .el-icon-arrow-down{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;} .el-icon-arrow-up{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;} .selectUl{ z-index: 111;width: $width;background: #fff;border: 1px solid #E4E7ED;box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);margin: -1px 0 0 0;padding: 6px 0; margin: 0;box-sizing: border-box;position: absolute; li{ list-style: none;font-size: 14px; padding: 0 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #606266; height: 50px; line-height: 50px; box-sizing: border-box; cursor: pointer; a{float:left;width: 80px;} a:hover{color: rgba(0, 204, 102, 0.71); font-weight: 700;} } } } .template{ background: #fff; position: relative; .recipeTemplate{ width: 72px; height: 70px; position: absolute; background: url(../../../assets/images/bg1.jpg) no-repeat; right: 0; top: 0; margin: 0; } } .detail{ background: #fff; position: relative; .recipeDetail{ width: 72px; height: 70px; position: absolute; background: url(../../../assets/images/bg2.jpg) no-repeat; right: 0; top: 0; margin: 0; } } .templateDialog{ background: #fff; position: relative; .recipeTemplate{ width: 72px; height: 70px; position: absolute; background: url(../../../assets/images/bg1.jpg) no-repeat; right: 0; top: 0; margin: 0; } } .detailDialog{ background: #fff; position: relative; .recipeDetail{ width: 72px; height: 70px; position: absolute; background: url(../../../assets/images/bg2.jpg) no-repeat; right: 0; top: 0; margin: 0; } } </style>