Commit abc49563 authored by 何远江's avatar 何远江

添加产品信息中客户loss,选择客户

parent babb6f63
...@@ -291,4 +291,4 @@ export default { ...@@ -291,4 +291,4 @@ export default {
}, },
}, },
}; };
</script> </script>
\ No newline at end of file
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
:modal= false :modal= false
width="80%" width="80%"
center center
append-to-body
> >
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-row> <el-row>
......
...@@ -10,7 +10,8 @@ ...@@ -10,7 +10,8 @@
size="mini" size="mini"
@click="handleAdd" @click="handleAdd"
v-hasPermi="['md:loss:add']" v-hasPermi="['md:loss:add']"
>新增</el-button> >新增</el-button
>
</el-col> </el-col>
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button
...@@ -21,7 +22,8 @@ ...@@ -21,7 +22,8 @@
:disabled="single" :disabled="single"
@click="handleUpdate" @click="handleUpdate"
v-hasPermi="['md:loss:edit']" v-hasPermi="['md:loss:edit']"
>修改</el-button> >修改</el-button
>
</el-col> </el-col>
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button
...@@ -32,22 +34,38 @@ ...@@ -32,22 +34,38 @@
:disabled="multiple" :disabled="multiple"
@click="handleDelete" @click="handleDelete"
v-hasPermi="['md:loss:remove']" v-hasPermi="['md:loss:remove']"
>删除</el-button> >删除</el-button
>
</el-col> </el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row> </el-row>
<el-table v-loading="loading" :data="lossList" @selection-change="handleSelectionChange"> <ClientSelect ref="ClientSelectRef" @onSelected="onClientSelect" />
<el-table
v-loading="loading"
:data="lossList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="产品lossID" align="center" prop="productLossId" />
<el-table-column label="产品ID" align="center" prop="itemId" />-->
<el-table-column label="客户名称" align="center" prop="customerName" /> <el-table-column label="客户名称" align="center" prop="customerName" />
<el-table-column label="分段数量" align="center" prop="segmentCount" /> <el-table-column label="分段数量" align="center" prop="segmentCount" />
<el-table-column label="最大loss数量" align="center" prop="maxLossCount" /> <el-table-column
<el-table-column label="loss比率(单位%)" align="center" prop="lossRate" /> label="最大loss数量"
align="center"
prop="maxLossCount"
/>
<el-table-column label="loss比率(单位%)" width="140" align="center" prop="lossRate" />
<el-table-column label="冗余量" align="center" prop="lossRedundance" /> <el-table-column label="冗余量" align="center" prop="lossRedundance" />
<el-table-column label="备注信息" align="center" prop="remark" /> <el-table-column label="备注信息" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"
...@@ -55,20 +73,22 @@ ...@@ -55,20 +73,22 @@
icon="el-icon-edit" icon="el-icon-edit"
@click="handleUpdate(scope.row)" @click="handleUpdate(scope.row)"
v-hasPermi="['md:loss:edit']" v-hasPermi="['md:loss:edit']"
>修改</el-button> >修改</el-button
>
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
v-hasPermi="['md:loss:remove']" v-hasPermi="['md:loss:remove']"
>删除</el-button> >删除</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<pagination <pagination
v-show="total>0" v-show="total > 0"
:total="total" :total="total"
:page.sync="queryParams.pageNum" :page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
...@@ -78,20 +98,33 @@ ...@@ -78,20 +98,33 @@
<!-- 添加或修改产品loss配置对话框 --> <!-- 添加或修改产品loss配置对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> <el-form ref="form" :model="form" :rules="rules" label-width="80px">
<!-- <el-form-item label="产品ID" prop="itemId">
<el-input v-model="form.itemId" placeholder="请输入产品ID" />
</el-form-item>-->
<el-form-item label="客户名称" prop="customerName"> <el-form-item label="客户名称" prop="customerName">
<el-input v-model="form.customerName" placeholder="请输入客户名称" /> <el-input
v-model="form.customerName"
placeholder="请选择客户"
disabled
>
<el-button
slot="append"
icon="el-icon-search"
@click="openClientSelect"
></el-button>
</el-input>
</el-form-item> </el-form-item>
<el-form-item label="分段数量" prop="segmentCount"> <el-form-item label="分段数量" prop="segmentCount">
<el-input v-model="form.segmentCount" placeholder="请输入分段数量" /> <el-input v-model="form.segmentCount" placeholder="请输入分段数量" />
</el-form-item> </el-form-item>
<el-form-item label="最大loss数量" prop="maxLossCount"> <el-form-item label="最大loss数量" prop="maxLossCount">
<el-input v-model="form.maxLossCount" placeholder="请输入最大loss数量" /> <el-input
v-model="form.maxLossCount"
placeholder="请输入最大loss数量"
/>
</el-form-item> </el-form-item>
<el-form-item label="loss比率(单位%)" prop="lossRate"> <el-form-item label="loss比率(单位%)" prop="lossRate">
<el-input v-model="form.lossRate" placeholder="请输入loss比率(单位%)" /> <el-input
v-model="form.lossRate"
placeholder="请输入loss比率(单位%)"
/>
</el-form-item> </el-form-item>
<el-form-item label="冗余量" prop="lossRedundance"> <el-form-item label="冗余量" prop="lossRedundance">
<el-input v-model="form.lossRedundance" placeholder="请输入冗余量" /> <el-input v-model="form.lossRedundance" placeholder="请输入冗余量" />
...@@ -109,10 +142,19 @@ ...@@ -109,10 +142,19 @@
</template> </template>
<script> <script>
import { listLoss, getLoss, delLoss, addLoss, updateLoss } from "@/api/mes/md/productLoss"; import {
listLoss,
getLoss,
delLoss,
addLoss,
updateLoss,
} from "@/api/mes/md/productLoss";
import ClientSelect from "@/components/clientSelect/single.vue";
export default { export default {
name: "Loss", name: "Loss",
components: {
ClientSelect,
},
data() { data() {
return { return {
// 遮罩层 // 遮罩层
...@@ -143,18 +185,17 @@ export default { ...@@ -143,18 +185,17 @@ export default {
maxLossCount: null, maxLossCount: null,
lossRate: null, lossRate: null,
lossRedundance: null, lossRedundance: null,
remark: null remark: null,
}, },
// 表单参数 // 表单参数
form: {}, form: {},
// 表单校验 // 表单校验
rules: { rules: {},
},
}; };
}, },
props: { props: {
optType: undefined, optType: undefined,
itemId: undefined itemId: undefined,
}, },
created() { created() {
this.getList(); this.getList();
...@@ -163,7 +204,7 @@ export default { ...@@ -163,7 +204,7 @@ export default {
/** 查询产品loss配置列表 */ /** 查询产品loss配置列表 */
getList() { getList() {
this.loading = true; this.loading = true;
listLoss(this.queryParams).then(response => { listLoss(this.queryParams).then((response) => {
this.lossList = response.rows; this.lossList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
...@@ -180,11 +221,12 @@ export default { ...@@ -180,11 +221,12 @@ export default {
productLossId: null, productLossId: null,
itemId: null, itemId: null,
customerId: null, customerId: null,
customerName: null,
segmentCount: null, segmentCount: null,
maxLossCount: null, maxLossCount: null,
lossRate: null, lossRate: null,
lossRedundance: null, lossRedundance: null,
remark: null remark: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
...@@ -200,9 +242,9 @@ export default { ...@@ -200,9 +242,9 @@ export default {
}, },
// 多选框选中数据 // 多选框选中数据
handleSelectionChange(selection) { handleSelectionChange(selection) {
this.ids = selection.map(item => item.productLossId) this.ids = selection.map((item) => item.productLossId);
this.single = selection.length!==1 this.single = selection.length !== 1;
this.multiple = !selection.length this.multiple = !selection.length;
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
...@@ -213,8 +255,8 @@ export default { ...@@ -213,8 +255,8 @@ export default {
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
const productLossId = row.productLossId || this.ids const productLossId = row.productLossId || this.ids;
getLoss(productLossId).then(response => { getLoss(productLossId).then((response) => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = "修改产品loss配置"; this.title = "修改产品loss配置";
...@@ -222,17 +264,17 @@ export default { ...@@ -222,17 +264,17 @@ export default {
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
this.$refs["form"].validate(valid => { this.$refs["form"].validate((valid) => {
if (valid) { if (valid) {
if (this.form.productLossId != null) { if (this.form.productLossId != null) {
updateLoss(this.form).then(response => { updateLoss(this.form).then((response) => {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} else { } else {
this.form.itemId = this.itemId this.form.itemId = this.itemId;
addLoss(this.form).then(response => { addLoss(this.form).then((response) => {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.getList(); this.getList();
...@@ -241,22 +283,42 @@ export default { ...@@ -241,22 +283,42 @@ export default {
} }
}); });
}, },
onClientSelect(row) {
if (row != undefined && row != null) {
this.form.customerId = row.clientId;
this.form.customerName = row.clientName;
}
},
openClientSelect() {
this.$refs["ClientSelectRef"].showFlag = true;
},
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const productLossIds = row.productLossId || this.ids; const productLossIds = row.productLossId || this.ids;
this.$modal.confirm('是否确认删除产品loss配置编号为"' + productLossIds + '"的数据项?').then(function() { this.$modal
return delLoss(productLossIds); .confirm(
}).then(() => { '是否确认删除产品loss配置编号为"' + productLossIds + '"的数据项?'
this.getList(); )
this.$modal.msgSuccess("删除成功"); .then(function () {
}).catch(() => {}); return delLoss(productLossIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {
this.download('md/loss/export', { this.download(
...this.queryParams "md/loss/export",
}, `loss_${new Date().getTime()}.xlsx`) {
} ...this.queryParams,
} },
`loss_${new Date().getTime()}.xlsx`
);
},
},
}; };
</script> </script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment