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

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

parent babb6f63
......@@ -5,6 +5,7 @@
:modal= false
width="80%"
center
append-to-body
>
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-row>
......
......@@ -10,7 +10,8 @@
size="mini"
@click="handleAdd"
v-hasPermi="['md:loss:add']"
>新增</el-button>
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
......@@ -21,7 +22,8 @@
:disabled="single"
@click="handleUpdate"
v-hasPermi="['md:loss:edit']"
>修改</el-button>
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
......@@ -32,22 +34,38 @@
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['md:loss:remove']"
>删除</el-button>
>删除</el-button
>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</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 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="segmentCount" />
<el-table-column label="最大loss数量" align="center" prop="maxLossCount" />
<el-table-column label="loss比率(单位%)" align="center" prop="lossRate" />
<el-table-column
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="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">
<el-button
size="mini"
......@@ -55,20 +73,22 @@
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['md:loss:edit']"
>修改</el-button>
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['md:loss:remove']"
>删除</el-button>
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
......@@ -78,20 +98,33 @@
<!-- 添加或修改产品loss配置对话框 -->
<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-item label="产品ID" prop="itemId">
<el-input v-model="form.itemId" placeholder="请输入产品ID" />
</el-form-item>-->
<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 label="分段数量" prop="segmentCount">
<el-input v-model="form.segmentCount" placeholder="请输入分段数量" />
</el-form-item>
<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 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 label="冗余量" prop="lossRedundance">
<el-input v-model="form.lossRedundance" placeholder="请输入冗余量" />
......@@ -109,10 +142,19 @@
</template>
<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 {
name: "Loss",
components: {
ClientSelect,
},
data() {
return {
// 遮罩层
......@@ -143,18 +185,17 @@ export default {
maxLossCount: null,
lossRate: null,
lossRedundance: null,
remark: null
remark: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
},
rules: {},
};
},
props: {
optType: undefined,
itemId: undefined
itemId: undefined,
},
created() {
this.getList();
......@@ -163,7 +204,7 @@ export default {
/** 查询产品loss配置列表 */
getList() {
this.loading = true;
listLoss(this.queryParams).then(response => {
listLoss(this.queryParams).then((response) => {
this.lossList = response.rows;
this.total = response.total;
this.loading = false;
......@@ -180,11 +221,12 @@ export default {
productLossId: null,
itemId: null,
customerId: null,
customerName: null,
segmentCount: null,
maxLossCount: null,
lossRate: null,
lossRedundance: null,
remark: null
remark: null,
};
this.resetForm("form");
},
......@@ -200,9 +242,9 @@ export default {
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.productLossId)
this.single = selection.length!==1
this.multiple = !selection.length
this.ids = selection.map((item) => item.productLossId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
......@@ -213,8 +255,8 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const productLossId = row.productLossId || this.ids
getLoss(productLossId).then(response => {
const productLossId = row.productLossId || this.ids;
getLoss(productLossId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改产品loss配置";
......@@ -222,17 +264,17 @@ export default {
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.productLossId != null) {
updateLoss(this.form).then(response => {
updateLoss(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
this.form.itemId = this.itemId
addLoss(this.form).then(response => {
this.form.itemId = this.itemId;
addLoss(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
......@@ -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) {
const productLossIds = row.productLossId || this.ids;
this.$modal.confirm('是否确认删除产品loss配置编号为"' + productLossIds + '"的数据项?').then(function() {
this.$modal
.confirm(
'是否确认删除产品loss配置编号为"' + productLossIds + '"的数据项?'
)
.then(function () {
return delLoss(productLossIds);
}).then(() => {
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('md/loss/export', {
...this.queryParams
}, `loss_${new Date().getTime()}.xlsx`)
}
}
this.download(
"md/loss/export",
{
...this.queryParams,
},
`loss_${new Date().getTime()}.xlsx`
);
},
},
};
</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