12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382 |
- <template>
- <div class="app-container">
- <div class="operation">
- <el-button v-if="isRoleEdit" class="success" @click="handleCreate">新增</el-button>
- <el-button v-if="isRoleEdit" class="danger" @click="handleDelete">删除</el-button>
- <el-button class="success" @click="handleFeedBank">饲料库</el-button>
- </div>
- <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="minCancel" @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="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" />
- <el-table-column label="序号" align="center" type="index" width="50px">
- <template slot-scope="scope">
- <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
- </template>
- </el-table-column>
- <el-table-column label="饲料名称" min-width="130px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fname }}</span>
- </template>
- </el-table-column>
- <el-table-column label="饲料分类" min-width="130px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fclass }}</span>
- </template>
- </el-table-column>
- <el-table-column label="唯一编码" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.feedcode }}</span>
- </template>
- </el-table-column>
- <el-table-column label="饲料来源" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.source }}</span>
- </template>
- </el-table-column>
- <el-table-column label="计划类型" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.printgroup }}</span>
- </template>
- </el-table-column>
- <el-table-column label="允许误差数(kg)" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.allowratio }}</span>
- </template>
- </el-table-column>
- <el-table-column label="包装单位重量(kg)" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.unitweight }}</span>
- </template>
- </el-table-column>
- <el-table-column label="单价" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.uprice }}</span>
- </template>
- </el-table-column>
- <el-table-column label="跳转重量域(kg)" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.autozone }}</span>
- </template>
- </el-table-column>
- <el-table-column label="跳转延时" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.autosecondname }}</span>
- </template>
- </el-table-column>
- <el-table-column label="确认开始" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.confirmstartname }}</span>
- </template>
- </el-table-column>
- <el-table-column label="继电器位置" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.trgaddress }}</span>
- </template>
- </el-table-column>
- <el-table-column label="备用字段01" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.backup1 }}</span>
- </template>
- </el-table-column>
- <el-table-column label="备用字段02" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.backup2 }}</span>
- </template>
- </el-table-column>
- <el-table-column label="备用字段03" min-width="110px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.backup3 }}</span>
- </template>
- </el-table-column>
- <el-table-column label="是否启用" min-width="110px" align="center">
- <template slot-scope="scope">
- <el-switch v-model="scope.row.enable" disabled active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" />
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="320" class-name="small-padding fixed-width" fixed="right">
- <template slot-scope="{row}">
- <el-button class="miniSuccess" @click="handleNutritive (row)">营养价值</el-button>
- <el-button v-if="isRoleEdit" class="miniSuccess" @click="handleRelation(row)">关联</el-button>
- <el-button v-if="isRoleEdit" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
- <el-button v-if="isRoleEdit" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
- </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 :title="textMap[create.dialogStatus]" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="90%">
- <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-20之间的整数" 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-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; ">关闭</el-button>
- <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="success" :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">确认</el-button>
- </div>
- </div>
- </el-dialog>
- <!-- 饲料库 -->
- <el-dialog :title="textMap[feedBank.dialogStatus]" :visible.sync="feedBank.dialogFormVisible" :close-on-click-modal="false" width="90%">
- <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="90" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.sources }}</span>
- </template>
- </el-table-column>
- <el-table-column label="中国饲料号" min-width="100px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.feedcode }}</span>
- </template>
- </el-table-column>
- <el-table-column label="饲料名称" min-width="90px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fname }}</span>
- </template>
- </el-table-column>
- <el-table-column label="价格" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.price }}</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="干物质(DM%)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.dry }}</span>
- </template>
- </el-table-column>
- <el-table-column label="淀粉(%DM)" min-width="70px" 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="80px" 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="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.n }}</span>
- </template>
- </el-table-column>
- <el-table-column label="脂肪(%DM)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fat }}</span>
- </template>
- </el-table-column>
- <el-table-column label="ADF(%DM)" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.adf }}</span>
- </template>
- </el-table-column>
- <el-table-column label="NDF(%DM)" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ndf }}</span>
- </template>
- </el-table-column>
- <el-table-column label="NDIP%" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ndip }}</span>
- </template>
- </el-table-column>
- <el-table-column label="粗灰分(Ash%)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ash }}</span>
- </template>
- </el-table-column>
- <el-table-column label="粗料" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.iscu }}</span>
- </template>
- </el-table-column>
- <el-table-column label="关联状态" min-width="70px" 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" @click="feedBank.dialogFormVisible = false; ">关闭</el-button>
- </div>
- </div>
- </el-dialog>
- <!-- 关联 -->
- <el-dialog :title="textMap[relation.dialogStatus]" :visible.sync="relation.dialogFormVisible" :close-on-click-modal="false" width="90%">
- <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="90" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.sources }}</span>
- </template>
- </el-table-column>
- <el-table-column label="中国饲料号" min-width="100px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.feedcode }}</span>
- </template>
- </el-table-column>
- <el-table-column label="饲料名称" min-width="90px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fname }}</span>
- </template>
- </el-table-column>
- <el-table-column label="价格" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.price }}</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="干物质(DM%)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.dry }}</span>
- </template>
- </el-table-column>
- <el-table-column label="淀粉(%DM)" min-width="70px" 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="80px" 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="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.n }}</span>
- </template>
- </el-table-column>
- <el-table-column label="脂肪(%DM)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.fat }}</span>
- </template>
- </el-table-column>
- <el-table-column label="ADF(%DM)" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.adf }}</span>
- </template>
- </el-table-column>
- <el-table-column label="NDF(%DM)" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ndf }}</span>
- </template>
- </el-table-column>
- <el-table-column label="NDIP%" min-width="80px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ndip }}</span>
- </template>
- </el-table-column>
- <el-table-column label="粗灰分(Ash%)" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.ash }}</span>
- </template>
- </el-table-column>
- <el-table-column label="粗料" min-width="70px" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.iscu }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" min-width="150px" align="center" class-name="small-padding fixed-width" fixed="right">
- <template slot-scope="{row}">
- <el-button v-if="row.statueRelation == '1'" class="miniSuccess" :disabled="isokDisable" @click="disassociateData(row)">取消关联</el-button>
- <el-button v-if="row.statueRelation == '0'" class="miniSuccess" :disabled="isokDisable" @click="relationData(row)">关联</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div slot="footer" class="dialog-footer">
- <el-button class="cancelClose" @click="relation.dialogFormVisible = false;getList() ">关闭</el-button>
- </div>
- </div>
- </el-dialog>
- <!-- 营养价值 -->
- <el-dialog :title="textMap[nutritive.dialogStatus]" :visible.sync="nutritive.dialogFormVisible" :close-on-click-modal="false" width="90%">
- <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" style="right:30px;position:absolute;bottom:5px">
- <el-button @click="nutritive.dialogFormVisible = false;getList()">关闭</el-button>
- <el-button v-if="nutritive.dialogStatus==='nutritive' && isRoleEdit" type="success" :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 {
- 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: ['计划类型'] }
- ],
- 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: [], // 计划类型
- table: {
- tableKey: 0,
- list: [],
- total: 0,
- listLoading: true,
- getdataListParm: {
- name: 'getFeedList',
- page: 1,
- offset: 1,
- pagecount: 10,
- 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: 50 + 'px', height: 45 + 'px' },
- cellStyle: { padding: 0 + 'px' }
- }
- },
- mounted() {
- document.addEventListener('click', (e) => {
- if (this.$refs.selectInput !== undefined) {
- if (!this.$refs.selectInput.contains(e.target)) {
- this.arrowDown = true
- this.arrowUp = false
- } else {
- this.arrowDown = false
- this.arrowUp = true
- }
- }
- })
- },
- created() {
- this.getList()
- this.getDownList()
- this.getButtons()
- },
- methods: {
- getButtons() {
- const Edit = 'FeedTable'
- const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
- this.isRoleEdit = isRoleEdit
- },
- getDownList() {
- GetDataByNames(this.requestParams).then(response => {
- this.jumpDelayList = response.data.getDictByName.list
- this.feedTypeList = response.data.getFeedclassByBig.list
- this.planTypeList = response.data.getDictByName2.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: '' }
- },
- // 计划类型
- changePlanList(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
- },
- // 新增
- handleCreate() {
- console.log('点击了新增')
- this.resetTemp()
- 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]|(20)))$/
- if (!autozone.test(parseFloat(this.create.temp.autozone))) {
- this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于20的整数', 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 pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
- if (pattern.test(this.create.temp.fname)) {
- this.$message({ type: 'error', message: '饲料名称不可输入特殊字符', 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 {
- failproccess(response, this.$notify)
- 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('点击了编辑')
- this.create.dialogStatus = 'update'
- 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)
- 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 = '' }
- },
- 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]|(20)))$/
- if (!autozone.test(parseFloat(this.create.temp.autozone))) {
- this.$message({ type: 'error', message: '跳转重量域请输入大于等于0小于等于20的整数', 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 pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
- if (pattern.test(this.create.temp.fname)) {
- this.$message({ type: 'error', message: '饲料名称不可输入特殊字符', 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 {
- failproccess(response, this.$notify)
- 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.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.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 {
- failproccess(response, this.$notify)
- }
- })
- }).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 {
- failproccess(response, this.$notify)
- }
- })
- }).catch(() => {
- this.$message({ type: 'info', message: '已取消' })
- })
- },
- // 营养价值
- handleNutritive(row) {
- console.log('点击了营养价值', row)
- 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 {
- failproccess(response, this.$notify)
- }
- })
- },
- // 行内删除
- handleRowDelete(row) {
- console.log('点击了行内删除')
- MessageBox.confirm('是否确认删除此信息?', {
- confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
- }).then(() => {
- this.selectList = []
- this.requestParam.name = 'deleteFeed'
- this.requestParam.parammaps = {}
- this.requestParam.parammaps.pastureid = row.pastureid
- this.requestParam.parammaps.id = row.id
- PostDataByName(this.requestParam).then(() => {
- 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(() => {
- console.log(this.selectList)
- this.requestParam.common = { 'returnmap': '0' }
- this.requestParam.data = []
- this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
- this.requestParam.data[0].children = []
- this.requestParam.data[0].children[0] = { 'name': '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>
|