<template>
  <div class="app-container">
    <div class="search">
      <el-input v-model="table.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
      <el-select v-model="table.getdataListParm.parammaps.fclassid" filterable placeholder="饲料类别" class="filter-item" style="width: 150px;" clearable>
        <el-option v-for="item in feedTypeList" :key="item.id" :label="item.mixname" :value="item.id" />
      </el-select>
      <el-select v-model="table.getdataListParm.parammaps.source" filterable placeholder="饲料来源" class="filter-item" style="width: 120px;" clearable>
        <el-option v-for="item in feedSourcesList" :key="item.id" :label="item.name" :value="item.id" />
      </el-select>
      <el-select v-model="table.getdataListParm.parammaps.enable" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
        <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
      </el-select>
      <div ref="selectInput" class="filter-item selectInput">
        <el-input type="text" 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="table.getdataListParm.parammaps.allowratio"type="text" style="width: 245px;" /></li>
          <li><a>跳转重量域</a><el-input v-model="table.getdataListParm.parammaps.autozone" type="text" style="width: 245px;" /></li>
          <li>
            <a>跳转延时</a>
            <el-select v-model="table.getdataListParm.parammaps.autosecond" filterable placeholder="跳转延时" class="filter-item" style="width: 245px;" clearable>
              <el-option v-for="item in jumpDelayList" :key="item.value" :label="item.label" :value="item.value" />
            </el-select>
          </li>
          <li>
            <div style="float: right;">
              <el-button class="downminCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
              <el-button class="miniPrimary" @click="handleSearch">搜索</el-button>
            </div>
          </li>
        </ul>
      </div>
      <el-button class="successBorder" @click="handleSearch">查询</el-button>
      <el-button class="successBorder" @click="handleRefresh">重置</el-button>
    </div>
    <div class="operation">
      <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" @click="handleCreate">新增</el-button>
      <el-button v-if="isRoleEdit" class="danger" icon="el-icon-delete" @click="handleDelete">删除</el-button>
      <el-button class="success" icon="el-icon-receiving" @click="handleFeedBank">饲料库</el-button>
    </div>

    <div class="table">
      <el-table
        :key="table.tableKey"
        v-loading="table.listLoading"
        element-loading-text="给我一点时间"
        :data="table.list"
        border
        fit
        highlight-current-row
        style="width: 100%;"
        :row-style="rowStyle"
        :cell-style="cellStyle"
        class="elTable table-fixed"
        @selection-change="handleSelectionChange"
      >
        <el-table-column type="selection" align="center" width="50" fixed="left" />
        <el-table-column label="序号" align="center" type="index" width="50px" fixed="left">
          <template slot-scope="scope">
            <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="饲料名称" min-width="80px" align="center" fixed="left">
          <template slot-scope="scope">
            <span>{{ scope.row.fname }}</span>
          </template>
        </el-table-column>
        <el-table-column label="饲料分类" min-width="80px" align="center" fixed="left">
          <template slot-scope="scope">
            <span>{{ scope.row.fclass }}</span>
          </template>
        </el-table-column>
        <el-table-column label="唯一编码" min-width="80px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.feedcode }}</span>
          </template>
        </el-table-column>
        <el-table-column label="饲料来源" min-width="80px" 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.printgroup }}</span>
          </template>
        </el-table-column>
        <el-table-column v-if="isInforvalue" label="小料秤" min-width="90px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.smtmrname }}</span>
          </template>
        </el-table-column>
        <el-table-column label="允许误差数(kg)" min-width="85px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.allowratio }}</span>
          </template>
        </el-table-column>
        <el-table-column label="包装单位重量(kg)" min-width="80px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.unitweight }}</span>
          </template>
        </el-table-column>
        <el-table-column label="单价" min-width="50px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.uprice }}</span>
          </template>
        </el-table-column>
        <el-table-column label="跳转重量域(kg)" min-width="90px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.autozone }}</span>
          </template>
        </el-table-column>
        <el-table-column label="跳转延时" min-width="80px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.autosecondname }}</span>
          </template>
        </el-table-column>
        <el-table-column label="确认开始" min-width="80px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.confirmstartname }}</span>
          </template>
        </el-table-column>
        <el-table-column label="继电器位置" min-width="60px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.trgaddress }}</span>
          </template>
        </el-table-column>
        <el-table-column label="无上域" min-width="60px" align="center">
          <template slot-scope="scope">
            <span v-if="scope.row.jmp == 0">否</span>
            <span v-else>是</span>
          </template>
        </el-table-column>
        <el-table-column label="备用字段01" min-width="90px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.backup1 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="备用字段02" min-width="90px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.backup2 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="备用字段03" min-width="90px" align="center">
          <template slot-scope="scope">
            <span>{{ scope.row.backup3 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="是否启用" min-width="80px" 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-column label="操作" align="center" width="180" class-name="small-padding fixed-width" fixed="right">
          <template slot-scope="{row}">
            <a class="correcting" @click="handleNutritive (row)">营养价值</a>
            <span class="centerSpan">|</span>
            <a v-if="isRoleEdit" class="correcting" @click="handleRelation(row)">关联</a>
            <span v-if="isRoleEdit" class="centerSpan">|</span>
            <el-button v-if="isRoleEdit" icon="el-icon-edit-outline" class="miniSuccess" @click="handleUpdate(row)" />
            <span v-if="isRoleEdit" class="centerSpan">|</span>
            <el-button v-if="isRoleEdit" icon="el-icon-delete" class="miniDanger" @click="handleRowDelete(row)" />
          </template>
        </el-table-column>
      </el-table>
      <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
    </div>

    <!-- 新增/编辑 -->
    <el-dialog :fullscreen="dialogFull" :visible.sync="create.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[create.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="app-add">
        <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="155px" style="width: 100%;margin:0 auto 50px">
          <el-row>
            <el-col :span="24">
              <h3 style="width: 160px;text-align: right;">基础信息</h3>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="饲料名称:" prop="fname">
                <el-input ref="fname" v-model="create.temp.fname" class="filter-item" placeholder="请输入饲料名称" type="textarea" :autosize="{ minRows:1}" maxlength="32" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="饲料类别:" prop="fclassid">
                <el-select v-model="create.temp.fclassid" filterable placeholder="饲料类别" class="filter-item" style="width: 100%;" @change="changeFeedList">
                  <el-option v-for="item in feedTypeList" :key="item.id" :label="item.mixname" :value="item.id" />
                </el-select>

              </el-form-item></el-col>
            <el-col :span="6">
              <el-form-item label="唯一编码:" prop="feedcode">
                <el-input ref="feedcode" v-model="create.temp.feedcode" class="filter-item" placeholder="请输入唯一编码" type="text" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="饲料来源:" prop="source">
                <el-input ref="source" v-model="create.temp.source" class="filter-item" disabled placeholder="用户自定义" type="text" />
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="计划类型:" prop="printgroupid">
                <el-select v-model="create.temp.printgroupid" filterable placeholder="计划类型" class="filter-item" style="width: 100%;" @change="changePlanList">
                  <el-option v-for="item in planTypeList" :key="item.value" :label="item.label" :value="item.value" />
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="包装单位重量(kg):" prop="unitweight">
                <el-input ref="unitweight" v-model="create.temp.unitweight" class="filter-item" placeholder="正整数" type="number" style="width: 100%;" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="单价:" prop="uprice">
                <el-input ref="uprice" v-model="create.temp.uprice" v-limit class="filter-item" placeholder="最多俩位小数" type="number" step="0.01" style="width: 100%;" />
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="24">
              <h3 style="width: 160px;text-align: right;">搅拌参数</h3>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="允许误差数(kg):" prop="allowratio">
                <el-input ref="allowratio" v-model="create.temp.allowratio" class="filter-item" placeholder="正整数" type="text" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="跳转重量域(kg):" prop="autozone">
                <el-input ref="autozone" v-model="create.temp.autozone" :disabled="create.temp.autosecond=='0'" class="filter-item" placeholder="0-50之间的整数" type="text" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="跳转延时:" prop="autosecond">
                <el-select v-model="create.temp.autosecond" filterable placeholder="跳转延时" class="filter-item" style="width: 100%;" @change="changeAutosecond">
                  <el-option v-for="item in jumpDelayList" :key="item.value" :label="item.label" :value="item.value" />
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="确认开始:" prop="confirmstart">
                <el-select v-model="create.temp.confirmstart" filterabler placeholde="确认开始" class="filter-item" style="width: 100%;" @change="changeConfirmstart">
                  <el-option v-for="item in confirmStartList" :key="item.id" :label="item.name" :value="item.id" />
                </el-select>
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="是否启用:" prop="enable">
                <el-select v-model="create.temp.enable" filterable placeholder="是否启用" class="filter-item" style="width: 100%;">
                  <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="继电器位置:" prop="trgaddress">
                <el-input ref="trgaddress" v-model="create.temp.trgaddress" class="filter-item" placeholder="继电器位置" type="number" />
              </el-form-item>
            </el-col>
            <el-col v-if="isInforvalue" :span="6">
              <el-form-item label="小料秤:" prop="smtmrid">
                <el-select v-model="create.temp.smtmrid" filterable placeholder="小料秤" clearable class="filter-item" style="width: 100%;" @change="changeSmallMaterial">
                  <el-option v-for="item in smallMaterialList" :key="item.id" :label="item.tname" :value="item.id" />
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="无上域:" prop="jmp">
                <el-select v-model="create.temp.jmp" placeholder="无上域" class="filter-item" style="width: 100%;" @change="changeSmallMaterial">
                  <el-option v-for="item in jmpList" :key="item.id" :label="item.name" :value="item.id" />
                </el-select>
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <h3 style="width: 160px;text-align: right;">备用字段</h3>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="备用字段01:" prop="backup1">
                <el-input ref="backup1" v-model="create.temp.backup1" class="filter-item" placeholder="备用字段01" type="text" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="备用字段02:" prop="backup2">
                <el-input ref="backup2" v-model="create.temp.backup2" class="filter-item" placeholder="备用字段02" type="text" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="备用字段03:" prop="backup3">
                <el-input ref="backup3" v-model="create.temp.backup3" class="filter-item" placeholder="备用字段03" type="text" />
              </el-form-item>
            </el-col>
          </el-row>
        </el-form>
        <div slot="footer" class="dialog-footer">
          <el-button class="cancelClose" @click="create.dialogFormVisible = false;getList()">关闭</el-button>
          <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="save" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button>
        </div>
      </div>
    </el-dialog>

    <!-- 饲料库 -->
    <el-dialog :fullscreen="dialogFull" :visible.sync="feedBank.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[feedBank.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="app-add">
        <div class="search">
          <el-input v-model="feedBank.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
          <el-select v-model="feedBank.getdataListParm.parammaps.statue" filterabler placeholder="关联状态" class="filter-item" style="width: 120px;" clearable>
            <el-option v-for="item in associationStatusList" :key="item.id" :label="item.name" :value="item.id" />
          </el-select>
          <el-button class="successBorder" @click="handleFeedBankSearch">查询</el-button>
          <el-button class="successBorder" @click="handleFeedBankRefresh">重置</el-button>
        </div>
        <div class="table">
          <el-table
            :key="feedBank.tableKey"
            v-loading="feedBank.listLoading"
            element-loading-text="给我一点时间"
            :data="feedBank.list"
            border
            fit
            highlight-current-row
            style="width: 100%;margin: 0 auto 50px;"
            :row-style="rowStyle"
            :cell-style="cellStyle"
            class="elTable table-fixed"
          >
            <el-table-column label="序号" align="center" type="index" width="50px" />
            <el-table-column label="来源" min-width="50" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.sources }}</span>
              </template>
            </el-table-column>
            <el-table-column label="中国饲料号" min-width="70px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.feedcode }}</span>
              </template>
            </el-table-column>
            <el-table-column label="饲料名称" min-width="80px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.fname }}</span>
              </template>
            </el-table-column>
            <el-table-column label="价格" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.price }}</span>
              </template>
            </el-table-column>
            <el-table-column label="样品说明" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.remark }}</span>
              </template>
            </el-table-column>
            <el-table-column label="干物质(DM%)" min-width="65px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.dry }}</span>
              </template>
            </el-table-column>
            <el-table-column label="淀粉(%DM)" min-width="59px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.starch }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗蛋白(CP%DM)" min-width="70px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.cp }}</span>
              </template>
            </el-table-column>
            <el-table-column label="钙(Ca%DM)" min-width="85px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ca }}</span>
              </template>
            </el-table-column>
            <el-table-column label="磷(P%DM)" min-width="85px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.p }}</span>
              </template>
            </el-table-column>
            <el-table-column label="产奶净能(%DM)" min-width="75px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.n }}</span>
              </template>
            </el-table-column>
            <el-table-column label="脂肪(%DM)" min-width="59px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.fat }}</span>
              </template>
            </el-table-column>
            <el-table-column label="ADF(%DM)" min-width="60px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.adf }}</span>
              </template>
            </el-table-column>
            <el-table-column label="NDF(%DM)" min-width="60px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ndf }}</span>
              </template>
            </el-table-column>
            <el-table-column label="NDIP%" min-width="70px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ndip }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗灰分(Ash%)" min-width="65px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ash }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗料" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.iscu }}</span>
              </template>
            </el-table-column>
            <el-table-column label="关联状态" min-width="50px" align="center">
              <template slot-scope="scope">
                <span v-if="scope.row.statue==0">否</span>
                <span v-if="scope.row.statue==1">是</span>
              </template>
            </el-table-column>
          </el-table>
        </div>
        <div slot="footer" class="dialog-footer">
          <el-button class="cancelClose cancelClose1" @click="feedBank.dialogFormVisible = false; ">关闭</el-button>
        </div>
      </div>
    </el-dialog>

    <!-- 关联 -->
    <el-dialog :fullscreen="dialogFull" :visible.sync="relation.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[relation.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="app-add">
        <div class="search">
          <el-input v-model="relation.getdataListParm.parammaps.fname" placeholder="饲料名称" style="width: 130px;" class="filter-item" clearable />
          <el-button class="successBorder" @click="handleRelationSearch">查询</el-button>
        </div>
        <div class="table">
          <el-table
            :key="relation.tableKey"
            v-loading="relation.listLoading"
            element-loading-text="给我一点时间"
            :data="relation.list"
            border
            fit
            highlight-current-row
            style="width: 100%;margin: 0 auto 50px;"
            :row-style="rowStyle"
            :cell-style="cellStyle"
            class="elTable table-fixed"
          >
            <el-table-column label="序号" align="center" type="index" width="50px" />
            <el-table-column label="来源" min-width="50" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.sources }}</span>
              </template>
            </el-table-column>
            <el-table-column label="中国饲料号" min-width="80px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.feedcode }}</span>
              </template>
            </el-table-column>
            <el-table-column label="饲料名称" min-width="80px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.fname }}</span>
              </template>
            </el-table-column>
            <el-table-column label="价格" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.price }}</span>
              </template>
            </el-table-column>
            <el-table-column label="样品说明" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.remark }}</span>
              </template>
            </el-table-column>
            <el-table-column label="干物质(DM%)" min-width="65px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.dry }}</span>
              </template>
            </el-table-column>
            <el-table-column label="淀粉(%DM)" min-width="59px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.starch }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗蛋白(CP%DM)" min-width="75px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.cp }}</span>
              </template>
            </el-table-column>
            <el-table-column label="钙(Ca%DM)" min-width="83px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ca }}</span>
              </template>
            </el-table-column>
            <el-table-column label="磷(P%DM)" min-width="80px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.p }}</span>
              </template>
            </el-table-column>
            <el-table-column label="产奶净能(%DM)" min-width="75px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.n }}</span>
              </template>
            </el-table-column>
            <el-table-column label="脂肪(%DM)" min-width="59px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.fat }}</span>
              </template>
            </el-table-column>
            <el-table-column label="ADF(%DM)" min-width="60px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.adf }}</span>
              </template>
            </el-table-column>
            <el-table-column label="NDF(%DM)" min-width="60px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ndf }}</span>
              </template>
            </el-table-column>
            <el-table-column label="NDIP%" min-width="70px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ndip }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗灰分(Ash%)" min-width="65px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.ash }}</span>
              </template>
            </el-table-column>
            <el-table-column label="粗料" min-width="50px" align="center">
              <template slot-scope="scope">
                <span>{{ scope.row.iscu }}</span>
              </template>
            </el-table-column>
            <el-table-column label="操作" min-width="50px" align="center" class-name="small-padding fixed-width" fixed="right">
              <template slot-scope="{row}">
                <a v-if="row.statueRelation == '1'" class="correcting" :disabled="isokDisable" @click="disassociateData(row)">取消关联</a>
                <a v-if="row.statueRelation == '0'" class="correcting" :disabled="isokDisable" @click="relationData(row)">关联</a>
              </template>
            </el-table-column>
          </el-table>
        </div>
        <div slot="footer" class="dialog-footer">
          <el-button class="cancelClose cancelClose1" @click="relation.dialogFormVisible = false;getList() ">关闭</el-button>
        </div>
      </div>
    </el-dialog>
    <!-- 营养价值 -->
    <el-dialog :fullscreen="dialogFull" :visible.sync="nutritive.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[nutritive.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="app-add">
        <el-form ref="temp" :rules="nutritive.rules" :model="nutritive.temp" label-position="right" label-width="160px" style="width: 100%;margin:0 auto 50px">
          <el-row>
            <el-col :span="6">
              <el-form-item label="干物质(DM%):" prop="dry">
                <el-input ref="dry" v-model="nutritive.temp.dry" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入干物质" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="淀粉(%DM):" prop="starch">
                <el-input ref="starch" v-model="nutritive.temp.starch" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入淀粉" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="粗蛋白(CP%DM):" prop="cp">
                <el-input ref="cp" v-model="nutritive.temp.cp" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入粗蛋白" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="钙(Ca%DM):" prop="ca">
                <el-input ref="ca" v-model="nutritive.temp.ca" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入钙" type="number" step="0.01" />
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="磷(P%DM):" prop="p">
                <el-input ref="p" v-model="nutritive.temp.p" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入磷" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="产奶净能(%DM):" prop="n">
                <el-input ref="n" v-model="nutritive.temp.n" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入产奶净能" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="脂肪(%DM):" prop="fat">
                <el-input ref="fat" v-model="nutritive.temp.fat" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入脂肪" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="ADF(%DM):" prop="adf">
                <el-input ref="adf" v-model="nutritive.temp.adf" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入ADF" type="number" step="0.01" />
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="6">
              <el-form-item label="NDF(%DM):" prop="ndf">
                <el-input ref="ndf" v-model="nutritive.temp.ndf" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入NDF" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="NDIP(%):" prop="ndip">
                <el-input ref="ndip" v-model="nutritive.temp.ndip" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入NDIP" type="number" step="0.01" />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="粗灰分(Ash%):" prop="ash">
                <el-input ref="ash" v-model="nutritive.temp.ash" v-limit :disabled="isRoleEdit==false" class="filter-item" placeholder="请输入粗灰分" type="number" min="0.00" step="0.01" />
              </el-form-item>
            </el-col>
          </el-row>
        </el-form>
        <div slot="footer" class="dialog-footer">
          <el-button class="cancelClose" @click="nutritive.dialogFormVisible = false;getList()">关闭</el-button>
          <el-button v-if="nutritive.dialogStatus==='nutritive' && isRoleEdit" class="save" :disabled="isokDisable" @click="nutritiveData()">确认</el-button>
        </div>
      </div>
    </el-dialog>
  </div>

