|
@@ -1,31 +1,17 @@
|
|
|
<template>
|
|
|
<!-- 静态 企业采购-->
|
|
|
<div class="firmBuy">
|
|
|
+ <h2 style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd">企业采购</h2>
|
|
|
<header id="header">
|
|
|
- <el-row type="flex">
|
|
|
- <el-col :span="4">
|
|
|
- <el-select v-model="value" placeholder="请选择">
|
|
|
- <el-option label="1区" value="11"></el-option>
|
|
|
- <el-option label="2区" value="22"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-col>
|
|
|
- <el-col :span="4">
|
|
|
- <el-select v-model="value" placeholder="请选择">
|
|
|
- <el-option label="1舍" value="13"></el-option>
|
|
|
- <el-option label="2舍" value="24"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-col>
|
|
|
+ <el-row type="flex" :gutter="20">
|
|
|
<el-col :span="4">
|
|
|
- <el-select v-model="value" placeholder="请选择">
|
|
|
- <el-option label="可用" value="15"></el-option>
|
|
|
- <el-option label="可用" value="26"></el-option>
|
|
|
- </el-select>
|
|
|
+ <el-input v-model="search" placeholder="请选择"></el-input>
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
<el-button type="primary">查找</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
- <el-button type="primary">新增</el-button>
|
|
|
+ <el-button type="primary" @click="add">新增</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</header>
|
|
@@ -36,15 +22,13 @@
|
|
|
:data="tableData"
|
|
|
tooltip-effect="dark"
|
|
|
style="width: 100%"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55"></el-table-column>
|
|
|
- <el-table-column prop="id" label="羊只编号" width="180"></el-table-column>
|
|
|
- <el-table-column prop="date" label="收购时间" width="180"></el-table-column>
|
|
|
- <el-table-column prop="area" label="来源牧场" ></el-table-column>
|
|
|
- <el-table-column prop="buyWeight" label="收购重量"></el-table-column>
|
|
|
- <el-table-column prop="buyPeople" label="收购人员"></el-table-column>
|
|
|
- <el-table-column prop="transportCar" label="运输车辆"></el-table-column>
|
|
|
+ <el-table-column prop="sheepId" label="羊耳标号" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="acquisitionTime" label="收购时间" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="origin" label="来源牧场"></el-table-column>
|
|
|
+ <el-table-column prop="acquisitionWeight" label="收购重量(kg)"></el-table-column>
|
|
|
+ <el-table-column prop="acquisitionPerson" label="收购人员"></el-table-column>
|
|
|
+ <el-table-column prop="transportVehicles" label="运输车辆"></el-table-column>
|
|
|
<!-- <el-table-column label="操作" width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button @click="edit(scope.row)" type="text" size="small">编辑</el-button>
|
|
@@ -52,13 +36,8 @@
|
|
|
<el-button slot="reference" type="text" size="small">删除</el-button>
|
|
|
</el-popconfirm>
|
|
|
</template>
|
|
|
- </el-table-column> -->
|
|
|
+ </el-table-column>-->
|
|
|
</el-table>
|
|
|
- <div style="margin-top: 20px">
|
|
|
- <el-button @click="toggleSelection([tableData[1], tableData[2]])">切换第二、第三行的选中状态</el-button>
|
|
|
- <el-button @click="toggleSelection()">取消选择</el-button>
|
|
|
- <el-button @click="inStore">入待宰栏</el-button>
|
|
|
- </div>
|
|
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
<el-col :span="8" class="pagination">
|
|
@@ -66,95 +45,131 @@
|
|
|
@current-change="pageChange"
|
|
|
background
|
|
|
layout="prev, pager, next"
|
|
|
- :page-count="10"
|
|
|
+ :page-count="Number(totalPages)"
|
|
|
></el-pagination>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</article>
|
|
|
</section>
|
|
|
+
|
|
|
+ <el-dialog title="新增种羊档案" :visible.sync="isShow" width="40%">
|
|
|
+ <el-row type="flex">
|
|
|
+ <el-col :span="20">
|
|
|
+ <el-form ref="addFirmBuy" :model="formData" :rules="rules" label-width="140px">
|
|
|
+ <el-form-item label="羊耳标号">
|
|
|
+ <el-input v-model="formData.sheepId"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="来源牧场">
|
|
|
+ <el-input v-model="formData.origin"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="收购日期">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="formData.acquisitionTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择日期"
|
|
|
+ ></el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="收购人">
|
|
|
+ <el-input v-model="formData.acquisitionPerson"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="羊只重量(kg)">
|
|
|
+ <el-input v-model="formData.acquisitionWeight"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="车牌号">
|
|
|
+ <el-input v-model="formData.transportVehicles"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button @click="isShow=false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm('addFirmBuy')">保 存</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import {
|
|
|
+ reqFirmBuyList,
|
|
|
+ reqAddFirmBuy,
|
|
|
+ reqUpdateFirmBuy
|
|
|
+} from "@/api/slaughterManagment.js";
|
|
|
|
|
|
-const pageSize = 10
|
|
|
-const tableData = [
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "49kg",
|
|
|
- buyPeople: "张小刚",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "43kg",
|
|
|
- buyPeople: "李小红",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "48kg",
|
|
|
- buyPeople: "王小明",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "51kg",
|
|
|
- buyPeople: "周小伟",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "48kg",
|
|
|
- buyPeople: "李小红",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
- {
|
|
|
- id: "825",
|
|
|
- date: "2020-05-02",
|
|
|
- area: "哈斯牧场",
|
|
|
- buyWeight: "49kg",
|
|
|
- buyPeople: "李小红",
|
|
|
- transportCar: "浙A45154"
|
|
|
- },
|
|
|
-
|
|
|
- ]
|
|
|
+const pageSize = 10;
|
|
|
+const rules = {};
|
|
|
|
|
|
export default {
|
|
|
+ name: "firmBuy",
|
|
|
data() {
|
|
|
return {
|
|
|
- value: "",
|
|
|
- multipleSelection: [],
|
|
|
+ search: "",
|
|
|
page: 1,
|
|
|
- tableData
|
|
|
+ tableData: [],
|
|
|
+ totalPages: 0,
|
|
|
+ isShow: false,
|
|
|
+ formData: {
|
|
|
+ sheepId: "1008",
|
|
|
+ origin: "xx牧场",
|
|
|
+ acquisitionTime: new Date().toLocaleDateString(),
|
|
|
+ acquisitionPerson: "王炸",
|
|
|
+ acquisitionWeight: "51",
|
|
|
+ transportVehicles: "浙A 1380"
|
|
|
+ },
|
|
|
+ rules
|
|
|
};
|
|
|
},
|
|
|
- created() {},
|
|
|
+ created() {
|
|
|
+ // 企业采购列表
|
|
|
+ this.getfirmBuyList();
|
|
|
+ },
|
|
|
methods: {
|
|
|
- toggleSelection(rows) {
|
|
|
- if (rows) {
|
|
|
- rows.forEach(row => {
|
|
|
- this.$refs.multipleTable.toggleRowSelection(row);
|
|
|
+ submitForm(formName) {
|
|
|
+ this.$refs[formName].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ reqAddFirmBuy(this.formData)
|
|
|
+ .then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.$message.success('添加成功!')
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ console.log(err);
|
|
|
+ this.$message.error('添加失败!')
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 企业采购列表
|
|
|
+ getfirmBuyList() {
|
|
|
+ reqFirmBuyList({
|
|
|
+ searchStr: this.search,
|
|
|
+ pageSize,
|
|
|
+ pageNum: this.page
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.tableData = res.content;
|
|
|
+ this.totalPages = res.totalPages;
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ console.log(err);
|
|
|
});
|
|
|
- } else {
|
|
|
- this.$refs.multipleTable.clearSelection();
|
|
|
- }
|
|
|
},
|
|
|
- // 入待宰栏
|
|
|
- inStore() {},
|
|
|
handleSelectionChange(val) {
|
|
|
this.multipleSelection = val;
|
|
|
},
|
|
|
+ add() {
|
|
|
+ this.isShow = true;
|
|
|
+ },
|
|
|
edit(row) {},
|
|
|
del(row) {},
|
|
|
pageChange(p) {
|