|  | @@ -0,0 +1,3185 @@
 | 
	
		
			
				|  |  | +<template>
 | 
	
		
			
				|  |  | +  <div ref="appContainer" class="app-container">
 | 
	
		
			
				|  |  | +    <div ref="myContainer" class="myContainer">
 | 
	
		
			
				|  |  | +      <!-- 配方模板表 -->
 | 
	
		
			
				|  |  | +      <div ref="template" class="template">
 | 
	
		
			
				|  |  | +        <div class="recipeTemplate">
 | 
	
		
			
				|  |  | +          <p>配方模板表</p>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +        <div class="search">
 | 
	
		
			
				|  |  | +          <el-select v-model="table.parammaps.cattle_category_id" 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.parammaps.formula_type_id" 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.parammaps.data_source_id" filterable placeholder="来源" class="filter-item" style="width: 120px;" clearable>
 | 
	
		
			
				|  |  | +            <el-option v-for="item in sourceList" :key="item.value" :label="item.label" :value="item.value" />
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +          <el-select v-model="table.parammaps.is_show" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
 | 
	
		
			
				|  |  | +            <el-option v-for="item in enableList" :key="item.value" :label="item.label" :value="item.value" />
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +          <div ref="selectInput" class="filter-item selectInput">
 | 
	
		
			
				|  |  | +            <el-input v-model="table.parammaps.all" 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.parammaps.name" clearable style="width: 245px;" /></li>
 | 
	
		
			
				|  |  | +              <li><a>备注</a><el-input v-model="table.parammaps.remarks" clearable style="width: 245px;" /></li>
 | 
	
		
			
				|  |  | +              <li />
 | 
	
		
			
				|  |  | +              <li>
 | 
	
		
			
				|  |  | +                <div style="float: right;">
 | 
	
		
			
				|  |  | +                  <el-button class="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
 | 
	
		
			
				|  |  | +                  <el-button class="miniPrimary" @click="handleSearch1">搜索</el-button>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +              </li>
 | 
	
		
			
				|  |  | +            </ul>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <el-button class="successBorder" @click="handleSearch1">查询</el-button>
 | 
	
		
			
				|  |  | +          <el-button class="successBorder" @click="handleRefresh1">重置</el-button>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +        <div class="operation">
 | 
	
		
			
				|  |  | +          <el-button v-if="isAdd1" class="success" icon="el-icon-plus" @click="handleCreate1">新增</el-button>
 | 
	
		
			
				|  |  | +          <el-upload style="float: right;" action="#" :http-request="httpRequest" :show-file-list="false" :on-change="handleChange" :before-upload="beforeAvatarUpload" multiple accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
 | 
	
		
			
				|  |  | +            <el-button v-if="isImport1" class="import" icon="el-icon-download" style="float: right;">导入</el-button>
 | 
	
		
			
				|  |  | +          </el-upload>
 | 
	
		
			
				|  |  | +          <el-dropdown style="float: right;margin-right: 10px;">
 | 
	
		
			
				|  |  | +            <el-button v-if="isExport1" class="export" icon="el-icon-upload2">导出</el-button>
 | 
	
		
			
				|  |  | +            <el-dropdown-menu slot="dropdown">
 | 
	
		
			
				|  |  | +              <el-dropdown-item @click.native="handleExport(1)">导出模板</el-dropdown-item>
 | 
	
		
			
				|  |  | +              <el-dropdown-item @click.native="handleExport(2)">导出数据</el-dropdown-item>
 | 
	
		
			
				|  |  | +            </el-dropdown-menu>
 | 
	
		
			
				|  |  | +          </el-dropdown>
 | 
	
		
			
				|  |  | +          <el-button class="export" style="float: right;" @click="handleRecipeRecord">配方下发</el-button>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +        <div ref="table" 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"
 | 
	
		
			
				|  |  | +            :height="myheight1"
 | 
	
		
			
				|  |  | +            @row-click="table1RowClick"
 | 
	
		
			
				|  |  | +            @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="配方名称" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <span v-if="scope.row.NoEdit">{{ scope.row.name }}</span>
 | 
	
		
			
				|  |  | +                <el-input v-if="scope.row.Edit" v-model.trim="scope.row.name" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:98%;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.encode_number }}</span>
 | 
	
		
			
				|  |  | +                <el-input v-if="scope.row.Edit" v-model.trim="scope.row.encode_number" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" disabled maxlength="32" style="width:98%;padding:10px 0;" />
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +            <el-table-column label="配方颜色" min-width="70px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <el-color-picker v-model="scope.row.colour" size="mini" :predefine="predefineColors" style="vertical-align: middle;" :disabled="scope.row.NoEdit" />
 | 
	
		
			
				|  |  | +              </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.cattle_category_name }}</span>
 | 
	
		
			
				|  |  | +                <el-select v-if="scope.row.Edit" v-model="scope.row.cattle_category_id" filterable placeholder="牲畜类别" class="filter-item" style="width:95%;padding:10px 0;" @change="changeLivestockType1">
 | 
	
		
			
				|  |  | +                  <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="130px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <span v-if="scope.row.NoEdit">{{ scope.row.formula_type_name }}</span>
 | 
	
		
			
				|  |  | +                <el-select v-if="scope.row.Edit && scope.row.isCreate == true" v-model="scope.row.formula_type_id" filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType1">
 | 
	
		
			
				|  |  | +                  <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.formula_type_id" disabled filterable placeholder="配方类型" class="filter-item" style="width:95%;padding:10px 0;" @change="changeFormulaType1">
 | 
	
		
			
				|  |  | +                  <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="90px" align="center" prop="data_source_name" />
 | 
	
		
			
				|  |  | +            <el-table-column label="备注" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <span v-if="scope.row.NoEdit">{{ scope.row.remarks }}</span>
 | 
	
		
			
				|  |  | +                <el-input v-if="scope.row.Edit" v-model="scope.row.remarks" 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="90px" align="center" prop="version" />
 | 
	
		
			
				|  |  | +            <el-table-column label="使用牧场" min-width="90px" align="center" prop="pasture_name"/>
 | 
	
		
			
				|  |  | +            <el-table-column label="是否启用" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <el-switch v-model="scope.row.is_show" :disabled="scope.row.NoEdit==true && !isEnable" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="2" @change="handleEnableChange1(scope.$index, scope.row,'show')" />
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +            <el-table-column label="是否可修改" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <el-switch v-model="scope.row.is_modify" :disabled="scope.row.NoEdit==true && !isModify1" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="2" @change="handleEnableChange1(scope.$index, scope.row,'modify')" />
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +            <el-table-column label="操作" align="center" width="150" class-name="small-padding fixed-width" fixed="right">
 | 
	
		
			
				|  |  | +              <template slot-scope="{row}">
 | 
	
		
			
				|  |  | +                <el-button v-if="row.NoEdit && isRoleEdit && ispastureuse==0" icon="el-icon-tickets" class="miniSuccess" @click="handleRowRecipeRecord(row)" />
 | 
	
		
			
				|  |  | +                <span v-if="row.NoEdit && isRoleEdit && ispastureuse ==0" icon="el-icon-data-line" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isCreate && isAdd1" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData1(row)" />
 | 
	
		
			
				|  |  | +                <span v-if="row.isCreate && isAdd1" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isCreate && isAdd1" class="minCancel" icon="el-icon-close" @click="createCancel1(row)" />
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isUpdate && isEdit1" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate1(row)" />
 | 
	
		
			
				|  |  | +                <span v-if="row.isUpdate && isEdit && isDelete1" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isUpdate && isDelete1" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete1(row)" />
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isUpdateSave && isEdit1" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData1(row)" />
 | 
	
		
			
				|  |  | +                <span v-if="row.isUpdateSave && isEdit1" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                <el-button v-if="row.isUpdateSave && isEdit1" class="minCancel" icon="el-icon-close" @click="updateCancel1(row)" />
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                <span v-if="row.NoEdit && isEdit1 && ispastureuse ==0" icon="el-icon-data-line" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                <el-button v-if="row.NoEdit && isRoleEdit && ispastureuse==0" icon="el-icon-data-line" class="miniSuccess" @click="handleFormulationEvaluation(row)" />
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +          </el-table>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +        <span v-if="table.listLoading == false" style="margin-right: 30px;margin-top: 10px;margin-bottom: 10px;font-size: 14px;">共{{ table.total }}条</span>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +      <!-- 配方详情表 -->
 | 
	
		
			
				|  |  | +      <div v-if="isDetail" ref="detail" class="detail">
 | 
	
		
			
				|  |  | +        <el-row :gutter="20">
 | 
	
		
			
				|  |  | +          <el-col :span="8">
 | 
	
		
			
				|  |  | +            <div class="search">
 | 
	
		
			
				|  |  | +              <el-select v-model="table3.parammaps.name" style="width:100px;" filterable placeholder="牧场" class="filter-item" clearable>
 | 
	
		
			
				|  |  | +                <el-option v-for="item in pastureList" :key="item.value" :label="item.label" :value="item.label" />
 | 
	
		
			
				|  |  | +              </el-select>
 | 
	
		
			
				|  |  | +              <el-date-picker v-model="table3.parammaps.inputDatetime" :clearable="false" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;" />
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="table">
 | 
	
		
			
				|  |  | +              <el-timeline>
 | 
	
		
			
				|  |  | +                <el-timeline-item v-for="(item, index) in table3.list" :key="index" :timestamp="item.timestamp">
 | 
	
		
			
				|  |  | +                  <span style="font-size:14px;">{{item.content}}</span><br/>
 | 
	
		
			
				|  |  | +                  <span style="font-size:12px;">{{item.content}}</span>
 | 
	
		
			
				|  |  | +                </el-timeline-item>
 | 
	
		
			
				|  |  | +              </el-timeline>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +          </el-col>
 | 
	
		
			
				|  |  | +          <el-col :span="16">
 | 
	
		
			
				|  |  | +          <div class="recipeTemplate">
 | 
	
		
			
				|  |  | +            <p>配方详情表</p>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <div class="operation" style="margin-bottom: 10px;">
 | 
	
		
			
				|  |  | +            <el-button v-if="isRoleEdit" style="float: left;" icon="el-icon-plus" class="success" @click="handleCreate2">新增</el-button>
 | 
	
		
			
				|  |  | +            <el-button v-if="isRoleEdit" style="float: left;" icon="el-icon-delete" class="danger" @click="form_delete2">删除</el-button>
 | 
	
		
			
				|  |  | +            <el-button v-if="isRoleEdit" style="float: left;" class="success" icon="el-icon-takeaway-box" @click="handleSyntheticPremix">合成预混料</el-button>
 | 
	
		
			
				|  |  | +            <el-button v-if="isOrder && isRoleEdit" icon="el-icon-sort" style="float: left;" class="success" @click="handleChangeOrder">更改顺序</el-button>
 | 
	
		
			
				|  |  | +            <div v-else style="float: left;margin-left: 10px;">
 | 
	
		
			
				|  |  | +              <el-button  icon="el-icon-folder-checked" class="success" @click="saveChangeOrder">保存</el-button>
 | 
	
		
			
				|  |  | +              <el-button  icon="el-icon-close" class="sortCancel" @click="cancelChangeOrder">取消</el-button>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <el-button class="hide" @click="handleCloseTable2">隐藏</el-button>
 | 
	
		
			
				|  |  | +            <el-button v-if="isEnlarge" class="hide2" @click="handleEnlarge">放大</el-button>
 | 
	
		
			
				|  |  | +            <el-button v-else class="hide2" @click="handleNarrow">缩小</el-button>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <div class="search">
 | 
	
		
			
				|  |  | +            <div ref="selectInput2" class="filter-item selectInput" style="margin: 0 10px;">
 | 
	
		
			
				|  |  | +              <el-input v-model="table2.getdataListParm.parammaps.all" 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">
 | 
	
		
			
				|  |  | +                <li>
 | 
	
		
			
				|  |  | +                  <a style="width: 130px;">饲料名称</a>
 | 
	
		
			
				|  |  | +                  <el-select v-model="table2.getdataListParm.parammaps.fname" filterable placeholder="" style="width:190px;">
 | 
	
		
			
				|  |  | +                    <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: 190px;" /></li>
 | 
	
		
			
				|  |  | +                <li><a style="width: 130px;">重量</a><el-input v-model="table2.getdataListParm.parammaps.fweight" style="width: 190px;" /></li>
 | 
	
		
			
				|  |  | +                <li>
 | 
	
		
			
				|  |  | +                  <a style="width: 130px;">搅拌延时</a>
 | 
	
		
			
				|  |  | +                  <el-select v-model="table2.getdataListParm.parammaps.autosecondname" filterable placeholder="" style="width:190px;" 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:190px;" 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: 190px;" /></li>
 | 
	
		
			
				|  |  | +                <li>
 | 
	
		
			
				|  |  | +                  <div style="float: right;">
 | 
	
		
			
				|  |  | +                    <el-button class="downminCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button>
 | 
	
		
			
				|  |  | +                    <el-button class="miniPrimary" @click="form_search2">搜索</el-button>
 | 
	
		
			
				|  |  | +                  </div>
 | 
	
		
			
				|  |  | +                </li>
 | 
	
		
			
				|  |  | +              </ul>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="form_search2">查询</el-button>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="handleRefresh2">重置</el-button>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <div v-if="isEnlarge" class="table2">
 | 
	
		
			
				|  |  | +            <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"
 | 
	
		
			
				|  |  | +              row-key="id"
 | 
	
		
			
				|  |  | +              show-summary
 | 
	
		
			
				|  |  | +              :max-height="220"
 | 
	
		
			
				|  |  | +              :summary-method="getSummaries"
 | 
	
		
			
				|  |  | +              @selection-change="handleSelectionChange2"
 | 
	
		
			
				|  |  | +              @cell-dblclick="celldblclick"
 | 
	
		
			
				|  |  | +            >
 | 
	
		
			
				|  |  | +              <el-table-column type="selection" width="50" />
 | 
	
		
			
				|  |  | +              <el-table-column label="序号" align="center" type="index" width="50px" />
 | 
	
		
			
				|  |  | +              <el-table-column label="饲料组" min-width="120px" 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="120px" 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" width="120px" 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.0001" type="number" style="width:95%;padding:10px 0;" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="搅拌延时(min)" min-width="80px" 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> -->
 | 
	
		
			
				|  |  | +                  <el-input v-if="scope.row.Edit" v-model="scope.row.autosecond" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="允许延时偏差(min)" min-width="80px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span v-if="scope.row.NoEdit">{{ scope.row.deviation }}</span>
 | 
	
		
			
				|  |  | +                  <el-input v-if="scope.row.Edit" v-model="scope.row.deviation" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column v-if="lockCount.isLockCount" label="是否锁定牛头数比例" min-width="80px" 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="70px" 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" step="0.01" type="number" style="width:95%;padding:10px 0;" min-number="0" @blur="blurSort(scope.row)" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="是否可修改" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <el-switch v-model="scope.row.is_modify" :disabled="scope.row.NoEdit==true && !isModify2" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="2" @change="handleEnableChange1(scope.$index, scope.row,'modify')" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="操作" align="center" width="120" class-name="small-padding fixed-width" fixed="right">
 | 
	
		
			
				|  |  | +                <template slot-scope="{row}">
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel2(row)" />
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete2(row)" />
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" icon="el-icon-connection" class="miniSuccess" @click="handleSplitPremix(row)" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +            </el-table>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <div v-else class="table2">
 | 
	
		
			
				|  |  | +            <el-table
 | 
	
		
			
				|  |  | +              id="table2"
 | 
	
		
			
				|  |  | +              ref="mytable2"
 | 
	
		
			
				|  |  | +              :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"
 | 
	
		
			
				|  |  | +              row-key="id"
 | 
	
		
			
				|  |  | +              show-summary
 | 
	
		
			
				|  |  | +              :max-height="enlargeHeight"
 | 
	
		
			
				|  |  | +              :summary-method="getSummaries"
 | 
	
		
			
				|  |  | +              @selection-change="handleSelectionChange2"
 | 
	
		
			
				|  |  | +              @cell-dblclick="celldblclick"
 | 
	
		
			
				|  |  | +            >
 | 
	
		
			
				|  |  | +              <el-table-column type="selection" width="50" />
 | 
	
		
			
				|  |  | +              <el-table-column label="序号" align="center" type="index" width="50px" />
 | 
	
		
			
				|  |  | +              <el-table-column label="饲料组" min-width="120px" 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="120px" 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" width="120px" 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.0001" type="number" style="width:95%;padding:10px 0;" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="搅拌延时(min)" min-width="80px" 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="80px" 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="70px" 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" step="0.01" 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="120" class-name="small-padding fixed-width" fixed="right">
 | 
	
		
			
				|  |  | +                <template slot-scope="{row}">
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel2(row)" />
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete2(row)" />
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel2(row)" />
 | 
	
		
			
				|  |  | +                  <span v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" class="centerSpan">|</span>
 | 
	
		
			
				|  |  | +                  <el-button v-if="parseInt(row.preftid)>0 && row.isUpdateSave==false && isRoleEdit" icon="el-icon-connection" class="miniSuccess" @click="handleSplitPremix(row)" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +            </el-table>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +        </el-col>
 | 
	
		
			
				|  |  | +      </el-row>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <!-- 配方模板表 -->
 | 
	
		
			
				|  |  | +    <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="template.dialogFormVisible" :close-on-click-modal="false" width="90%">
 | 
	
		
			
				|  |  | +      <template slot="title">
 | 
	
		
			
				|  |  | +        <div class="avue-crud__dialog__header">
 | 
	
		
			
				|  |  | +          <span class="el-dialog__title">
 | 
	
		
			
				|  |  | +            <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
 | 
	
		
			
				|  |  | +            {{ textMap[template.dialogStatus] }}
 | 
	
		
			
				|  |  | +          </span>
 | 
	
		
			
				|  |  | +          <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
 | 
	
		
			
				|  |  | +            <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
 | 
	
		
			
				|  |  | +            <svg-icon v-else icon-class="fullscreen" />
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +      </template>
 | 
	
		
			
				|  |  | +      <div class="dialogMinHeight" style="overflow-y: auto;margin-bottom: 0px;overflow-x: hidden;">
 | 
	
		
			
				|  |  | +        <div ref="templateDialog" class="templateDialog">
 | 
	
		
			
				|  |  | +          <div class="recipeTemplate">
 | 
	
		
			
				|  |  | +            <p>配方模板表</p>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <div class="operation1">
 | 
	
		
			
				|  |  | +            <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="margin-left:10px;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="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
 | 
	
		
			
				|  |  | +                    <el-button class="miniPrimary" @click="handleDialogSearch">搜索</el-button>
 | 
	
		
			
				|  |  | +                  </div>
 | 
	
		
			
				|  |  | +                </li>
 | 
	
		
			
				|  |  | +              </ul>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="handleDialogSearch" style="margin-left:10px;">查询</el-button>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="handleDialogRefresh" style="margin-left:10px;">重置</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"
 | 
	
		
			
				|  |  | +              :height="myheight2"
 | 
	
		
			
				|  |  | +              :cell-style="cellStyle"
 | 
	
		
			
				|  |  | +              class="elTable table-fixed"
 | 
	
		
			
				|  |  | +              @row-click="tableRowClickDialog"
 | 
	
		
			
				|  |  | +            >
 | 
	
		
			
				|  |  | +              <el-table-column v-if="template.dialogStatus == 'RecipeRecord'" label="序号" align="center" type="index" width="50px" />
 | 
	
		
			
				|  |  | +              <el-table-column v-else 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="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.tcode }}</span>
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="配方颜色" min-width="110px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <el-color-picker v-model="scope.row.tcolor" size="mini" :predefine="predefineColors" style="vertical-align: middle;" />
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="牲畜类别" min-width="110px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.ccname }}</span>
 | 
	
		
			
				|  |  | +                </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="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.source }}</span>
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="备注" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.remark }}</span>
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="版本号" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.version }}</span>
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="版本时间" min-width="90px" align="center">
 | 
	
		
			
				|  |  | +                <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                  <span>{{ scope.row.versiontime }}</span>
 | 
	
		
			
				|  |  | +                </template>
 | 
	
		
			
				|  |  | +              </el-table-column>
 | 
	
		
			
				|  |  | +              <el-table-column label="是否启用" min-width="90px" 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" id="detailDialog2" ref="detailDialog2" class="detailDialog" style="margin-top: 30px;height: 200px;overflow-y: auto;overflow-x: hidden;">
 | 
	
		
			
				|  |  | +          <div class="recipeTemplate">
 | 
	
		
			
				|  |  | +            <p>配方详情表</p>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +          <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">
 | 
	
		
			
				|  |  | +                <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="downminCancel" @click="arrowUp2=false;arrowDown2=true;">取消</el-button>
 | 
	
		
			
				|  |  | +                    <el-button class="miniPrimary" @click="handleDialogSearch2">搜索</el-button>
 | 
	
		
			
				|  |  | +                  </div>
 | 
	
		
			
				|  |  | +                </li>
 | 
	
		
			
				|  |  | +              </ul>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="handleDialogSearch2">查询</el-button>
 | 
	
		
			
				|  |  | +            <el-button class="successBorder" @click="handleDialogRefresh2">重置</el-button>
 | 
	
		
			
				|  |  | +            <el-button class="hide" @click="handleDialogCloseTable2">隐藏</el-button>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +          <div class="table2">
 | 
	
		
			
				|  |  | +            <el-table
 | 
	
		
			
				|  |  | +              id="templateTable2"
 | 
	
		
			
				|  |  | +              :key="template.table2.tableKey"
 | 
	
		
			
				|  |  | +              v-loading="template.table2.listLoading"
 | 
	
		
			
				|  |  | +              element-loading-text="给我一点时间"
 | 
	
		
			
				|  |  | +              :data="template.table2.list"
 | 
	
		
			
				|  |  | +              border
 | 
	
		
			
				|  |  | +              fit
 | 
	
		
			
				|  |  | +              highlight-current-row
 | 
	
		
			
				|  |  | +              style="width: 98%;"
 | 
	
		
			
				|  |  | +              :summary-method="getTemplateTable2Summaries"
 | 
	
		
			
				|  |  | +              show-summary
 | 
	
		
			
				|  |  | +              :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)" prop="fweight" min-width="200px" 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>
 | 
	
		
			
				|  |  | +      <div slot="footer" class="dialog-footer">
 | 
	
		
			
				|  |  | +        <el-button class="cancelClose cancelClose1" @click="template.dialogFormVisible = false; ">关闭</el-button>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </el-dialog>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 合成预混料 -->
 | 
	
		
			
				|  |  | +    <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="detail.dialogFormVisible" :close-on-click-modal="false" width="90%">
 | 
	
		
			
				|  |  | +      <template slot="title">
 | 
	
		
			
				|  |  | +        <div class="avue-crud__dialog__header">
 | 
	
		
			
				|  |  | +          <span class="el-dialog__title">
 | 
	
		
			
				|  |  | +            <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
 | 
	
		
			
				|  |  | +            {{ textMap[detail.dialogStatus] }}
 | 
	
		
			
				|  |  | +          </span>
 | 
	
		
			
				|  |  | +          <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
 | 
	
		
			
				|  |  | +            <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
 | 
	
		
			
				|  |  | +            <svg-icon v-else icon-class="fullscreen" />
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +      </template>
 | 
	
		
			
				|  |  | +      <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" 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 v-if="lockCount.isLockCount" 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" :predefine="predefineColors" style="vertical-align: middle;" :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">
 | 
	
		
			
				|  |  | +          <el-button class="cancelClose" @click="detail.dialogFormVisible = false; ">关闭</el-button>
 | 
	
		
			
				|  |  | +          <el-button class="save" :disabled="isokDisable" @click="syntheticPremixData()">确认</el-button>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </el-dialog>
 | 
	
		
			
				|  |  | +    <!-- 历史记录 -->
 | 
	
		
			
				|  |  | +    <el-dialog :title="textMap[historyRecord.dialogStatus]" :destroy-on-close="true" :visible.sync="historyRecord.dialogFormVisible" :close-on-click-modal="false" width="90%">
 | 
	
		
			
				|  |  | +      <div class="historyRecord">
 | 
	
		
			
				|  |  | +        <keep-alive>
 | 
	
		
			
				|  |  | +          <component :is="historyRecord.myComponent" ref="historyRecord" />
 | 
	
		
			
				|  |  | +        </keep-alive>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +      <div slot="footer" class="dialog-footer" style="bottom: 10px;">
 | 
	
		
			
				|  |  | +        <el-button class="cancelClose1" @click="historyRecord.dialogFormVisible = false; ">关闭</el-button>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </el-dialog>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 行内配方记录 -->
 | 
	
		
			
				|  |  | +    <el-dialog :title="textMap[rowRecipeRecord.dialogStatus]" :destroy-on-close="true" :visible.sync="rowRecipeRecord.dialogFormVisible" :close-on-click-modal="false" width="90%">
 | 
	
		
			
				|  |  | +      <div class="rowRecipeRecord">
 | 
	
		
			
				|  |  | +        <div class="search">
 | 
	
		
			
				|  |  | +          <el-date-picker ref="inputDatetime" v-model="rowRecipeRecord.getdataListParm.parammaps.inputDatetime" class="filter-item inputDatetime" type="daterange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" />
 | 
	
		
			
				|  |  | +          <el-button class="successBorder" @click="handleRowRecipeRecordSearch">查询</el-button>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +        <div class="table">
 | 
	
		
			
				|  |  | +          <el-table
 | 
	
		
			
				|  |  | +            :key="rowRecipeRecord.tableKey"
 | 
	
		
			
				|  |  | +            v-loading="rowRecipeRecord.listLoading"
 | 
	
		
			
				|  |  | +            element-loading-text="给我一点时间"
 | 
	
		
			
				|  |  | +            :data="rowRecipeRecord.list"
 | 
	
		
			
				|  |  | +            border
 | 
	
		
			
				|  |  | +            highlight-current-row
 | 
	
		
			
				|  |  | +            style="width: 100%;"
 | 
	
		
			
				|  |  | +            :row-style="rowStyle"
 | 
	
		
			
				|  |  | +            :cell-style="cellStyle"
 | 
	
		
			
				|  |  | +            class="elTable table-fixed"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-table-column label="序号" align="center" type="index" width="50px">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <span>{{ scope.$index + (rowRecipeRecord.pageNum-1) * rowRecipeRecord.pageSize + 1 }}</span>
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +            <!-- <el-table-column label="序号" width="60px" align="center" prop="sort" /> -->
 | 
	
		
			
				|  |  | +            <el-table-column label="修改时间" width="100px" align="center" prop="datetime1" />
 | 
	
		
			
				|  |  | +            <el-table-column label="饲料名称(单位:kg)" min-width="800px" align="center">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                <div v-for="element in scope.row.arrList" :key="element.name" class="list-group-item2 item" style="width:150px;float: left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin: 5px 5px;padding: 0;height: 30px;">
 | 
	
		
			
				|  |  | +                  <el-tooltip v-if="element.change== 'red'" placement="top" :open-delay="1000">
 | 
	
		
			
				|  |  | +                    <div slot="content">{{ element.name }}( {{ element.weight }} / {{ element.Eweight }} )</div>
 | 
	
		
			
				|  |  | +                    <span :style="{'color':element.change}" style="display: block;height:30px;line-height: 30px;">
 | 
	
		
			
				|  |  | +                      {{ element.name }}( {{ element.weight }} / {{ element.Eweight }} )
 | 
	
		
			
				|  |  | +                    </span>
 | 
	
		
			
				|  |  | +                  </el-tooltip>
 | 
	
		
			
				|  |  | +                  <el-tooltip v-else placement="top" :open-delay="1000">
 | 
	
		
			
				|  |  | +                    <div slot="content">{{ element.name }}( {{ element.weight }})</div>
 | 
	
		
			
				|  |  | +                    <span :style="{'color':element.change}" style="display: block;height:30px;line-height: 30px;">
 | 
	
		
			
				|  |  | +                      {{ element.name }}( {{ element.weight }})
 | 
	
		
			
				|  |  | +                    </span>
 | 
	
		
			
				|  |  | +                  </el-tooltip>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +          </el-table>
 | 
	
		
			
				|  |  | +          <pagination v-show="rowRecipeRecord.total>=0" :total="rowRecipeRecord.total" :page.sync="rowRecipeRecord.getdataListParm.offset" :limit.sync="rowRecipeRecord.getdataListParm.pagecount" @pagination="getRowRecipeRecordList()" />
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +      <div slot="footer" class="dialog-footer" style="bottom: 10px;">
 | 
	
		
			
				|  |  | +        <el-button class="cancelClose1" @click="rowRecipeRecord.dialogFormVisible = false; ">关闭</el-button>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </el-dialog>
 | 
	
		
			
				|  |  | +  </div>
 | 
	
		
			
				|  |  | +</template>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +<script>
 | 
	
		
			
				|  |  | +import { postJson,getJson,delJson,exportFile,GetDataByName, GetDataByNames, PostDataByName, failproccess, checkButtons, ExecDataByConfig, formatNum } from '@/api/common'
 | 
	
		
			
				|  |  | +import Sortable from 'sortablejs'
 | 
	
		
			
				|  |  | +import { MessageBox } from 'element-ui'
 | 
	
		
			
				|  |  | +import Cookies from 'js-cookie'
 | 
	
		
			
				|  |  | +import { json2excel } from '@/utils/index.js'
 | 
	
		
			
				|  |  | +import axios from 'axios'
 | 
	
		
			
				|  |  | +import { getToken } from '@/utils/auth'
 | 
	
		
			
				|  |  | +import { parseTime } from '@/utils/index.js'
 | 
	
		
			
				|  |  | +import Pagination from '@/components/Pagination'
 | 
	
		
			
				|  |  | +import localDownloadUtil from "@/utils/localDownloadUtil.js";
 | 
	
		
			
				|  |  | +export default {
 | 
	
		
			
				|  |  | +  name: 'RecipeTemplate',
 | 
	
		
			
				|  |  | +  components: { Pagination },
 | 
	
		
			
				|  |  | +  data() {
 | 
	
		
			
				|  |  | +    return {
 | 
	
		
			
				|  |  | +      isAdd1:'',isEdit1:'',isImport1:'',isExport1:'',isDelete1:'',isModify1:'',isEnable1:'',isModify2:'',
 | 
	
		
			
				|  |  | +      predefineColors: [
 | 
	
		
			
				|  |  | +        '#E57373', '#F06292', '#BA68C8', '#9575CD', '#7986CB', '#64B5F6', '#4FC3F7', '#4DD0E1', '#4DB6AC', '#81C784', '#AED581', '#DCE775', '#FFF176', '#FFD54F', '#FFB74D', '#FF8A65', '#A1887F', '#E0E0E0', '#90A4AE'
 | 
	
		
			
				|  |  | +      ],
 | 
	
		
			
				|  |  | +      livestockTypeList:JSON.parse(sessionStorage.downlist).cattle_parent_category, // 牲畜类别
 | 
	
		
			
				|  |  | +      formulaTypeList: JSON.parse(sessionStorage.downlist).formula_type,  // 配方类型
 | 
	
		
			
				|  |  | +      enableList: JSON.parse(sessionStorage.downlist).is_show, // 是否启用
 | 
	
		
			
				|  |  | +      sourceList: JSON.parse(sessionStorage.downlist).forage_source,   //来源
 | 
	
		
			
				|  |  | +      pastureList:[], //牧场
 | 
	
		
			
				|  |  | +      table: {
 | 
	
		
			
				|  |  | +        page: 1,
 | 
	
		
			
				|  |  | +        page_size: parseInt(Cookies.get('pageCount')),
 | 
	
		
			
				|  |  | +        tableKey: 0,
 | 
	
		
			
				|  |  | +        list: [],
 | 
	
		
			
				|  |  | +        total: 0,
 | 
	
		
			
				|  |  | +        listLoading: true,
 | 
	
		
			
				|  |  | +        parammaps: {
 | 
	
		
			
				|  |  | +          cattle_category_id: '',formula_type_id:'',data_source_id:'',is_show:'',name:'',remarks:''
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        temp: {}
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      isokDisable: false,
 | 
	
		
			
				|  |  | +      dataForm:{
 | 
	
		
			
				|  |  | +        name: "",
 | 
	
		
			
				|  |  | +        file: null,
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      table3: {
 | 
	
		
			
				|  |  | +        page: 1,
 | 
	
		
			
				|  |  | +        page_size: parseInt(Cookies.get('pageCount')),
 | 
	
		
			
				|  |  | +        tableKey: 0,
 | 
	
		
			
				|  |  | +        list: [],
 | 
	
		
			
				|  |  | +        total: 0,
 | 
	
		
			
				|  |  | +        listLoading: true,
 | 
	
		
			
				|  |  | +        parammaps: {
 | 
	
		
			
				|  |  | +          name:'',inputDatetime:[],end_time:'',start_time:''
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        temp: {}
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
 | 
	
		
			
				|  |  | +      cellStyle: { padding: 0 + 'px' },
 | 
	
		
			
				|  |  | +      myheight1: document.documentElement.clientHeight - 265,
 | 
	
		
			
				|  |  | +      // ==============================
 | 
	
		
			
				|  |  | +      dialogFull: false,
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      isRoleEdit: [],
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      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') }}
 | 
	
		
			
				|  |  | +      ],
 | 
	
		
			
				|  |  | +      lockBullsList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 是否锁定牛头数比例
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      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' }], // 请选择历史记录时间
 | 
	
		
			
				|  |  | +      arrowDown: true,
 | 
	
		
			
				|  |  | +      arrowUp: false,
 | 
	
		
			
				|  |  | +      ispastureuse: Cookies.get('ispastureuse'),
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      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: {
 | 
	
		
			
				|  |  | +        getDryweightParm: {
 | 
	
		
			
				|  |  | +          name: 'getFTdryweight',
 | 
	
		
			
				|  |  | +          page: 1,
 | 
	
		
			
				|  |  | +          offset: 1,
 | 
	
		
			
				|  |  | +          pagecount: 10,
 | 
	
		
			
				|  |  | +          returntype: 'Map',
 | 
	
		
			
				|  |  | +          parammaps: {
 | 
	
		
			
				|  |  | +            pastureid: '',
 | 
	
		
			
				|  |  | +            ftid: ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        dryweight: '',
 | 
	
		
			
				|  |  | +        getdataListParm: {
 | 
	
		
			
				|  |  | +          name: 'getFTdetailList',
 | 
	
		
			
				|  |  | +          page: 1,
 | 
	
		
			
				|  |  | +          offset: 1,
 | 
	
		
			
				|  |  | +          pagecount: '',
 | 
	
		
			
				|  |  | +          returntype: 'Map',
 | 
	
		
			
				|  |  | +          parammaps: {
 | 
	
		
			
				|  |  | +            pastureid: Cookies.get('pastureid'),
 | 
	
		
			
				|  |  | +            fname: '',
 | 
	
		
			
				|  |  | +            feedgroup: '',
 | 
	
		
			
				|  |  | +            fweight: '',
 | 
	
		
			
				|  |  | +            autosecondname: '',
 | 
	
		
			
				|  |  | +            islockcount: '',
 | 
	
		
			
				|  |  | +            sort: ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        tableKey: 0,
 | 
	
		
			
				|  |  | +        list: [],
 | 
	
		
			
				|  |  | +        total: 0,
 | 
	
		
			
				|  |  | +        listLoading: false,
 | 
	
		
			
				|  |  | +        temp: {},
 | 
	
		
			
				|  |  | +        updateList: {}
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      isDetailDialog: false,
 | 
	
		
			
				|  |  | +      template: {
 | 
	
		
			
				|  |  | +        dialogFormVisible: false,
 | 
	
		
			
				|  |  | +        dialogStatus: '',
 | 
	
		
			
				|  |  | +        table: {
 | 
	
		
			
				|  |  | +          getdataListParm: {
 | 
	
		
			
				|  |  | +            name: 'getFTListDate',
 | 
	
		
			
				|  |  | +            page: 1,
 | 
	
		
			
				|  |  | +            offset: 1,
 | 
	
		
			
				|  |  | +            pagecount: '',
 | 
	
		
			
				|  |  | +            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')
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      isOrder: true,
 | 
	
		
			
				|  |  | +      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: '合成预混料',
 | 
	
		
			
				|  |  | +        historyRecord: '历史记录',
 | 
	
		
			
				|  |  | +        detail: '饲料详情',
 | 
	
		
			
				|  |  | +        rowRecipeRecordTxt: '配方修改记录'
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      requestParam: {},
 | 
	
		
			
				|  |  | +      requestParam2: {},
 | 
	
		
			
				|  |  | +      requestParam3:{},
 | 
	
		
			
				|  |  | +      download: {
 | 
	
		
			
				|  |  | +        getdataListParm: {
 | 
	
		
			
				|  |  | +          name: 'getFTList',
 | 
	
		
			
				|  |  | +          page: 1,
 | 
	
		
			
				|  |  | +          offset: 1,
 | 
	
		
			
				|  |  | +          pagecount: 0,
 | 
	
		
			
				|  |  | +          returntype: 'Map',
 | 
	
		
			
				|  |  | +          parammaps: {
 | 
	
		
			
				|  |  | +            pastureid: Cookies.get('pastureid'),
 | 
	
		
			
				|  |  | +            tname: '',
 | 
	
		
			
				|  |  | +            ccid: '',
 | 
	
		
			
				|  |  | +            ccname: '',
 | 
	
		
			
				|  |  | +            fttypeid: '',
 | 
	
		
			
				|  |  | +            fttype: '',
 | 
	
		
			
				|  |  | +            remark: '',
 | 
	
		
			
				|  |  | +            enable: ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        list: []
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      historyRecord: {
 | 
	
		
			
				|  |  | +        dialogStatus: '',
 | 
	
		
			
				|  |  | +        dialogFormVisible: false
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      dropState: false,
 | 
	
		
			
				|  |  | +      myheight2: 0,
 | 
	
		
			
				|  |  | +      height: 0,
 | 
	
		
			
				|  |  | +      rowRecipeRecord: {
 | 
	
		
			
				|  |  | +        dialogStatus: '',
 | 
	
		
			
				|  |  | +        dialogFormVisible: false,
 | 
	
		
			
				|  |  | +        getdataListParm: {
 | 
	
		
			
				|  |  | +          name: 'getFitHistory1', 'name1': 'getFitHistory2', page: 1, offset: 1, pagecount: 10, returntype: 'Map',
 | 
	
		
			
				|  |  | +          parammaps: { inputDatetime: '', pastureid: '', fitid: '' }
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        tableKey: 0, total: 0, listLoading: true, list: []
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      isEnlarge: true,
 | 
	
		
			
				|  |  | +      // enlargeHeight: document.documentElement.clientHeight - 85 - 165 + 50,
 | 
	
		
			
				|  |  | +      enlargeHeight: document.documentElement.clientHeight - 85 - 165 + 50,
 | 
	
		
			
				|  |  | +      getTcodeParm: {
 | 
	
		
			
				|  |  | +        name: 'getTcode', page: 1, offset: 1, pagecount: 10, returntype: 'Map',
 | 
	
		
			
				|  |  | +        parammaps: { pastureid: '', fttypeid: '' }
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  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.getButton()
 | 
	
		
			
				|  |  | +    // this.getDownList()
 | 
	
		
			
				|  |  | +    // this.getIsLockCount()
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  methods: {
 | 
	
		
			
				|  |  | +    getButton(){
 | 
	
		
			
				|  |  | +      const add = 'recipe:recipeList:add'
 | 
	
		
			
				|  |  | +      this.isAdd = checkButtons(add)
 | 
	
		
			
				|  |  | +      const edit = 'recipe:recipeList:edit'
 | 
	
		
			
				|  |  | +      this.isEdit = checkButtons(edit)
 | 
	
		
			
				|  |  | +      const _import = 'recipe:recipeList:import'
 | 
	
		
			
				|  |  | +      this.isImport = checkButtons(_import)
 | 
	
		
			
				|  |  | +      const _export = 'recipe:recipeList:export'
 | 
	
		
			
				|  |  | +      this.isExport = checkButtons(_export)
 | 
	
		
			
				|  |  | +      const del = 'recipe:recipeList:delete'
 | 
	
		
			
				|  |  | +      this.isDelete = checkButtons(del)
 | 
	
		
			
				|  |  | +      const enable = 'recipe:recipeList:enable'
 | 
	
		
			
				|  |  | +      this.isEnable = checkButtons(enable)
 | 
	
		
			
				|  |  | +      const modify1 = 'recipe:recipeList:modify'
 | 
	
		
			
				|  |  | +      this.isModify1 = checkButtons(modify1)
 | 
	
		
			
				|  |  | +      const modify2 = 'recipe:recipeList:modify2'
 | 
	
		
			
				|  |  | +      this.isModify2 = checkButtons(modify2)
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // -------------------模板-----------------------------
 | 
	
		
			
				|  |  | +    getList() {
 | 
	
		
			
				|  |  | +      this.table.listLoading = true
 | 
	
		
			
				|  |  | +      let page = this.table.page
 | 
	
		
			
				|  |  | +      let page_size = this.table.page_size
 | 
	
		
			
				|  |  | +      let url = '/api/v1/ops/feed_formula/list' + '?page=' + page + '&page_size=' + page_size
 | 
	
		
			
				|  |  | +      let data = {
 | 
	
		
			
				|  |  | +        "name":this.table.parammaps.name,
 | 
	
		
			
				|  |  | +        "remarks":this.table.parammaps.remarks
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.parammaps.cattle_category_id !== ''){
 | 
	
		
			
				|  |  | +        data.cattle_category_id = this.table.parammaps.cattle_category_id
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.parammaps.formula_type_id !== ''){
 | 
	
		
			
				|  |  | +        data.formula_type_id = this.table.parammaps.formula_type_id
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.parammaps.data_source_id !== ''){
 | 
	
		
			
				|  |  | +        data.data_source_id = this.table.parammaps.data_source_id
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.parammaps.is_show !== ''){
 | 
	
		
			
				|  |  | +        data.is_show = this.table.parammaps.is_show
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if (response.code == 200) {
 | 
	
		
			
				|  |  | +          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.total = response.data.total
 | 
	
		
			
				|  |  | +          this.table.pageNum = response.data.page
 | 
	
		
			
				|  |  | +          this.table.pageSize = response.data.page_size
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.table.list = []
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        setTimeout(() => {
 | 
	
		
			
				|  |  | +          this.table.listLoading = false
 | 
	
		
			
				|  |  | +        }, 1000)
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleSearch1() {
 | 
	
		
			
				|  |  | +      console.log('点击了查询')
 | 
	
		
			
				|  |  | +       this.table.page = 1
 | 
	
		
			
				|  |  | +      this.getList()
 | 
	
		
			
				|  |  | +      this.arrowDown = true
 | 
	
		
			
				|  |  | +      this.arrowUp = false
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleRefresh1() {
 | 
	
		
			
				|  |  | +      console.log('点击了重置')
 | 
	
		
			
				|  |  | +      this.table.page = 1
 | 
	
		
			
				|  |  | +      this.table.parammaps.cattle_category_id = ''
 | 
	
		
			
				|  |  | +      this.table.parammaps.formula_type_id = ''
 | 
	
		
			
				|  |  | +      this.table.parammaps.data_source_id = ''
 | 
	
		
			
				|  |  | +      this.table.parammaps.is_show = ''
 | 
	
		
			
				|  |  | +      this.table.parammaps.name = ''
 | 
	
		
			
				|  |  | +      this.table.parammaps.remarks = ''
 | 
	
		
			
				|  |  | +      this.getList()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 模板新增
 | 
	
		
			
				|  |  | +    handleCreate1() {
 | 
	
		
			
				|  |  | +      // 编辑true/不可编辑false
 | 
	
		
			
				|  |  | +      // 新增操true,编辑false,编辑保存false
 | 
	
		
			
				|  |  | +      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
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.table.list.unshift({
 | 
	
		
			
				|  |  | +        'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false,
 | 
	
		
			
				|  |  | +        'name': '', 'encode_number': '', 'colour': '#ccc',
 | 
	
		
			
				|  |  | +        'cattle_category_id': '', 'cattle_category_name': '',
 | 
	
		
			
				|  |  | +        'formula_type_id': '', 'formula_type_name': '',
 | 
	
		
			
				|  |  | +        'data_source_id':2,'data_source_name': '用户自定义',
 | 
	
		
			
				|  |  | +        'remarks': '','is_show': 1 ,'is_modify':1
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +      this.table.temp = this.table.list[0]
 | 
	
		
			
				|  |  | +      this.get_encodenumber()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    get_encodenumber(){
 | 
	
		
			
				|  |  | +      let url = 'api/v1/ops/feed_formula/encode_number'
 | 
	
		
			
				|  |  | +      let data = ''
 | 
	
		
			
				|  |  | +      getJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        this.table.temp.encode_number = response.data.encode_number
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 牲畜类别
 | 
	
		
			
				|  |  | +    changeLivestockType1(item) {
 | 
	
		
			
				|  |  | +      this.table.temp.cattle_category_name = this.livestockTypeList.find(obj => obj.value == item).label
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 配方类型
 | 
	
		
			
				|  |  | +    changeFormulaType1(item) {
 | 
	
		
			
				|  |  | +      this.table.temp.formula_type_name = this.formulaTypeList.find(obj => obj.value == item).label
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleEnableChange1(index,row,type){
 | 
	
		
			
				|  |  | +      let edit_type = ''
 | 
	
		
			
				|  |  | +      let is_show = ''
 | 
	
		
			
				|  |  | +      if(type == 'show'){
 | 
	
		
			
				|  |  | +        edit_type = 1
 | 
	
		
			
				|  |  | +        is_show = row.is_show
 | 
	
		
			
				|  |  | +      }else{
 | 
	
		
			
				|  |  | +        edit_type = 2
 | 
	
		
			
				|  |  | +        is_show = row.is_modify
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      let url = '/api/v1/ops/feed_formula/is_modify_show'
 | 
	
		
			
				|  |  | +      let data = {
 | 
	
		
			
				|  |  | +        "feed_formula_id":row.id,
 | 
	
		
			
				|  |  | +        "is_show":is_show,
 | 
	
		
			
				|  |  | +        'edit_type':edit_type
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      postJson(url,data).then(response => {
 | 
	
		
			
				|  |  | +        if(response.code == 200){
 | 
	
		
			
				|  |  | +          this.$notify({ title: '成功', message: '成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +          this.getList()
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    createData1(row) {
 | 
	
		
			
				|  |  | +      this.table.temp.name = row.name
 | 
	
		
			
				|  |  | +      this.table.temp.encode_number = row.encode_number
 | 
	
		
			
				|  |  | +      this.table.temp.colour = row.colour
 | 
	
		
			
				|  |  | +      this.table.temp.cattle_category_id = row.cattle_category_id
 | 
	
		
			
				|  |  | +      this.table.temp.cattle_category_name = row.cattle_category_name
 | 
	
		
			
				|  |  | +      this.table.temp.formula_type_id = row.formula_type_id
 | 
	
		
			
				|  |  | +      this.table.temp.formula_type_name = row.formula_type_name
 | 
	
		
			
				|  |  | +      this.table.temp.is_show = row.is_show
 | 
	
		
			
				|  |  | +      this.table.temp.is_modify = row.is_modify
 | 
	
		
			
				|  |  | +      this.table.temp.data_source_id = row.data_source_id
 | 
	
		
			
				|  |  | +      this.table.temp.data_source_name = row.data_source_name
 | 
	
		
			
				|  |  | +      this.table.temp.remarks = row.remarks
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      if (this.table.temp.name == '' && this.table.temp.cattle_category_id == '' && this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.cattle_category_id == '' && this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.name == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.cattle_category_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
 | 
	
		
			
				|  |  | +      if (pattern.test(this.table.temp.encode_number)) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      console.log(this.table.temp)
 | 
	
		
			
				|  |  | +      this.isokDisable = true
 | 
	
		
			
				|  |  | +      setTimeout(() => {
 | 
	
		
			
				|  |  | +        this.isokDisable = false
 | 
	
		
			
				|  |  | +      }, 1000)
 | 
	
		
			
				|  |  | +      let url = '/api/v1/ops/feed_formula/add'
 | 
	
		
			
				|  |  | +      let data = {
 | 
	
		
			
				|  |  | +        "name": this.table.temp.name,
 | 
	
		
			
				|  |  | +        "encode_number": this.table.temp.encode_number,
 | 
	
		
			
				|  |  | +        "colour": this.table.temp.colour,
 | 
	
		
			
				|  |  | +        "cattle_category_id": this.table.temp.cattle_category_id,
 | 
	
		
			
				|  |  | +        "cattle_category_name": this.table.temp.cattle_category_name,
 | 
	
		
			
				|  |  | +        "formula_type_id": this.table.temp.formula_type_id,
 | 
	
		
			
				|  |  | +        "formula_type_name": this.table.temp.formula_type_name,
 | 
	
		
			
				|  |  | +        "data_source_id": this.table.temp.data_source_id,
 | 
	
		
			
				|  |  | +        "data_source_name": this.table.temp.data_source_name,
 | 
	
		
			
				|  |  | +        "remarks": this.table.temp.remarks,
 | 
	
		
			
				|  |  | +        "is_show": this.table.temp.is_show,
 | 
	
		
			
				|  |  | +        "is_modify": this.table.temp.is_modify,
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.temp.remarks !== ''){
 | 
	
		
			
				|  |  | +        data.remarks = this.table.temp.remarks
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if(response.code == 200){
 | 
	
		
			
				|  |  | +          this.$notify({ title: '成功', message: '成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +          this.getList()
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    createCancel1(row) {
 | 
	
		
			
				|  |  | +      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
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 模板编辑
 | 
	
		
			
				|  |  | +    handleUpdate1(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
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.table.temp = Object.assign({}, row)
 | 
	
		
			
				|  |  | +      // 编辑true,不可编辑false
 | 
	
		
			
				|  |  | +      row.Edit = true
 | 
	
		
			
				|  |  | +      row.NoEdit = false
 | 
	
		
			
				|  |  | +      // 新增false,编辑false,编辑保存true
 | 
	
		
			
				|  |  | +      row.isCreate = false
 | 
	
		
			
				|  |  | +      row.isUpdate = false
 | 
	
		
			
				|  |  | +      row.isUpdateSave = true
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    updateData1(row) {
 | 
	
		
			
				|  |  | +      this.table.temp.name = row.name
 | 
	
		
			
				|  |  | +      this.table.temp.encode_number = row.encode_number
 | 
	
		
			
				|  |  | +      this.table.temp.colour = row.colour
 | 
	
		
			
				|  |  | +      this.table.temp.cattle_category_id = row.cattle_category_id
 | 
	
		
			
				|  |  | +      this.table.temp.cattle_category_name = row.cattle_category_name
 | 
	
		
			
				|  |  | +      this.table.temp.formula_type_id = row.formula_type_id
 | 
	
		
			
				|  |  | +      this.table.temp.formula_type_name = row.formula_type_name
 | 
	
		
			
				|  |  | +      this.table.temp.is_show = row.is_show
 | 
	
		
			
				|  |  | +      this.table.temp.is_modify = row.is_modify
 | 
	
		
			
				|  |  | +      this.table.temp.data_source_id = row.data_source_id
 | 
	
		
			
				|  |  | +      this.table.temp.data_source_name = row.data_source_name
 | 
	
		
			
				|  |  | +      this.table.temp.remarks = row.remarks
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      if (this.table.temp.name == '' && this.table.temp.cattle_category_id == '' && this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方名称/牲畜类别/配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.cattle_category_id == '' && this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '牲畜类别/配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.name == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方名称不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.cattle_category_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '牲畜类别不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table.temp.formula_type_id == '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方类型不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
 | 
	
		
			
				|  |  | +      if (pattern.test(this.table.temp.encode_number)) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '配方编码不可输入特殊字符', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.isokDisable = true
 | 
	
		
			
				|  |  | +      setTimeout(() => {
 | 
	
		
			
				|  |  | +        this.isokDisable = false
 | 
	
		
			
				|  |  | +      }, 1000)
 | 
	
		
			
				|  |  | +      let url = '/api/v1/ops/feed_formula/edit'
 | 
	
		
			
				|  |  | +      let data = {
 | 
	
		
			
				|  |  | +        "name": this.table.temp.name,
 | 
	
		
			
				|  |  | +        "encode_number": this.table.temp.encode_number,
 | 
	
		
			
				|  |  | +        "colour": this.table.temp.colour,
 | 
	
		
			
				|  |  | +        "cattle_category_id": this.table.temp.cattle_category_id,
 | 
	
		
			
				|  |  | +        "cattle_category_name": this.table.temp.cattle_category_name,
 | 
	
		
			
				|  |  | +        "formula_type_id": this.table.temp.formula_type_id,
 | 
	
		
			
				|  |  | +        "formula_type_name": this.table.temp.formula_type_name,
 | 
	
		
			
				|  |  | +        "data_source_id": this.table.temp.data_source_id,
 | 
	
		
			
				|  |  | +        "data_source_name": this.table.temp.data_source_name,
 | 
	
		
			
				|  |  | +        "remarks": this.table.temp.remarks,
 | 
	
		
			
				|  |  | +        "is_show": this.table.temp.is_show,
 | 
	
		
			
				|  |  | +        "is_modify": this.table.temp.is_modify,
 | 
	
		
			
				|  |  | +        'id':this.table.temp.id
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table.temp.remarks !== ''){
 | 
	
		
			
				|  |  | +        data.remarks = this.table.temp.remarks
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if(response.code == 200){
 | 
	
		
			
				|  |  | +          this.$notify({ title: '成功', message: '成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +          this.getList()
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    updateCancel1(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()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleRowDelete1(row){
 | 
	
		
			
				|  |  | +      MessageBox.confirm('确定删除吗?', {
 | 
	
		
			
				|  |  | +        confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
 | 
	
		
			
				|  |  | +      }).then(() => {
 | 
	
		
			
				|  |  | +        let url = 'api/v1/ops/feed_formula/delete/'
 | 
	
		
			
				|  |  | +        let data = row.id
 | 
	
		
			
				|  |  | +        delJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +          if (response.code == 200) {
 | 
	
		
			
				|  |  | +            this.$notify({
 | 
	
		
			
				|  |  | +              title: '',
 | 
	
		
			
				|  |  | +              message: '成功',
 | 
	
		
			
				|  |  | +              type: 'success',
 | 
	
		
			
				|  |  | +              duration: 2000
 | 
	
		
			
				|  |  | +            })
 | 
	
		
			
				|  |  | +            this.getList()
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleExport(item) {
 | 
	
		
			
				|  |  | +      if (item == 1) {
 | 
	
		
			
				|  |  | +        console.log('导出模板')
 | 
	
		
			
				|  |  | +        let url = 'api/v1/ops/feed_formula/excel_template'
 | 
	
		
			
				|  |  | +        let data = {name:''}
 | 
	
		
			
				|  |  | +        exportFile(url, data).then(response => {
 | 
	
		
			
				|  |  | +          let xlxsname = '配方列表模板' + parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}') + '.xlsx'
 | 
	
		
			
				|  |  | +          localDownloadUtil.blobDownloads(response,xlxsname)
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        console.log('导出数据')
 | 
	
		
			
				|  |  | +        let url = 'api/v1/ops/feed_formula/excel_export'
 | 
	
		
			
				|  |  | +        let data = {name:''}
 | 
	
		
			
				|  |  | +        exportFile(url, data).then(response => {
 | 
	
		
			
				|  |  | +          let xlxsname = '配方列表' + parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}') + '.xlsx'
 | 
	
		
			
				|  |  | +          localDownloadUtil.blobDownloads(response,xlxsname)
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleImport(){
 | 
	
		
			
				|  |  | +      let url = 'api/v1/ops/forage/excel_import'
 | 
	
		
			
				|  |  | +      let data = {name:''}
 | 
	
		
			
				|  |  | +      importFile(url, data).then(response => {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    //验证文件类型
 | 
	
		
			
				|  |  | +    beforeAvatarUpload(file) {
 | 
	
		
			
				|  |  | +      console.log(file);
 | 
	
		
			
				|  |  | +      const isXls = file.type === "application/vnd.ms-excel" ? true : file.type === "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ? true : false;
 | 
	
		
			
				|  |  | +      if (!isXls) {
 | 
	
		
			
				|  |  | +        alert("上传的文件只能是xls以及xlsx格式!");
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      return isXls;
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 判断文件个数
 | 
	
		
			
				|  |  | +    handleChange(file, fileList) {
 | 
	
		
			
				|  |  | +      if (fileList.length >= 2) {
 | 
	
		
			
				|  |  | +        return;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if (fileList.length === 1) {
 | 
	
		
			
				|  |  | +        this.hasFile = true;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.dataForm.file = file;
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 导入
 | 
	
		
			
				|  |  | +    httpRequest(param) {
 | 
	
		
			
				|  |  | +      let formData = new FormData();
 | 
	
		
			
				|  |  | +      formData.append('file', this.dataForm.file.raw);
 | 
	
		
			
				|  |  | +      let url = 'api/v1/ops/forage/excel_import';
 | 
	
		
			
				|  |  | +      let data = formData
 | 
	
		
			
				|  |  | +      console.log(param.file);
 | 
	
		
			
				|  |  | +      axios({
 | 
	
		
			
				|  |  | +        method: 'POST',
 | 
	
		
			
				|  |  | +        url: process.env.VUE_APP_BASE_API + url,
 | 
	
		
			
				|  |  | +        data: data,
 | 
	
		
			
				|  |  | +        headers: {
 | 
	
		
			
				|  |  | +          'Authorization': 'Bearer ' + getToken(),
 | 
	
		
			
				|  |  | +          'Content-Type': 'multipart/form-data'
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }).then(res => {
 | 
	
		
			
				|  |  | +        if(res.data.code == 200){
 | 
	
		
			
				|  |  | +          this.$notify({ title: '成功', message:'操作成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +          this.getList()
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }).catch((e) => {
 | 
	
		
			
				|  |  | +        console.log(e);
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    getList3(){
 | 
	
		
			
				|  |  | +      this.table3.listLoading = true
 | 
	
		
			
				|  |  | +      let page = this.table.page
 | 
	
		
			
				|  |  | +      let page_size = this.table.page_size
 | 
	
		
			
				|  |  | +      let url = '/api/v1/ops/feed_formula/list' + '?page=' + page + '&page_size=' + page_size
 | 
	
		
			
				|  |  | +      let data = {
 | 
	
		
			
				|  |  | +        "name":this.table.parammaps.name,
 | 
	
		
			
				|  |  | +        "remarks":this.table.parammaps.remarks
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(this.table3.parammaps.inputDatetime !== null && this.table3.parammaps.inputDatetime.length > 0){
 | 
	
		
			
				|  |  | +        data.created_start_time = this.table3.parammaps.inputDatetime[0].getTime() / 1000
 | 
	
		
			
				|  |  | +        data.created_end_time = this.table3.parammaps.inputDatetime[1].getTime()  / 1000 + 86400
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if (response.code == 200) {
 | 
	
		
			
				|  |  | +          // this.table3.list = response.data.list
 | 
	
		
			
				|  |  | +          this.table3.list = [{
 | 
	
		
			
				|  |  | +            content: '活动按期开始',
 | 
	
		
			
				|  |  | +            timestamp: '2018-04-15'
 | 
	
		
			
				|  |  | +          }, {
 | 
	
		
			
				|  |  | +            content: '通过审核',
 | 
	
		
			
				|  |  | +            timestamp: '2018-04-13'
 | 
	
		
			
				|  |  | +          }, {
 | 
	
		
			
				|  |  | +            content: '创建成功',
 | 
	
		
			
				|  |  | +            timestamp: '2018-04-11'
 | 
	
		
			
				|  |  | +          }]
 | 
	
		
			
				|  |  | +          this.table3.total = response.data.total
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.table3.list = []
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        setTimeout(() => {
 | 
	
		
			
				|  |  | +          this.table3.listLoading = false
 | 
	
		
			
				|  |  | +        }, 1000)
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // =================================
 | 
	
		
			
				|  |  | +    // 模板行点击
 | 
	
		
			
				|  |  | +    table1RowClick(row, column, event) {
 | 
	
		
			
				|  |  | +      for (let i = 0; i < this.table.list.length; i++) {
 | 
	
		
			
				|  |  | +        if (this.table.list[i].Edit == true) {
 | 
	
		
			
				|  |  | +          return false
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if (this.isOrder == false) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '请保存或取消当前更改顺序操作', duration: 2000 })
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        if (column.label !== '操作' && column.label !== '是否启用' && column.label !== '是否可修改') {
 | 
	
		
			
				|  |  | +          this.isDetail = true // 点击行显示详情
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.ftid = row.id
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.fttypeid = row.fttypeid
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.dryweight = row.dryweight
 | 
	
		
			
				|  |  | +          if (row.fttype == '预混配方') {
 | 
	
		
			
				|  |  | +            this.requestParams[2].parammaps.type = '1'
 | 
	
		
			
				|  |  | +          } else {
 | 
	
		
			
				|  |  | +            this.requestParams[2].parammaps.type = ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          this.myheight1 = document.documentElement.clientHeight - 85 - 265 - 185
 | 
	
		
			
				|  |  | +          this.getList3()
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    getSummaries(param) {
 | 
	
		
			
				|  |  | +      const { columns, data } = param
 | 
	
		
			
				|  |  | +      const sums = []
 | 
	
		
			
				|  |  | +      columns.forEach((column, index) => {
 | 
	
		
			
				|  |  | +        if (index === 0) {
 | 
	
		
			
				|  |  | +          sums[index] = '合计'
 | 
	
		
			
				|  |  | +          return
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        if (column.property !== undefined) {
 | 
	
		
			
				|  |  | +          // 加了prop属性的el-table-column 才能找到column.property
 | 
	
		
			
				|  |  | +          const values = data.map(item => Number(item[column.property]))
 | 
	
		
			
				|  |  | +          if (!values.every(value => isNaN(value))) {
 | 
	
		
			
				|  |  | +            sums[index] = values.reduce((prev, curr) => {
 | 
	
		
			
				|  |  | +              const value = Number(curr)
 | 
	
		
			
				|  |  | +              if (!isNaN(value)) {
 | 
	
		
			
				|  |  | +                return prev + curr // 多行相加
 | 
	
		
			
				|  |  | +              } else {
 | 
	
		
			
				|  |  | +                return prev
 | 
	
		
			
				|  |  | +              }
 | 
	
		
			
				|  |  | +            }, 0)
 | 
	
		
			
				|  |  | +            sums[index] = sums[index].toFixed(4) + '(干物质量:' + this.table2.dryweight + ')'
 | 
	
		
			
				|  |  | +          } else {
 | 
	
		
			
				|  |  | +            sums[index] = ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +      // console.log(sums, 'sums[index]')
 | 
	
		
			
				|  |  | +      return sums
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    getDryWeight() {
 | 
	
		
			
				|  |  | +      GetDataByName(this.table2.getDryweightParm).then(response => {
 | 
	
		
			
				|  |  | +        console.log('干物质数据', response.data.list)
 | 
	
		
			
				|  |  | +        if (response.data.list[0].dryweight !== undefined) {
 | 
	
		
			
				|  |  | +          this.table2.dryweight = response.data.list[0].dryweight
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.table2.dryweight = ''
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    getTemplateTable2Summaries(param) {
 | 
	
		
			
				|  |  | +      const { columns, data } = param
 | 
	
		
			
				|  |  | +      const sums = []
 | 
	
		
			
				|  |  | +      columns.forEach((column, index) => {
 | 
	
		
			
				|  |  | +        if (index === 0) {
 | 
	
		
			
				|  |  | +          sums[index] = '合计'
 | 
	
		
			
				|  |  | +          return
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        const values = data.map(item => Number(item[column.property]))
 | 
	
		
			
				|  |  | +        if (!values.every(value => isNaN(value))) {
 | 
	
		
			
				|  |  | +          sums[index] = values.reduce((prev, curr) => {
 | 
	
		
			
				|  |  | +            const value = Number(curr)
 | 
	
		
			
				|  |  | +            if (!isNaN(value)) {
 | 
	
		
			
				|  |  | +              return prev + curr
 | 
	
		
			
				|  |  | +            } else {
 | 
	
		
			
				|  |  | +              return prev
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          }, 0)
 | 
	
		
			
				|  |  | +          // 后台待发
 | 
	
		
			
				|  |  | +          sums[index] += '(干物质量:' + this.template.table2.getdataListParm.parammaps.dryweight + ')'
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          sums[index] = ''
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +      return sums
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    handleSelectionChange(val) {
 | 
	
		
			
				|  |  | +      console.log('勾选数据', val)
 | 
	
		
			
				|  |  | +      this.selectList = val
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    // 配方记录
 | 
	
		
			
				|  |  | +    handleRecipeRecord() {
 | 
	
		
			
				|  |  | +      console.log('点击了配方记录')
 | 
	
		
			
				|  |  | +      this.template.dialogStatus = 'RecipeRecord'
 | 
	
		
			
				|  |  | +      this.dialogFull = false
 | 
	
		
			
				|  |  | +      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
 | 
	
		
			
				|  |  | +      this.myheight2 = document.documentElement.clientHeight - 85 - 265
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 历史时间
 | 
	
		
			
				|  |  | +    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 = []
 | 
	
		
			
				|  |  | +          this.template.table2.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.date = this.template.table.getdataListParm.parammaps.date
 | 
	
		
			
				|  |  | +      this.template.table2.getdataListParm.parammaps.version = row.version
 | 
	
		
			
				|  |  | +      this.template.table2.getdataListParm.parammaps.ftid = row.id
 | 
	
		
			
				|  |  | +      this.template.table2.getdataListParm.parammaps.dryweight = row.dryweight
 | 
	
		
			
				|  |  | +      this.myheight2 = document.documentElement.clientHeight - 85 - 265 - 185
 | 
	
		
			
				|  |  | +      this.getDialogList()
 | 
	
		
			
				|  |  | +      this.getDownList()
 | 
	
		
			
				|  |  | +      // aiaiaiai
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    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 = []
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        this.$nextTick(function() {
 | 
	
		
			
				|  |  | +          document.querySelector('#detailDialog2').scrollIntoView()
 | 
	
		
			
				|  |  | +          // window.scrollTo({
 | 
	
		
			
				|  |  | +          //   'top': this.$refs.detailDialog2.clientHeight
 | 
	
		
			
				|  |  | +          // })
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +        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)
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    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: '已取消应用' })
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    handleCloseTable2() {
 | 
	
		
			
				|  |  | +      this.isDetail = false
 | 
	
		
			
				|  |  | +      this.myheight1 = ''
 | 
	
		
			
				|  |  | +      this.isEnlarge = true
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleDialogCloseTable2() {
 | 
	
		
			
				|  |  | +      this.isDetailDialog = false
 | 
	
		
			
				|  |  | +      this.myheight2 = document.documentElement.clientHeight - 85 - 265
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // -------------------详情-----------------------------
 | 
	
		
			
				|  |  | +    // 获取是否显示是否锁定牛头数
 | 
	
		
			
				|  |  | +    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.table2.getDryweightParm.parammaps = this.table2.getdataListParm.parammaps
 | 
	
		
			
				|  |  | +          this.getDryWeight()
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +          // for (let i = 0; i < response.data.list.length; i++) {
 | 
	
		
			
				|  |  | +          //   console.log(response.data.list[i].fweight, '===12333')
 | 
	
		
			
				|  |  | +          // }
 | 
	
		
			
				|  |  | +          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 = []
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        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')
 | 
	
		
			
				|  |  | +      // this.sorTable()
 | 
	
		
			
				|  |  | +      const that = this
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      // Sortable.create(tbody, {
 | 
	
		
			
				|  |  | +      var sortable = Sortable.create(tbody, {
 | 
	
		
			
				|  |  | +        disabled: that.dropState,
 | 
	
		
			
				|  |  | +        onChoose({ newIndex, oldIndex }) {
 | 
	
		
			
				|  |  | +          console.log(that.isOrder, 'that.isOrder == false')
 | 
	
		
			
				|  |  | +          console.log(that.dropState, 'that.dropState')
 | 
	
		
			
				|  |  | +          if (that.dropState == true || that.isOrder == true) {
 | 
	
		
			
				|  |  | +            sortable.destroy()
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        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)
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +      console.log(sortable.option('disabled'))
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleChangeOrder() {
 | 
	
		
			
				|  |  | +      this.isOrder = false
 | 
	
		
			
				|  |  | +      this.rowDrop()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    saveChangeOrder() {
 | 
	
		
			
				|  |  | +      // 保存顺序
 | 
	
		
			
				|  |  | +      console.log(this.table2.list)
 | 
	
		
			
				|  |  | +      this.requestParam = {}
 | 
	
		
			
				|  |  | +      this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +      this.requestParam.data = []
 | 
	
		
			
				|  |  | +      this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.table2.list }}
 | 
	
		
			
				|  |  | +      this.requestParam.data[0].children = []
 | 
	
		
			
				|  |  | +      this.requestParam.data[0].children[0] = { 'name': 'updateFTdetailSort', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +        id: '@insertSpotList.id',
 | 
	
		
			
				|  |  | +        pastureid: '@insertSpotList.pastureid',
 | 
	
		
			
				|  |  | +        sort: '@insertSpotList.sort',
 | 
	
		
			
				|  |  | +        feedgroup: '@insertSpotList.feedgroup'
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      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()
 | 
	
		
			
				|  |  | +          this.isOrder = true
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    cancelChangeOrder() {
 | 
	
		
			
				|  |  | +      // 取消顺序
 | 
	
		
			
				|  |  | +      this.getList2()
 | 
	
		
			
				|  |  | +      this.isOrder = true
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    form_search2() {
 | 
	
		
			
				|  |  | +      console.log('点击了查询')
 | 
	
		
			
				|  |  | +      this.arrowDown2 = true
 | 
	
		
			
				|  |  | +      this.arrowUp2 = false
 | 
	
		
			
				|  |  | +      this.table2.getdataListParm.offset = 1
 | 
	
		
			
				|  |  | +      // fname, feedgroup, fweight, autosecondname, islockcount, sort
 | 
	
		
			
				|  |  | +      // this.table2.getdataListParm.parammaps.all = 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 + ' ' + this.table2.getdataListParm.parammaps.sort
 | 
	
		
			
				|  |  | +      this.table2.getdataListParm.parammaps.all = ''
 | 
	
		
			
				|  |  | +      var obj = {}
 | 
	
		
			
				|  |  | +      obj.fname = this.table2.getdataListParm.parammaps.fname
 | 
	
		
			
				|  |  | +      obj.feedgroup = this.table2.getdataListParm.parammaps.feedgroup
 | 
	
		
			
				|  |  | +      obj.fweight = this.table2.getdataListParm.parammaps.fweight
 | 
	
		
			
				|  |  | +      obj.autosecondname = this.table2.getdataListParm.parammaps.autosecondname
 | 
	
		
			
				|  |  | +      if (this.table2.getdataListParm.parammaps.islockcount !== '') {
 | 
	
		
			
				|  |  | +        if (this.table2.getdataListParm.parammaps.islockcount == 0) {
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.islockcount = '否'
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.islockcount = '是'
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      obj.islockcount = this.table2.getdataListParm.parammaps.islockcount
 | 
	
		
			
				|  |  | +      obj.sort = this.table2.getdataListParm.parammaps.sort
 | 
	
		
			
				|  |  | +      Object.getOwnPropertyNames(obj).forEach((key) => {
 | 
	
		
			
				|  |  | +        console.log(key, obj[key])
 | 
	
		
			
				|  |  | +        if (obj[key] !== '') {
 | 
	
		
			
				|  |  | +          this.table2.getdataListParm.parammaps.all += obj[key] + '/'
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +      if (this.table2.getdataListParm.parammaps.all.charAt(this.table2.getdataListParm.parammaps.all.length - 1) == '/') {
 | 
	
		
			
				|  |  | +        this.table2.getdataListParm.parammaps.all = this.table2.getdataListParm.parammaps.all.slice(0, this.table2.getdataListParm.parammaps.all.length - 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.parammaps.all = ''
 | 
	
		
			
				|  |  | +      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','deviation':'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(this.table2.list[i].feedgroup)
 | 
	
		
			
				|  |  | +              break
 | 
	
		
			
				|  |  | +            } else if (Count == 1) {
 | 
	
		
			
				|  |  | +              row.feedgroup = this.table2.temp.fname
 | 
	
		
			
				|  |  | +              console.log(222, this.table2.temp.fname)
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    bort(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) {
 | 
	
		
			
				|  |  | +        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('点击了详情新增保存1', 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
 | 
	
		
			
				|  |  | +      this.table2.temp.deviation = row.deviation
 | 
	
		
			
				|  |  | +      if (this.table2.temp.fid === '' && this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      } else if (this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +        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
 | 
	
		
			
				|  |  | +      } else if (this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      if(parseFloat(this.table2.temp.deviation) > parseFloat(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
 | 
	
		
			
				|  |  | +      this.table2.temp.fweight = formatNum(this.table2.temp.fweight, 4) // 根据默认参数设置小数位数
 | 
	
		
			
				|  |  | +      row.fweight = formatNum(row.fweight, 4)
 | 
	
		
			
				|  |  | +      // return
 | 
	
		
			
				|  |  | +      // var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/
 | 
	
		
			
				|  |  | +      if (this.table2.temp.fweight == 0) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '重量请输入正数,最多保留四位小数', duration: 2000 })
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.isokDisable = true
 | 
	
		
			
				|  |  | +      setTimeout(() => {
 | 
	
		
			
				|  |  | +        this.isokDisable = false
 | 
	
		
			
				|  |  | +      }, 1000)
 | 
	
		
			
				|  |  | +      let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
 | 
	
		
			
				|  |  | +      this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +      this.requestParam.createdate = dateTime
 | 
	
		
			
				|  |  | +      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: String(row.fweight),
 | 
	
		
			
				|  |  | +        islockcount: row.islockcount,
 | 
	
		
			
				|  |  | +        sort: row.sort,
 | 
	
		
			
				|  |  | +        feedgroup: row.feedgroup,
 | 
	
		
			
				|  |  | +        preftid: this.table2.temp.preftid,
 | 
	
		
			
				|  |  | +        autosecond: row.autosecond,
 | 
	
		
			
				|  |  | +        deviation: row.deviation
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      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,
 | 
	
		
			
				|  |  | +        status: 0
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      this.requestParam.data[2] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +        pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +        id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      this.requestParam.data[3] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +        weight: row.fweight,
 | 
	
		
			
				|  |  | +        preftid: this.table2.temp.preftid,
 | 
	
		
			
				|  |  | +        pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +        ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +        dateTime: dateTime,
 | 
	
		
			
				|  |  | +        slid: 0,
 | 
	
		
			
				|  |  | +        fid: row.fid,
 | 
	
		
			
				|  |  | +        autosecond: row.autosecond
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +        id:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +        createdate:dateTime
 | 
	
		
			
				|  |  | +      }}
 | 
	
		
			
				|  |  | +      const url = 'authdata/ftdetail/edit'
 | 
	
		
			
				|  |  | +      const data = this.requestParam
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if (response.msg !== 'fail') {
 | 
	
		
			
				|  |  | +          this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +          this.getList2()
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    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)
 | 
	
		
			
				|  |  | +      this.dropState = true
 | 
	
		
			
				|  |  | +      row.isGroupDisabled = false
 | 
	
		
			
				|  |  | +      row.islockcount = String(row.islockcount)
 | 
	
		
			
				|  |  | +      row.fid = String(row.fid)
 | 
	
		
			
				|  |  | +      // row.autosecond = String(row.autosecond)
 | 
	
		
			
				|  |  | +      row.autosecond = row.autosecond
 | 
	
		
			
				|  |  | +      row.deviation = row.deviation
 | 
	
		
			
				|  |  | +      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
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.table2.updateList = Object.assign({}, row)
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    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.deviation = row.deviation
 | 
	
		
			
				|  |  | +          this.table2.temp.id = row.id
 | 
	
		
			
				|  |  | +          console.log('this.table2.updateList', this.table2.updateList)
 | 
	
		
			
				|  |  | +          console.log('temp', this.table2.temp)
 | 
	
		
			
				|  |  | +          // var status = ''
 | 
	
		
			
				|  |  | +          // if (parseFloat(this.table2.temp.fweight) > parseFloat(this.table2.updateList.fweight)) {
 | 
	
		
			
				|  |  | +          //   status = 0
 | 
	
		
			
				|  |  | +          // } else {
 | 
	
		
			
				|  |  | +          //   status = 1
 | 
	
		
			
				|  |  | +          // }
 | 
	
		
			
				|  |  | +          if (this.table2.temp.fid === '' && this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +            this.$message({ type: 'error', message: '饲料名称/重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +            return false
 | 
	
		
			
				|  |  | +          } else if (this.table2.temp.fweight === '' && this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +            this.$message({ type: 'error', message: '重量/搅拌延时/允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +            return false
 | 
	
		
			
				|  |  | +          } else if (this.table2.temp.autosecond === '' && this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +            this.$message({ type: 'error', message: '搅拌延时/允许延时偏差不能为空1=', 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
 | 
	
		
			
				|  |  | +          } else if (this.table2.temp.deviation === '') {
 | 
	
		
			
				|  |  | +            this.$message({ type: 'error', message: '允许延时偏差不能为空', duration: 2000 })
 | 
	
		
			
				|  |  | +            return false
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          if(parseFloat(this.table2.temp.deviation) > parseFloat(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
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          this.table2.temp.fweight = formatNum(this.table2.temp.fweight, 4) // 根据默认参数设置小数位数
 | 
	
		
			
				|  |  | +          row.fweight = formatNum(row.fweight, 4)
 | 
	
		
			
				|  |  | +          // 检验重量>0
 | 
	
		
			
				|  |  | +          // var ruleWeight = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/
 | 
	
		
			
				|  |  | +          if (this.table2.temp.fweight == 0) {
 | 
	
		
			
				|  |  | +            this.$message({ type: 'error', message: '重量请输入正数,最多保留四位小数', duration: 2000 })
 | 
	
		
			
				|  |  | +            return false
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          console.log(row.fweight,'row.fweight')
 | 
	
		
			
				|  |  | +          let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
 | 
	
		
			
				|  |  | +          this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +          this.requestParam.createdate = dateTime
 | 
	
		
			
				|  |  | +          this.requestParam.data = []
 | 
	
		
			
				|  |  | +          this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            weight: String(row.fweight),
 | 
	
		
			
				|  |  | +            preftid: this.table2.temp.preftid,
 | 
	
		
			
				|  |  | +            dateTime: dateTime,
 | 
	
		
			
				|  |  | +            slid: this.table2.temp.id,
 | 
	
		
			
				|  |  | +            fid: row.fid,
 | 
	
		
			
				|  |  | +            autosecond: row.autosecond
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[1] = { 'name': 'updateFTdetail', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            fid: row.fid,
 | 
	
		
			
				|  |  | +            fname: this.table2.temp.fname,
 | 
	
		
			
				|  |  | +            fweight: String(row.fweight),
 | 
	
		
			
				|  |  | +            islockcount: row.islockcount,
 | 
	
		
			
				|  |  | +            sort: row.sort,
 | 
	
		
			
				|  |  | +            feedgroup: row.feedgroup,
 | 
	
		
			
				|  |  | +            preftid: this.table2.temp.preftid,
 | 
	
		
			
				|  |  | +            autosecond: row.autosecond,
 | 
	
		
			
				|  |  | +            id: row.id,
 | 
	
		
			
				|  |  | +            deviation:row.deviation
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            type: this.table2.getdataListParm.parammaps.fttypeid,
 | 
	
		
			
				|  |  | +            // status: status
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[3] = { 'name': 'updateFTdetailbySort', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            sort: row.sort,
 | 
	
		
			
				|  |  | +            feedgroup: row.feedgroup
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[4] = { 'name': 'updateFTdetailGroup', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[5] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            id:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            createdate:dateTime
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          const url = 'authdata/ftdetail/edit'
 | 
	
		
			
				|  |  | +          const data = this.requestParam
 | 
	
		
			
				|  |  | +          postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +            if (response.msg !== 'fail') {
 | 
	
		
			
				|  |  | +              this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +              this.getList2()
 | 
	
		
			
				|  |  | +              this.dropState = false
 | 
	
		
			
				|  |  | +            } else {
 | 
	
		
			
				|  |  | +              this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          })
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +    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()
 | 
	
		
			
				|  |  | +      this.dropState = false
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    // 详情删除
 | 
	
		
			
				|  |  | +    handleRowDelete2(row) {
 | 
	
		
			
				|  |  | +      console.log('点击了行内删除')
 | 
	
		
			
				|  |  | +      MessageBox.confirm('是否确认删除此信息?', {
 | 
	
		
			
				|  |  | +        confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
 | 
	
		
			
				|  |  | +      }).then(() => {
 | 
	
		
			
				|  |  | +        console.log(this.table2.list.length)
 | 
	
		
			
				|  |  | +        let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
 | 
	
		
			
				|  |  | +        if (this.table2.list.length > 1) {
 | 
	
		
			
				|  |  | +          this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +          this.requestParam.createdate = dateTime
 | 
	
		
			
				|  |  | +          this.requestParam.data = []
 | 
	
		
			
				|  |  | +          this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            weight: 0,
 | 
	
		
			
				|  |  | +            preftid: row.preftid,
 | 
	
		
			
				|  |  | +            dateTime: dateTime,
 | 
	
		
			
				|  |  | +            slid: row.id,
 | 
	
		
			
				|  |  | +            fid: row.fid,
 | 
	
		
			
				|  |  | +            autosecond: row.autosecond
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            id: row.id
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            type: this.table2.getdataListParm.parammaps.fttypeid,
 | 
	
		
			
				|  |  | +            status: 1
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[3] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +            id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            id:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            createdate:dateTime
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +          this.requestParam.createdate = dateTime
 | 
	
		
			
				|  |  | +          this.requestParam.data = []
 | 
	
		
			
				|  |  | +          // this.requestParam.data[1] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
 | 
	
		
			
				|  |  | +          //   pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +          //   id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +          // }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[0] = { 'name': 'insertFitHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            weight: 0,
 | 
	
		
			
				|  |  | +            preftid: row.preftid,
 | 
	
		
			
				|  |  | +            dateTime: dateTime,
 | 
	
		
			
				|  |  | +            slid: row.id,
 | 
	
		
			
				|  |  | +            fid: row.fid,
 | 
	
		
			
				|  |  | +            autosecond: row.autosecond
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            id: row.id
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +            ftid: this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            type: this.table2.getdataListParm.parammaps.fttypeid,
 | 
	
		
			
				|  |  | +            status: 1
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[3] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +            id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +          this.requestParam.data[4] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            id:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            createdate:dateTime
 | 
	
		
			
				|  |  | +          }}
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        const url = 'authdata/ftdetail/edit'
 | 
	
		
			
				|  |  | +        const data = this.requestParam
 | 
	
		
			
				|  |  | +        postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +          if (response.msg !== 'fail') {
 | 
	
		
			
				|  |  | +            this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +            this.getList2()
 | 
	
		
			
				|  |  | +          } else {
 | 
	
		
			
				|  |  | +            this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      }).catch(() => {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'info', message: '已取消删除' })
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleSelectionChange2(val) {
 | 
	
		
			
				|  |  | +      console.log('勾选数据', val)
 | 
	
		
			
				|  |  | +      this.selectList2 = val
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    celldblclick(row, column, cell, event) {
 | 
	
		
			
				|  |  | +      console.log(row, '=====')
 | 
	
		
			
				|  |  | +      this.handleUpdate2(row)
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    form_delete2() {
 | 
	
		
			
				|  |  | +      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.table2.list.length - this.selectList2.length)
 | 
	
		
			
				|  |  | +          let dateTime = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
 | 
	
		
			
				|  |  | +          if (this.table2.list.length - this.selectList2.length > 0) {
 | 
	
		
			
				|  |  | +            this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +            this.requestParam.createdate = dateTime
 | 
	
		
			
				|  |  | +            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': 'insertFitHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              pastureid: '@insertSpotList.pastureid',
 | 
	
		
			
				|  |  | +              ftid: '@insertSpotList.ftid',
 | 
	
		
			
				|  |  | +              weight: 0,
 | 
	
		
			
				|  |  | +              preftid: '@insertSpotList.preftid',
 | 
	
		
			
				|  |  | +              dateTime: dateTime,
 | 
	
		
			
				|  |  | +              slid: '@insertSpotList.id',
 | 
	
		
			
				|  |  | +              fid: '@insertSpotList.fid',
 | 
	
		
			
				|  |  | +              autosecond: '@insertSpotList.autosecond'
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            this.requestParam.data[0].children[1] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              id: '@insertSpotList.id',
 | 
	
		
			
				|  |  | +              pastureid: '@insertSpotList.pastureid'
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            this.requestParam.data[1] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +              id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            this.requestParam.data[2] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +              ftid:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +              type: this.table2.getdataListParm.parammaps.fttypeid,
 | 
	
		
			
				|  |  | +              status: 1
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            this.requestParam.data[3] = { 'name': 'insertFTHistory', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              id:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +              createdate:dateTime
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            const url = 'authdata/ftdetail/edit'
 | 
	
		
			
				|  |  | +            const data = this.requestParam
 | 
	
		
			
				|  |  | +            postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +              if (response.msg !== 'fail') {
 | 
	
		
			
				|  |  | +                this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +                this.getList2()
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +              } else {
 | 
	
		
			
				|  |  | +                this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +              }
 | 
	
		
			
				|  |  | +            })
 | 
	
		
			
				|  |  | +          } else {
 | 
	
		
			
				|  |  | +            this.requestParam.common = { 'returnmap': '0' }
 | 
	
		
			
				|  |  | +            this.requestParam.data = []
 | 
	
		
			
				|  |  | +            // this.requestParam.data[0] = { 'name': 'checkdeleteFT', 'type': 'v', 'parammaps': {
 | 
	
		
			
				|  |  | +            //   pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +            //   id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +            // }}
 | 
	
		
			
				|  |  | +            // this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList2 }}
 | 
	
		
			
				|  |  | +            // this.requestParam.data[1].children = []
 | 
	
		
			
				|  |  | +            // this.requestParam.data[1].children[0] = { 'name': 'deleteFTdetail', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            //   id: '@insertSpotList.id',
 | 
	
		
			
				|  |  | +            //   pastureid: '@insertSpotList.pastureid'
 | 
	
		
			
				|  |  | +            // }}
 | 
	
		
			
				|  |  | +            this.requestParam.data[0] = { 'name': 'updateftversion', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +              pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +              id: this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +            // this.requestParam.data[3] = { 'name': 'updateFPbyFTChange', 'type': 'e', 'parammaps': {
 | 
	
		
			
				|  |  | +            //   pastureid: this.table2.getdataListParm.parammaps.pastureid,
 | 
	
		
			
				|  |  | +            //   ftid:this.table2.getdataListParm.parammaps.ftid,
 | 
	
		
			
				|  |  | +            //   type: this.table2.getdataListParm.parammaps.fttypeid,
 | 
	
		
			
				|  |  | +            //   status: 1
 | 
	
		
			
				|  |  | +            // }}
 | 
	
		
			
				|  |  | +            ExecDataByConfig(this.requestParam).then(response => {
 | 
	
		
			
				|  |  | +              console.log('删除保存发送参数', this.requestParam)
 | 
	
		
			
				|  |  | +              if (response.msg === 'fail') {
 | 
	
		
			
				|  |  | +                this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +              } else {
 | 
	
		
			
				|  |  | +                const url = 'authdata/ftdetai/del'
 | 
	
		
			
				|  |  | +                const data = {}
 | 
	
		
			
				|  |  | +                data.parammaps = {}
 | 
	
		
			
				|  |  | +                data.parammaps.pastureid = this.table2.getdataListParm.parammaps.pastureid
 | 
	
		
			
				|  |  | +                data.parammaps.ftid = this.table2.getdataListParm.parammaps.ftid
 | 
	
		
			
				|  |  | +                data.parammaps.type = this.table2.getdataListParm.parammaps.fttypeid
 | 
	
		
			
				|  |  | +                postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +                  if (response.msg !== 'fail') {
 | 
	
		
			
				|  |  | +                    this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
 | 
	
		
			
				|  |  | +                    this.getList2()
 | 
	
		
			
				|  |  | +                  } else {
 | 
	
		
			
				|  |  | +                    this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
 | 
	
		
			
				|  |  | +                  }
 | 
	
		
			
				|  |  | +                })
 | 
	
		
			
				|  |  | +              }
 | 
	
		
			
				|  |  | +            })
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    // 拆分预混料
 | 
	
		
			
				|  |  | +    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)
 | 
	
		
			
				|  |  | +      this.dialogFull = false
 | 
	
		
			
				|  |  | +      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(3) == (sortList[i].fweight / fweightSum).toFixed(3)) {
 | 
	
		
			
				|  |  | +                      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(3)
 | 
	
		
			
				|  |  | +        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: '@insertSpotList2.tname',
 | 
	
		
			
				|  |  | +          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.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(3)
 | 
	
		
			
				|  |  | +        console.log(sumFweight)
 | 
	
		
			
				|  |  | +        this.isokDisable = true
 | 
	
		
			
				|  |  | +        setTimeout(() => {
 | 
	
		
			
				|  |  | +          this.isokDisable = false
 | 
	
		
			
				|  |  | +        }, 1000)
 | 
	
		
			
				|  |  | +        if (this.detail.list2[0].tcolor == null) {
 | 
	
		
			
				|  |  | +          this.detail.list2[0].tcolor = '#CCCCCC'
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        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: '@insertSpotList2.tname',
 | 
	
		
			
				|  |  | +          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.getList2()
 | 
	
		
			
				|  |  | +            this.getDownList()
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleFormulationEvaluation(row) {
 | 
	
		
			
				|  |  | +      console.log(row)
 | 
	
		
			
				|  |  | +      // this.$router.push({ path: '/statisticalAnalysis/FormulationEvaluation', query: { tname: row.tname }})
 | 
	
		
			
				|  |  | +      this.$router.push({
 | 
	
		
			
				|  |  | +        name: 'FormulationEvaluation',
 | 
	
		
			
				|  |  | +        params: {
 | 
	
		
			
				|  |  | +          tname: row.tname,
 | 
	
		
			
				|  |  | +          ftid: row.id,
 | 
	
		
			
				|  |  | +          pastureid: row.pastureid,
 | 
	
		
			
				|  |  | +          startTime: parseTime(new Date(), '{y}-{m}-{d}'),
 | 
	
		
			
				|  |  | +          inputDatetime: [new Date('startTime'), new Date('startTime')], // 日期后台待传
 | 
	
		
			
				|  |  | +          stopTime: parseTime(new Date(), '{y}-{m}-{d}')
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 配方记录
 | 
	
		
			
				|  |  | +    handleRowRecipeRecord(row) {
 | 
	
		
			
				|  |  | +      console.log(row)
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.temp = Object.assign({}, row)
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.dialogFormVisible = true
 | 
	
		
			
				|  |  | +      this.textMap.rowRecipeRecordTxt = '配方修改记录——配方:' + row.tname
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.dialogStatus = 'rowRecipeRecordTxt'
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.getdataListParm.parammaps.pastureid = row.pastureid
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.getdataListParm.parammaps.fitid = row.id
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime = []
 | 
	
		
			
				|  |  | +      this.getRowRecipeRecordList()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    getRowRecipeRecordList() {
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.listLoading = true
 | 
	
		
			
				|  |  | +      this.rowRecipeRecord.getdataListParm.parammaps.fitid = this.rowRecipeRecord.temp.id
 | 
	
		
			
				|  |  | +      if (this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime == null) {
 | 
	
		
			
				|  |  | +        this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime = ''
 | 
	
		
			
				|  |  | +        this.rowRecipeRecord.getdataListParm.parammaps.startTime = ''
 | 
	
		
			
				|  |  | +        this.rowRecipeRecord.getdataListParm.parammaps.stopTime = ''
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        this.rowRecipeRecord.getdataListParm.parammaps.startTime = this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime[0]
 | 
	
		
			
				|  |  | +        this.rowRecipeRecord.getdataListParm.parammaps.stopTime = this.rowRecipeRecord.getdataListParm.parammaps.inputDatetime[1]
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      const url = 'authdata/GetArrList'
 | 
	
		
			
				|  |  | +      const data = this.rowRecipeRecord.getdataListParm
 | 
	
		
			
				|  |  | +      postJson(url, data).then(response => {
 | 
	
		
			
				|  |  | +        if (response.data.list !== null) {
 | 
	
		
			
				|  |  | +          for (let i = 0; i < response.data.list.length; i++) {
 | 
	
		
			
				|  |  | +            if (response.data.list[i].arrList == null) {
 | 
	
		
			
				|  |  | +              this.$set(response.data.list[i], 'arrList', [])
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.list = response.data.list
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.pageNum = response.data.pageNum
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.pageSize = response.data.pageSize
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.total = response.data.total
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.list = []
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.total = 0
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        console.log(response.data, 'response.data')
 | 
	
		
			
				|  |  | +        setTimeout(() => {
 | 
	
		
			
				|  |  | +          this.rowRecipeRecord.listLoading = false
 | 
	
		
			
				|  |  | +        }, 100)
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleRowRecipeRecordSearch() {
 | 
	
		
			
				|  |  | +      this.getRowRecipeRecordList()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleEnlarge() {
 | 
	
		
			
				|  |  | +      var height = (document.documentElement.clientHeight - 165 + 50).toString() + 'px'
 | 
	
		
			
				|  |  | +      // var height = (document.documentElement.clientHeight - 165 + 80).toString() + 'px'
 | 
	
		
			
				|  |  | +      // var height2 = '-' + (document.documentElement.clientHeight - 400).toString() + 'px'
 | 
	
		
			
				|  |  | +      var height2 = '-' + (this.$refs.template.offsetHeight).toString() + 'px'
 | 
	
		
			
				|  |  | +      // console.log(this.$refs.detail.offsetHeight)
 | 
	
		
			
				|  |  | +      // console.log(height2, 'height2')
 | 
	
		
			
				|  |  | +      this.isEnlarge = false
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.top = height2
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.height = height
 | 
	
		
			
				|  |  | +      this.$refs.appContainer.style.height = height
 | 
	
		
			
				|  |  | +      this.$refs.table2.style.height = 0
 | 
	
		
			
				|  |  | +      this.$refs.myContainer.style.posiiton = 'relative'
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.posiiton = 'absolute'
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleNarrow() {
 | 
	
		
			
				|  |  | +      this.isEnlarge = true
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.top = 0
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.height = '300px'
 | 
	
		
			
				|  |  | +      this.$refs.myContainer.style.posiiton = ''
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.posiiton = ''
 | 
	
		
			
				|  |  | +      this.$refs.detail.style.zIndex = ''
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleTakeEffect() {
 | 
	
		
			
				|  |  | +      if (this.selectList.length == 0) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '请选择车次信息', duration: 2000 })
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否生效?', {
 | 
	
		
			
				|  |  | +          confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
 | 
	
		
			
				|  |  | +        }).then(() => {
 | 
	
		
			
				|  |  | +          let ids = []
 | 
	
		
			
				|  |  | +          for (let i = 0; i < this.selectList.length; i++) {
 | 
	
		
			
				|  |  | +            ids.push(this.selectList[i].id)
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          var data = {}
 | 
	
		
			
				|  |  | +          data.parammaps = {}
 | 
	
		
			
				|  |  | +          data.parammaps.enable = 1
 | 
	
		
			
				|  |  | +          data.parammaps.id = ids.toString()
 | 
	
		
			
				|  |  | +          var url = 'authdata/feedtemplet/enable'
 | 
	
		
			
				|  |  | +          postJson(url,data).then(response => {
 | 
	
		
			
				|  |  | +            console.log('生效保存发送参数', data)
 | 
	
		
			
				|  |  | +            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()
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          })
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    handleDisable() {
 | 
	
		
			
				|  |  | +      if (this.selectList.length == 0) {
 | 
	
		
			
				|  |  | +        this.$message({ type: 'error', message: '请选择车次信息', duration: 2000 })
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否禁用?', {
 | 
	
		
			
				|  |  | +          confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
 | 
	
		
			
				|  |  | +        }).then(() => {
 | 
	
		
			
				|  |  | +          let ids = []
 | 
	
		
			
				|  |  | +          for (let i = 0; i < this.selectList.length; i++) {
 | 
	
		
			
				|  |  | +            ids.push(this.selectList[i].id)
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +          var data = {}
 | 
	
		
			
				|  |  | +          data.parammaps = {}
 | 
	
		
			
				|  |  | +          data.parammaps.enable = 0
 | 
	
		
			
				|  |  | +          data.parammaps.id = ids.toString()
 | 
	
		
			
				|  |  | +          console.log('禁用', data)
 | 
	
		
			
				|  |  | +          var url = 'authdata/feedtemplet/enable'
 | 
	
		
			
				|  |  | +          postJson(url,data).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()
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +          })
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +</script>
 | 
	
		
			
				|  |  | +<style lang="scss" scoped>
 | 
	
		
			
				|  |  | +  // .search{margin-top:10px;height: 40px;}
 | 
	
		
			
				|  |  | +  // .operation{height: 50px;}
 | 
	
		
			
				|  |  | +  .table{margin-top:5px;}
 | 
	
		
			
				|  |  | +  .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{
 | 
	
		
			
				|  |  | +      height:220px;overflow-y: auto;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;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +  .app-container{background: #fff;}
 | 
	
		
			
				|  |  | +  .detail{
 | 
	
		
			
				|  |  | +    background: #fff;
 | 
	
		
			
				|  |  | +    overflow-y: hidden;
 | 
	
		
			
				|  |  | +    overflow-x: hidden;
 | 
	
		
			
				|  |  | +    // position: fixed;
 | 
	
		
			
				|  |  | +    // bottom: 0;
 | 
	
		
			
				|  |  | +    // right:0;
 | 
	
		
			
				|  |  | +    z-index: 3;
 | 
	
		
			
				|  |  | +    // width: calc(100% - 210px);
 | 
	
		
			
				|  |  | +    position: relative;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +  .hide2{float: right;right:0;}
 | 
	
		
			
				|  |  | +  .templateDialog{
 | 
	
		
			
				|  |  | +    background: #fff;
 | 
	
		
			
				|  |  | +    position: relative;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | + .detailDialog{
 | 
	
		
			
				|  |  | +    background: #fff;
 | 
	
		
			
				|  |  | +    position: relative;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +  .hide{float: right;margin-right: 60px;}
 | 
	
		
			
				|  |  | + </style>
 | 
	
		
			
				|  |  | + <style>
 | 
	
		
			
				|  |  | +  .el-color-dropdown__main-wrapper{display: none !important;}
 | 
	
		
			
				|  |  | +  .el-color-dropdown__value{display: none !important;}
 | 
	
		
			
				|  |  | +  .el-color-dropdown__btns .el-button--text{display: none !important;}
 | 
	
		
			
				|  |  | + </style>
 |