</template>

<script>
import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons } from '@/api/common'
import Cookies from 'js-cookie'
import Pagination from '@/components/Pagination'
import { MessageBox } from 'element-ui'
export default {
  name: 'FeedTable',
  components: { Pagination },
  directives: {
    limit: {
      // 指令的定义
      update: function(el) {
        el.onkeypress = function(e) {
          var code = e.charCode
          if (code != 0) {
            if (!String.fromCharCode(code).match(/[0-9\.]/)) {
              return false
            }
          }
        }
        el.addEventListener('textInput', function(e) {
          e.target.value = e.target.value.replace(/[^0-9\.]/g, '')
        })
        el.onkeyup = function(e) {
          e.target.value = e.target.value.replace(/[^0-9\.]/g, '')
        }
      }
    }
  },
  data() {
    return {
      dialogFull: false,
      isInforvalue: false,
      isRoleEdit: [],
      requestParams: [
        { name: 'getDictByName', offset: 0, pagecount: 0, params: ['跳转延时'] },
        { name: 'getFeedclassByBig', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }},
        { name: 'getDictByName2', offset: 0, pagecount: 0, params: ['计划类型'] },
        { name: 'getTMRListEnableTypeFeed', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid'), eqtype: '4' }}
      ],
      requestParams2: {
        name: 'getSysoptEnable', offset: 0, parammaps: { pastureid: Cookies.get('pastureid'), inforname: 'isSmallMaterial' }
      },
      enableList: [{ id: '1', name: '是' }, { id: '0', name: '否' }], // 是否启用
      feedSourcesList: [{ id: '0', name: '系统内置' }, { id: '1', name: '用户自定义' }], // 饲料来源
      confirmStartList: [{ id: '0', name: '禁用' }, { id: '1', name: '启用' }], // 确认开始
      associationStatusList: [{ id: '1', name: '是' }, { id: '0', name: '否' }], // 关联状态
      jumpDelayList: [], // 跳转延时
      feedTypeList: [], // 饲料分类
      planTypeList: [], // 计划类型
      smallMaterialList: [], // 小料秤
      jmpList: [{ id: '0', name: '否' }, { id: '1', name: '是' }], // 无上域
      table: {
        tableKey: 0,
        list: [],
        total: 0,
        listLoading: true,
        getdataListParm: {
          name: 'getFeedList',
          page: 1,
          offset: 1,
          pagecount: parseInt(Cookies.get('pageCount')),
          returntype: 'Map',
          parammaps: {
            pastureid: Cookies.get('pastureid'),
            fname: '',
            fclassid: '',
            source: '',
            autozone: '',
            autosecond: '',
            allowratio: '',
            printgroup: '',
            enable: ''
          }
        }
      },

      // 多项搜索显示隐藏
      arrowDown: true,
      arrowUp: false,

      // 新增/编辑
      create: {
        dialogFormVisible: false,
        dialogStatus: '',
        temp: { pastureid: Cookies.get('pastureid'), fname: '', fclassid: '', fclass: '', feedcode: '', source: '用户自定义', printgroupid: '1', printgroup: '无', unitweight: '', uprice: '', allowratio: '', autozone: '', autosecond: '0', autosecondname: '禁用', confirmstart: '0', confirmstartname: '禁用', enable: '1', trgaddress: '', backup1: '', backup2: '', backup3: '' },
        rules: {
          fname: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
          fclassid: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
          feedcode: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }]
        }
      },

      // 饲料库
      feedBank: {
        dialogFormVisible: false,
        dialogStatus: '',
        temp: {},
        rules: {},
        tableKey: 0,
        list: [],
        total: 0,
        listLoading: true,
        getdataListParm: {
          name: 'getFeednurList',
          page: 1,
          offset: 1,
          returntype: 'Map',
          parammaps: {
            pastureid: Cookies.get('pastureid'),
            fname: '',
            statue: ''
          }
        }
      },
      // 关联
      relation: {
        dialogFormVisible: false,
        dialogStatus: '',
        temp: {},
        rules: {},
        tableKey: 0,
        list: [],
        total: 0,
        listLoading: true,
        getdataListParm: {
          name: 'getFeednurRelation',
          page: 1,
          offset: 1,
          returntype: 'Map',
          parammaps: {
            pastureid: Cookies.get('pastureid'),
            fname: ''
          }
        }
      },

      // 营养价值
      nutritive: {
        dialogFormVisible: false,
        dialogStatus: '',
        temp: {},
        rules: {}
      },

      textMap: {
        create: '新增',
        update: '编辑',
        feedBank: '饲料库',
        relation: '关联',
        nutritive: '营养价值'
      },

      isokDisable: false,
      selectList: [],
      requestParam: {},
      rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
      cellStyle: { padding: 0 + 'px' }

    }
  },
  mounted() {
    document.addEventListener('click', (e) => {
      if (this.$refs.selectInput !== undefined) {
        if (!this.$refs.selectInput.contains(e.target)) {
          this.arrowDown = true
          this.arrowUp = false
        } else {
          this.arrowDown = false
          this.arrowUp = true
        }
      }
    })
  },
  created() {
    this.getList()
    this.getDownList()
    this.getButtons()
    this.getInforvalueList()
  },

  methods: {
    getButtons() {
      const Edit = 'FeedTable'
      const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
      this.isRoleEdit = isRoleEdit
    },

    getInforvalueList() {
      GetDataByName(this.requestParams2).then(response => {
        if (response.data !== null) {
          if (response.data.list[0].inforvalue == 0) {
            this.isInforvalue = false
          } else {
            this.isInforvalue = true
          }
        } else {
          this.isInforvalue = false
        }
      })
    },
    getDownList() {
      GetDataByNames(this.requestParams).then(response => {
        this.jumpDelayList = response.data.getDictByName.list
        this.feedTypeList = response.data.getFeedclassByBig.list
        this.planTypeList = response.data.getDictByName2.list
        this.smallMaterialList = response.data.getTMRListEnableTypeFeed.list
      })
    },

    getList() {
      this.table.listLoading = true
      GetDataByName(this.table.getdataListParm).then(response => {
        console.log('table数据', response.data.list)
        if (response.data.list !== null) {
          this.table.list = response.data.list
          this.table.pageNum = response.data.pageNum
          this.table.pageSize = response.data.pageSize
          this.table.total = response.data.total
        } else {
          this.table.list = []
        }
        setTimeout(() => {
          this.table.listLoading = false
        }, 100)
      })
    },
    handleSearch() {
      console.log('点击了查询')
      this.table.getdataListParm.offset = 1
      this.getList()
      this.arrowDown = true
      this.arrowUp = false
    },
    handleRefresh() {
      console.log('点击了重置')
      this.table.getdataListParm.parammaps.fname = ''
      this.table.getdataListParm.parammaps.fclassid = ''
      this.table.getdataListParm.parammaps.source = ''
      this.table.getdataListParm.parammaps.autozone = ''
      this.table.getdataListParm.parammaps.autosecond = ''
      this.table.getdataListParm.parammaps.allowratio = ''
      this.table.getdataListParm.parammaps.printgroup = ''
      this.table.getdataListParm.parammaps.enable = ''
      this.table.getdataListParm.offset = 1
      this.getList()
    },

    resetTemp() {
      this.create.temp = { pastureid: Cookies.get('pastureid'), fname: '', fclassid: '', fclass: '', feedcode: '', source: '用户自定义', printgroupid: '1', printgroup: '无', unitweight: '', uprice: '', allowratio: '', autozone: '', autosecond: '0', autosecondname: '禁用', confirmstart: '0', confirmstartname: '禁用', enable: '1', trgaddress: '', backup1: '', backup2: '', backup3: '', jmp: '0' }
    },
    // 计划类型
    changePlanList(item) {
      console.log(item,'======')
      this.create.temp.printgroup = this.planTypeList.find(obj => obj.value === item).label
    },
    // 饲料类型
    changeFeedList(item) {
      this.create.temp.fclass = this.feedTypeList.find(obj => obj.id === item).mixname
    },
    // 跳转延时
    changeAutosecond(item) {
      this.create.temp.autosecondname = this.jumpDelayList.find(obj => obj.value === item).label
    },
    // 确认开始
    changeConfirmstart(item) {
      this.create.temp.confirmstartname = this.confirmStartList.find(obj => obj.id === item).name
    },
    changeSmallMaterial(item) {
      if (item !== '') {
        this.create.temp.smtmrname = this.smallMaterialList.find(obj => obj.id === item).tname
      } else {
        this.create.temp.smtmrname = ''
      }
    },
    // 新增
    handleCreate() {
      console.log('点击了新增')
      this.resetTemp()
      this.dialogFull = false
      this.create.dialogStatus = 'create'
      this.create.dialogFormVisible = true
    },
    createData() {
      console.log('点击了新增保存')
      this.isokDisable = true
      setTimeout(() => {
        this.isokDisable = false
      }, 1000)
      this.$refs['temp'].validate(valid => {
        if (valid) {
          const unitweight = /^[1-9]\d*$/
          if (this.create.temp.unitweight !== '') {
            if (!unitweight.test(parseFloat(this.create.temp.unitweight))) {
              this.$message({ type: 'error', message: '包装单位重量请输入正整数', duration: 2000 })
              return false
            }
          }
          const uprice = /^\d+(\.\d{1,2})?$/
          if (this.create.temp.uprice !== '') {
            if (!uprice.test(parseFloat(this.create.temp.uprice))) {
              this.$message({ type: 'error', message: '单价请保留两位小数', duration: 2000 })
              return false
            }
          }
          if (this.create.temp.autozone !== '') {
            const autozone = /^([0-9]|(1[0-9]|2[0-9]|3[0-9]|4[0-9]|(50)))$/
            if (!autozone.test(parseFloat(this.create.temp.autozone))) {
              this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于50的整数', duration: 2000 })
              return false
            }
          } else {
            this.create.temp.autozone = '0'
          }
          if (this.create.temp.trgaddress.length > 8) {
            this.$message({ type: 'error', message: '继电器位置请输入1-8位数字', duration: 2000 })
            return false
          }
          const allowratio = /^[0-9]\d*$/
          if (this.create.temp.allowratio !== '') {
            if (!allowratio.test(parseFloat(this.create.temp.allowratio))) {
              this.$message({ type: 'error', message: '允许误差数请输入大于等于0的整数', duration: 2000 })
              return false
            }
          }
          this.isokDisable = true
          setTimeout(() => {
            this.isokDisable = false
          }, 1000)
          this.requestParam.name = 'insertFeed'
          this.requestParam.parammaps = this.create.temp
          if (this.create.temp.allowratio == '') { this.create.temp.allowratio = '0' }
          if (this.create.temp.uprice == '') { this.create.temp.uprice = '0' }
          if (this.create.temp.unitweight == '') { this.create.temp.unitweight = '0' }
          if (this.create.temp.autozone == '') { this.create.temp.autozone = '0' }
          if (this.create.temp.trgaddress == '') { this.create.temp.trgaddress = '0' }
          PostDataByName(this.requestParam).then(response => {
            console.log('新增保存发送参数', this.requestParam)
            if (response.msg !== 'fail') {
              this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
              this.create.dialogFormVisible = false
              this.getList()
            } else {
              this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
              if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
              if (this.create.temp.uprice == '0') { this.create.temp.uprice = '' }
              if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
              if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
              if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
            }
          })
        }
      })
    },

    // 编辑
    handleUpdate(row) {
      console.log('点击了编辑', row)
      this.create.dialogStatus = 'update'
      this.dialogFull = false
      this.create.dialogFormVisible = true
      row.fclassid = String(row.fclassid)
      row.printgroupid = String(row.printgroupid)
      row.autosecond = String(row.autosecond)
      row.confirmstart = String(row.confirmstart)
      row.enable = String(row.enable)
      row.jmp = String(row.jmp)
      if (row.printgroupid !== '') {
        row.printgroup = this.planTypeList.find(obj => obj.value == row.printgroupid).label
      }

      this.create.temp = Object.assign({}, row)
      if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
      if (this.create.temp.uprice == '0.00') { this.create.temp.uprice = '' }
      if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
      if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
      if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
      if (this.create.temp.smtmrid == '-1') { this.create.temp.smtmrid = '' }
      console.log(row,'=====')
    },
    updateData() {
      console.log('点击了编辑保存')
      this.isokDisable = true
      setTimeout(() => {
        this.isokDisable = false
      }, 1000)
      this.$refs['temp'].validate(valid => {
        if (valid) {
          const unitweight = /^[1-9]\d*$/
          if (this.create.temp.unitweight !== '') {
            if (!unitweight.test(parseFloat(this.create.temp.unitweight))) {
              this.$message({ type: 'error', message: '包装单位重量请输入正整数', duration: 2000 })
              return false
            }
          }
          const uprice = /^\d+(\.\d{1,2})?$/
          if (this.create.temp.uprice !== '') {
            if (!uprice.test(parseFloat(this.create.temp.uprice))) {
              this.$message({ type: 'error', message: '单价请保留两位小数', duration: 2000 })
              return false
            }
          }
          if (this.create.temp.autozone !== '') {
            const autozone = /^([0-9]|(1[0-9]|2[0-9]|3[0-9]|4[0-9]|(50)))$/
            if (!autozone.test(parseFloat(this.create.temp.autozone))) {
              this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于50的整数', duration: 2000 })
              return false
            }
          } else {
            this.create.temp.autozone = '0'
          }

          if (this.create.temp.trgaddress.length > 8) {
            this.$message({ type: 'error', message: '继电器位置请输入1-8位数字', duration: 2000 })
            return false
          }
          const allowratio = /^[0-9]\d*$/
          if (this.create.temp.allowratio !== '') {
            if (!allowratio.test(parseFloat(this.create.temp.allowratio))) {
              this.$message({ type: 'error', message: '允许误差数请输入大于等于0的整数', duration: 2000 })
              return false
            }
          }
          this.isokDisable = true
          setTimeout(() => {
            this.isokDisable = false
          }, 1000)
          this.requestParam.name = 'updateFeed'
          this.requestParam.parammaps = this.create.temp
          if (this.create.temp.allowratio == '') { this.create.temp.allowratio = '0' }
          if (this.create.temp.uprice == '') { this.create.temp.uprice = '0' }
          if (this.create.temp.unitweight == '') { this.create.temp.unitweight = '0' }
          if (this.create.temp.autozone == '') { this.create.temp.autozone = '0' }
          if (this.create.temp.trgaddress == '') { this.create.temp.trgaddress = '0' }

          PostDataByName(this.requestParam).then(response => {
            console.log('新增保存发送参数', this.requestParam)
            if (response.msg !== 'fail') {
              this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
              this.create.dialogFormVisible = false
              this.getList()
            } else {
              this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
              if (this.create.temp.allowratio == '0') { this.create.temp.allowratio = '' }
              if (this.create.temp.uprice == '0') { this.create.temp.uprice = '' }
              if (this.create.temp.unitweight == '0') { this.create.temp.unitweight = '' }
              if (this.create.temp.autozone == '0') { this.create.temp.autozone = '' }
              if (this.create.temp.trgaddress == '0') { this.create.temp.trgaddress = '' }
            }
          })
        }
      })
    },

    // 饲料库
    handleFeedBank() {
      console.log('点击了饲料库')
      this.dialogFull = false
      this.feedBank.dialogStatus = 'feedBank'
      this.feedBank.dialogFormVisible = true
      this.getFeedBankList()
    },
    getFeedBankList() {
      this.feedBank.listLoading = true
      GetDataByName(this.feedBank.getdataListParm).then(response => {
        console.log('table数据', response.data.list)
        if (response.data.list !== null) {
          this.feedBank.list = response.data.list
          this.feedBank.pageNum = response.data.pageNum
          this.feedBank.pageSize = response.data.pageSize
          this.feedBank.total = response.data.total
        } else {
          this.feedBank.list = []
        }
        setTimeout(() => {
          this.feedBank.listLoading = false
        }, 100)
      })
    },
    handleFeedBankSearch() {
      console.log('点击了饲料库搜索')
      this.getFeedBankList()
      this.feedBank.getdataListParm.offset = 1
    },
    handleFeedBankRefresh() {
      console.log('点击了饲料库重置')
      this.feedBank.getdataListParm.parammaps.fname = ''
      this.feedBank.getdataListParm.parammaps.statue = ''
      this.getFeedBankList()
    },

    // 关联
    handleRelation(row) {
      console.log('点击了关联')
      this.dialogFull = false
      this.relation.dialogStatus = 'relation'
      this.relation.dialogFormVisible = true
      this.relation.temp = Object.assign({}, row)
      this.relation.getdataListParm.parammaps.fid = this.relation.temp.id
      this.getRelationList()
    },
    getRelationList() {
      this.relation.listLoading = true
      GetDataByName(this.relation.getdataListParm).then(response => {
        console.log('table数据', response.data.list)
        if (response.data.list !== null) {
          this.relation.list = response.data.list
          this.relation.pageNum = response.data.pageNum
          this.relation.pageSize = response.data.pageSize
          this.relation.total = response.data.total
        } else {
          this.relation.list = []
        }
        setTimeout(() => {
          this.relation.listLoading = false
        }, 100)
      })
    },
    handleRelationSearch() {
      console.log('点击了关联搜索')
      this.relation.getdataListParm.offset = 1
      this.getRelationList()
    },
    disassociateData(row) {
      console.log('点击了取消关联')
      MessageBox.confirm('是否确认取消关联?', {
        confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
      }).then(() => {
        this.isokDisable = true
        setTimeout(() => {
          this.isokDisable = false
        }, 1000)
        this.requestParam.name = 'updateFeedrelation'
        this.requestParam.parammaps = {}
        this.requestParam.parammaps.pastureid = this.relation.temp.pastureid
        this.requestParam.parammaps.fid = this.relation.temp.id
        this.requestParam.parammaps.id = row.id
        PostDataByName(this.requestParam).then(response => {
          console.log('取消关联保存发送参数', this.requestParam)
          if (response.msg !== 'fail') {
            this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
            this.getRelationList()
            this.getList()
          } else {
            this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
          }
        })
      }).catch(() => {
        this.$message({ type: 'info', message: '已取消' })
      })
    },
    relationData(row) {
      console.log('点击了关联保存')
      MessageBox.confirm('是否确认关联?', {
        confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
      }).then(() => {
        this.isokDisable = true
        setTimeout(() => {
          this.isokDisable = false
        }, 1000)
        this.requestParam.name = 'insertFeednur'
        this.requestParam.parammaps = {}
        this.requestParam.parammaps.pastureid = this.relation.temp.pastureid
        this.requestParam.parammaps.fid = this.relation.temp.id
        this.requestParam.parammaps.fname = this.relation.temp.fname
        this.requestParam.parammaps.feedcode = this.relation.temp.feedcode
        this.requestParam.parammaps.price = row.price
        this.requestParam.parammaps.remark = row.remark
        this.requestParam.parammaps.dry = row.dry
        this.requestParam.parammaps.starch = row.starch
        this.requestParam.parammaps.cp = row.cp
        this.requestParam.parammaps.ca = row.ca
        this.requestParam.parammaps.p = row.p
        this.requestParam.parammaps.n = row.n
        this.requestParam.parammaps.fat = row.fat
        this.requestParam.parammaps.adf = row.adf
        this.requestParam.parammaps.ndf = row.ndf
        this.requestParam.parammaps.ndip = row.ndip
        this.requestParam.parammaps.ash = row.ash
        this.requestParam.parammaps.fpercent = row.fpercent
        this.requestParam.parammaps.iscu = row.iscu
        this.requestParam.parammaps.feednurid = row.id
        PostDataByName(this.requestParam).then(response => {
          console.log('关联保存发送参数', this.requestParam)
          if (response.msg !== 'fail') {
            this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
            this.getRelationList()
            this.getList()
          } else {
            this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
          }
        })
      }).catch(() => {
        this.$message({ type: 'info', message: '已取消' })
      })
    },
    // 营养价值
    handleNutritive(row) {
      console.log('点击了营养价值', row)
      this.dialogFull = false
      this.nutritive.dialogStatus = 'nutritive'
      this.nutritive.dialogFormVisible = true
      this.nutritive.temp = Object.assign({}, row)
    },
    nutritiveData() {
      console.log('点击了营养价值保存')
      this.isokDisable = true
      setTimeout(() => {
        this.isokDisable = false
      }, 1000)
      if (this.nutritive.temp.dry == undefined) { this.$set(this.nutritive.temp, 'dry', '') }
      if (this.nutritive.temp.starch == undefined) { this.$set(this.nutritive.temp, 'starch', '') }
      if (this.nutritive.temp.cp == undefined) { this.$set(this.nutritive.temp, 'cp', '') }
      if (this.nutritive.temp.ca == undefined) { this.$set(this.nutritive.temp, 'ca', '') }
      if (this.nutritive.temp.p == undefined) { this.$set(this.nutritive.temp, 'p', '') }
      if (this.nutritive.temp.n == undefined) { this.$set(this.nutritive.temp, 'n', '') }
      if (this.nutritive.temp.fat == undefined) { this.$set(this.nutritive.temp, 'fat', '') }
      if (this.nutritive.temp.adf == undefined) { this.$set(this.nutritive.temp, 'adf', '') }
      if (this.nutritive.temp.ndf == undefined) { this.$set(this.nutritive.temp, 'ndf', '') }
      if (this.nutritive.temp.ndip == undefined) { this.$set(this.nutritive.temp, 'ndip', '') }
      if (this.nutritive.temp.ash == undefined) { this.$set(this.nutritive.temp, 'ash', '') }
      var positiveNumber = /^\d+(\.\d{1,2})?$/
      if (this.nutritive.temp.dry !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.dry))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }
      console.log(this.nutritive.temp.starch)
      if (this.nutritive.temp.starch !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.starch))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.cp !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.cp))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.ca !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.ca))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.p !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.p))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.n !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.n))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.fat !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.fat))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.adf !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.adf))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.ndf !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.ndf))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.ndip !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.ndip))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }

      if (this.nutritive.temp.ash !== '') {
        if (!positiveNumber.test(parseFloat(this.nutritive.temp.ash))) {
          this.$message({ type: 'error', message: '请输入自然数,最多保留俩位小数', duration: 2000 })
          return false
        }
      }
      this.requestParam.name = 'insertFeednur'
      this.requestParam.parammaps = {}
      this.requestParam.parammaps.pastureid = this.nutritive.temp.pastureid
      this.requestParam.parammaps.fid = this.nutritive.temp.id
      this.requestParam.parammaps.fname = this.nutritive.temp.fname
      this.requestParam.parammaps.feedcode = this.nutritive.temp.feedcode
      this.requestParam.parammaps.price = this.nutritive.temp.uprice
      this.requestParam.parammaps.remark = this.nutritive.temp.remark
      this.requestParam.parammaps.dry = this.nutritive.temp.dry
      this.requestParam.parammaps.starch = this.nutritive.temp.starch
      this.requestParam.parammaps.cp = this.nutritive.temp.cp
      this.requestParam.parammaps.ca = this.nutritive.temp.ca
      this.requestParam.parammaps.p = this.nutritive.temp.p
      this.requestParam.parammaps.n = this.nutritive.temp.n
      this.requestParam.parammaps.fat = this.nutritive.temp.fat
      this.requestParam.parammaps.adf = this.nutritive.temp.adf
      this.requestParam.parammaps.ndf = this.nutritive.temp.ndf
      this.requestParam.parammaps.ndip = this.nutritive.temp.ndip
      this.requestParam.parammaps.ash = this.nutritive.temp.ash
      this.requestParam.parammaps.fpercent = this.nutritive.temp.fpercent
      this.requestParam.parammaps.iscu = this.nutritive.temp.iscu
      this.requestParam.parammaps.feednurid = '-1'
      PostDataByName(this.requestParam).then(response => {
        console.log('关联保存发送参数', this.requestParam)
        if (response.msg !== 'fail') {
          this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
          this.getList()
          this.nutritive.dialogFormVisible = false
        } else {
          this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
        }
      })
    },

    // 行内删除
    handleRowDelete(row) {
      console.log('点击了行内删除')
      MessageBox.confirm('是否确认删除此信息?', {
        confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
      }).then(() => {
        this.selectList = []
        this.requestParam = {}
        this.requestParam.common = { 'returnmap': '0' }
        this.requestParam.data = []
        this.requestParam.data[0] = { 'name': 'checkDeleteFeed', 'type': 'v', 'parammaps': {
          'pastureid': row.pastureid,
          'id': row.id
        }}
        this.requestParam.data[1] = { 'name': 'deleteFeed', 'type': 'e', 'parammaps': {
          'pastureid': row.pastureid,
          'id': row.id
        }}
        ExecDataByConfig(this.requestParam).then(response => {
          console.log('删除保存发送参数', this.requestParam)
          if (response.msg === 'fail') {
            this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
          } else {
            this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
            this.getList()
          }
        })
      }).catch(() => {
        this.$message({ type: 'info', message: '已取消删除' })
      })
    },
    handleSelectionChange(val) {
      console.log('勾选数据', val)
      this.selectList = val
    },
    // 多项删除
    handleDelete() {
      console.log('点击了删除')
      if (this.selectList.length == 0) {
        this.$message({ type: 'error', message: '请选择饲料表信息', duration: 2000 })
      } else {
        MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
          confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
        }).then(() => {
          this.requestParam = {}
          this.requestParam.common = { 'returnmap': '0' }
          this.requestParam.data = []
          this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
          this.requestParam.data[0].children = []
          this.requestParam.data[0].children[0] = { 'name': 'checkDeleteFeed', 'type': 'v', 'parammaps': {
            id: '@insertSpotList.id',
            pastureid: '@insertSpotList.pastureid'
          }}
          this.requestParam.data[0].children[1] = { 'name': 'deleteFeed', 'type': 'e', 'parammaps': {
            id: '@insertSpotList.id',
            pastureid: '@insertSpotList.pastureid'
          }}
          ExecDataByConfig(this.requestParam).then(response => {
            console.log('删除保存发送参数', this.requestParam)
            if (response.msg === 'fail') {
              this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
            } else {
              this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
              this.getList()
            }
          })
        })
      }
    }
  }
}
</script>
<style lang="scss" scoped>
  .search{margin-top:10px;}
  .table{margin-top:10px;}
  $width:350px;
  $left:325px;
  .selectInput{
    position: relative;
    display: inline-block;
    .Input{width: $width;position: relative;}
    .el-icon-arrow-down{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
    .el-icon-arrow-up{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
    .selectUl{
      z-index: 111;width: $width;background: #fff;border: 1px solid #E4E7ED;box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);margin: -1px 0 0 0;padding: 6px 0; margin: 0;box-sizing: border-box;position: absolute;
      li{
        list-style: none;font-size: 14px; padding: 0 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #606266; height: 50px; line-height: 50px; box-sizing: border-box; cursor: pointer;
        a{float:left;width: 80px;}
        a:hover{color: rgba(0, 204, 102, 0.71); font-weight: 700;}
      }
    }
  }
 </style>