master
xiaozhiyong 2 years ago
parent 7f0a560637
commit dee424a813
  1. 154
      src/views/product/components/create.vue
  2. 23
      src/views/product/index.vue

@ -10,7 +10,14 @@
<div class="create" v-if="controlWindows.create"> <div class="create" v-if="controlWindows.create">
<el-form ref="form" :model="form" :rules="rules" label-width="100px"> <el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="客户名称" prop="customerId"> <el-form-item label="客户名称" prop="customerId">
<el-select v-model="form.customerId" reserve-keyword remote :remote-method="customData" filterable placeholder="请选择客户"> <el-select
v-model="form.customerId"
reserve-keyword
remote
:remote-method="customData"
filterable
placeholder="请选择客户"
>
<el-option <el-option
v-for="(item, index) in customList" v-for="(item, index) in customList"
:key="index" :key="index"
@ -32,17 +39,26 @@
<autocomplete :params="form" :config="configAutocomplete" /> <autocomplete :params="form" :config="configAutocomplete" />
</el-form-item> </el-form-item>
<el-form-item label="产品类型" prop="productType"> <el-form-item label="产品类型" prop="productType">
<el-select v-model="form.productType" @change="productChange" placeholder="请选择产品类型"> <el-select
v-model="form.productType"
@change="productChange"
placeholder="请选择产品类型"
>
<el-option <el-option
v-for="(item, index) in productTypeList" v-for="(item, index) in productTypeList"
:key="index" :key="index"
:label="item.label" :label="item"
:value="item.value" :value="item"
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="产品名称" prop="productId"> <el-form-item label="产品名称" prop="productId">
<el-select :disabled="rowCreate" v-model="form.productId" @change="productDataList" placeholder="请选择产品类型"> <el-select
:disabled="rowCreate"
v-model="form.productId"
@change="productDataList"
placeholder="请选择产品类型"
>
<el-option <el-option
v-for="(item, index) in productNameList" v-for="(item, index) in productNameList"
:key="index" :key="index"
@ -74,11 +90,7 @@
</el-form-item> </el-form-item>
<el-form-item label="订单金额"> <el-form-item label="订单金额">
<el-input <el-input maxlength="50" v-model="form.preAmount" disabled></el-input>
maxlength="50"
v-model="form.preAmount"
disabled
></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -103,21 +115,27 @@ export default {
controlWindows: Object, controlWindows: Object,
// refineryTypeEnum: Array, // refineryTypeEnum: Array,
}, },
watch:{ watch: {
"form.salePrice": { "form.salePrice": {
handler(n, o) { handler(n, o) {
if(n){ if (n) {
this.form.preAmount = (this.form.salePrice*(this.form.preQuantity?this.form.preQuantity:0)).toFixed(2) this.form.preAmount = (
this.form.salePrice *
(this.form.preQuantity ? this.form.preQuantity : 0)
).toFixed(2);
} }
}, },
}, },
"form.preQuantity": { "form.preQuantity": {
handler(n, o) { handler(n, o) {
if(n){ if (n) {
this.form.preAmount = (this.form.preQuantity*(this.form.salePrice?this.form.salePrice:0)).toFixed(2) this.form.preAmount = (
this.form.preQuantity *
(this.form.salePrice ? this.form.salePrice : 0)
).toFixed(2);
} }
}, },
} },
}, },
data() { data() {
let validatorRefineryId = (rule, value, callback) => { let validatorRefineryId = (rule, value, callback) => {
@ -125,18 +143,18 @@ export default {
else callback("请选择炼厂"); else callback("请选择炼厂");
}; };
return { return {
rowCreate:false, rowCreate: false,
customList:[], customList: [],
form: { form: {
preAmount:0 preAmount: 0,
}, },
productNameList:[], productNameList: [],
refineryList: [], refineryList: [],
productRowData:{}, productRowData: {},
configAutocomplete: { configAutocomplete: {
serveTarget: serve.findByEntity, serveTarget: serve.findByEntity,
autocompleteKey: { autocompleteKey: {
key:"refineryName" key: "refineryName",
}, },
labelKey: "refineryName", labelKey: "refineryName",
valueKey: "id", valueKey: "id",
@ -145,24 +163,7 @@ export default {
echoId: "", echoId: "",
echoName: "", echoName: "",
}, },
productTypeList: [ productTypeList: ["0#柴", "-10#柴", "92#汽", "95#汽"],
{
label: "0#柴",
value: "0#",
},
{
label: "-10#柴",
value: "-10#",
},
{
label: "92#汽",
value: "92#",
},
{
label: "95#汽",
value: "95#",
},
],
rules: { rules: {
customerId: [ customerId: [
{ required: true, message: "请输入客户名称", trigger: "blur" }, { required: true, message: "请输入客户名称", trigger: "blur" },
@ -183,77 +184,74 @@ export default {
}; };
}, },
methods: { methods: {
productDataList(e){ productDataList(e) {
this.productRowData = this.productNameList.filter( this.productRowData = this.productNameList.filter((item) => item.id == e);
(item) => item.id == e this.form.salePrice = this.productRowData[0].salePrice2company;
); this.form.floorPrice = this.productRowData[0].floorPrice;
this.form.salePrice = this.productRowData[0].salePrice2company this.form.productMeasurement = this.productRowData[0].measurement;
this.form.floorPrice = this.productRowData[0].floorPrice
this.form.productMeasurement = this.productRowData[0].measurement
}, },
productChange(){ productChange() {
this.productData() this.productData();
}, },
// //
refineryData(value){ refineryData(value) {
if (value) { if (value) {
serve.findByEntity({refineryName:value}).then((res) => { serve.findByEntity({ refineryName: value }).then((res) => {
this.refineryList = res.data; this.refineryList = res.data;
}); });
this.productData() this.productData();
} }
}, },
// //
productData(){ productData() {
let data = { let data = {
refineryId:this.form.refineryId, refineryId: this.form.refineryId,
productType:this.form.productType, productType: this.form.productType,
enableMark:'ENABLE' enableMark: "ENABLE",
} };
serve.getRefineryProductList(data).then((res) => { serve.getRefineryProductList(data).then((res) => {
if(res.data.length>0){ if (res.data.length > 0) {
this.productNameList = res.data; this.productNameList = res.data;
}else{ } else {
this.productNameList = [] this.productNameList = [];
this.form.productId = '' this.form.productId = "";
} }
}) });
console.log(this.productRowData,'aaaaaaaaaa') console.log(this.productRowData, "aaaaaaaaaa");
}, },
// //
customData(value){ customData(value) {
if (value) { if (value) {
serve.getRefineryCompanyList({name:value}).then((res) => { serve.getRefineryCompanyList({ name: value }).then((res) => {
this.customList = res.data; this.customList = res.data;
this.form.customerId = this.$store.state.user.companyId this.form.customerId = this.$store.state.user.companyId;
console.log(this.form.customerId,'ssssaaaaaaaaaaaaaaa') console.log(this.form.customerId, "ssssaaaaaaaaaaaaaaa");
}); });
} }
}, },
openDrawer() { openDrawer() {
this.form = {} this.form = {};
let { id } = this.controlWindows.addInfo; let { id } = this.controlWindows.addInfo;
if (id) { if (id) {
// //
this.form = JSON.parse(JSON.stringify(this.controlWindows.addInfo)); this.form = JSON.parse(JSON.stringify(this.controlWindows.addInfo));
this.configAutocomplete.echoId = id; this.configAutocomplete.echoId = id;
this.configAutocomplete.echoName = this.form.refineryName; this.configAutocomplete.echoName = this.form.refineryName;
this.form.salePrice = this.form.salePrice2company this.form.salePrice = this.form.salePrice2company;
this.form.productId = this.form.id this.form.productId = this.form.id;
delete this.form.id delete this.form.id;
this.rowCreate = true this.rowCreate = true;
this.productChange() this.productChange();
this.customData(this.$store.state.user.userCompanyName) this.customData(this.$store.state.user.userCompanyName);
console.log("this.form", this.$store.state.user,this.form); console.log("this.form", this.$store.state.user, this.form);
}else{ } else {
this.rowCreate = false this.rowCreate = false;
} }
}, },
submit() { submit() {
this.$refs["form"].validate((valid) => { this.$refs["form"].validate((valid) => {
if (valid) { if (valid) {
this.judgeInterface(this.form).then((res) => { this.judgeInterface(this.form).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.$message.success(res.msg); this.$message.success(res.msg);

@ -28,8 +28,8 @@
<el-option <el-option
v-for="(item, index) in productTypeList" v-for="(item, index) in productTypeList"
:key="index" :key="index"
:label="item.label" :label="item"
:value="item.value" :value="item"
> >
</el-option> </el-option>
</el-select> </el-select>
@ -164,24 +164,7 @@ export default {
detail: false, detail: false,
create: false, create: false,
}, },
productTypeList: [ productTypeList: ["0#柴", "-10#柴", "92#汽", "95#汽"],
{
label: "0#柴",
value: "0#",
},
{
label: "-10#柴",
value: "-10#",
},
{
label: "92#汽",
value: "92#",
},
{
label: "95#汽",
value: "95#",
},
],
configAutocomplete: { configAutocomplete: {
serveTarget: serve.findByEntity, serveTarget: serve.findByEntity,
autocompleteKey: "refineryName", autocompleteKey: "refineryName",

Loading…
Cancel
Save