Compare commits

5 Commits

Author SHA1 Message Date
xiaozhiyong
dee424a813 更新 2023-03-17 15:54:58 +08:00
xiaozhiyong
7f0a560637 更新 2023-03-17 15:31:19 +08:00
xiaozhiyong
1973d1f0ac Merge 2023-03-17 15:06:53 +08:00
xiaozhiyong
778f1626f5 更新 2023-03-17 15:05:10 +08:00
f9ea54767b Merge pull request 'bug修复' (#5) from caolc into master
Reviewed-on: #5
2023-03-16 05:59:19 +00:00
3 changed files with 84 additions and 103 deletions

View File

@@ -1,4 +1,4 @@
ENV = 'development'
VUE_APP_BASE_API = '/api'
VUE_APP_ENV = 'production'
VUE_APP_ENV = 'development'

View File

@@ -10,7 +10,14 @@
<div class="create" v-if="controlWindows.create">
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<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
v-for="(item, index) in customList"
:key="index"
@@ -32,17 +39,26 @@
<autocomplete :params="form" :config="configAutocomplete" />
</el-form-item>
<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
v-for="(item, index) in productTypeList"
:key="index"
:label="item.label"
:value="item.value"
:label="item"
:value="item"
></el-option>
</el-select>
</el-form-item>
<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
v-for="(item, index) in productNameList"
:key="index"
@@ -74,11 +90,7 @@
</el-form-item>
<el-form-item label="订单金额">
<el-input
maxlength="50"
v-model="form.preAmount"
disabled
></el-input>
<el-input maxlength="50" v-model="form.preAmount" disabled></el-input>
</el-form-item>
</el-form>
@@ -107,17 +119,23 @@ export default {
"form.salePrice": {
handler(n, o) {
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": {
handler(n, o) {
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() {
let validatorRefineryId = (rule, value, callback) => {
@@ -128,7 +146,7 @@ export default {
rowCreate: false,
customList: [],
form: {
preAmount:0
preAmount: 0,
},
productNameList: [],
refineryList: [],
@@ -136,7 +154,7 @@ export default {
configAutocomplete: {
serveTarget: serve.findByEntity,
autocompleteKey: {
key:"refineryName"
key: "refineryName",
},
labelKey: "refineryName",
valueKey: "id",
@@ -145,24 +163,7 @@ export default {
echoId: "",
echoName: "",
},
productTypeList: [
{
label: "0#柴",
value: "0#",
},
{
label: "-10#柴",
value: "-10#",
},
{
label: "92#汽",
value: "92#",
},
{
label: "95#汽",
value: "95#",
},
],
productTypeList: ["0#柴", "-10#柴", "92#汽", "95#汽"],
rules: {
customerId: [
{ required: true, message: "请输入客户名称", trigger: "blur" },
@@ -184,15 +185,13 @@ export default {
},
methods: {
productDataList(e) {
this.productRowData = this.productNameList.filter(
(item) => item.id == e
);
this.form.salePrice = this.productRowData[0].salePrice2company
this.form.floorPrice = this.productRowData[0].floorPrice
this.form.productMeasurement = this.productRowData[0].measurement
this.productRowData = this.productNameList.filter((item) => item.id == e);
this.form.salePrice = this.productRowData[0].salePrice2company;
this.form.floorPrice = this.productRowData[0].floorPrice;
this.form.productMeasurement = this.productRowData[0].measurement;
},
productChange() {
this.productData()
this.productData();
},
//搜索炼厂
refineryData(value) {
@@ -200,7 +199,7 @@ export default {
serve.findByEntity({ refineryName: value }).then((res) => {
this.refineryList = res.data;
});
this.productData()
this.productData();
}
},
//搜索产品
@@ -208,52 +207,51 @@ export default {
let data = {
refineryId: this.form.refineryId,
productType: this.form.productType,
enableMark:'ENABLE'
}
enableMark: "ENABLE",
};
serve.getRefineryProductList(data).then((res) => {
if (res.data.length > 0) {
this.productNameList = res.data;
} else {
this.productNameList = []
this.form.productId = ''
this.productNameList = [];
this.form.productId = "";
}
})
console.log(this.productRowData,'aaaaaaaaaa')
});
console.log(this.productRowData, "aaaaaaaaaa");
},
//搜索客户
customData(value) {
if (value) {
serve.getRefineryCompanyList({ name: value }).then((res) => {
this.customList = res.data;
this.form.customerId = this.$store.state.user.companyId
console.log(this.form.customerId,'ssssaaaaaaaaaaaaaaa')
this.form.customerId = this.$store.state.user.companyId;
console.log(this.form.customerId, "ssssaaaaaaaaaaaaaaa");
});
}
},
openDrawer() {
this.form = {}
this.form = {};
let { id } = this.controlWindows.addInfo;
if (id) {
//回显
this.form = JSON.parse(JSON.stringify(this.controlWindows.addInfo));
this.configAutocomplete.echoId = id;
this.configAutocomplete.echoName = this.form.refineryName;
this.form.salePrice = this.form.salePrice2company
this.form.productId = this.form.id
delete this.form.id
this.rowCreate = true
this.productChange()
this.customData(this.$store.state.user.userCompanyName)
this.form.salePrice = this.form.salePrice2company;
this.form.productId = this.form.id;
delete this.form.id;
this.rowCreate = true;
this.productChange();
this.customData(this.$store.state.user.userCompanyName);
console.log("this.form", this.$store.state.user, this.form);
} else {
this.rowCreate = false
this.rowCreate = false;
}
},
submit() {
this.$refs["form"].validate((valid) => {
if (valid) {
this.judgeInterface(this.form).then((res) => {
if (res.code === 20000) {
this.$message.success(res.msg);

View File

@@ -28,8 +28,8 @@
<el-option
v-for="(item, index) in productTypeList"
:key="index"
:label="item.label"
:value="item.value"
:label="item"
:value="item"
>
</el-option>
</el-select>
@@ -164,24 +164,7 @@ export default {
detail: false,
create: false,
},
productTypeList: [
{
label: "0#柴",
value: "0#",
},
{
label: "-10#柴",
value: "-10#",
},
{
label: "92#汽",
value: "92#",
},
{
label: "95#汽",
value: "95#",
},
],
productTypeList: ["0#柴", "-10#柴", "92#汽", "95#汽"],
configAutocomplete: {
serveTarget: serve.findByEntity,
autocompleteKey: "refineryName",
@@ -238,8 +221,8 @@ export default {
},
//table list
getByPage() {
let data = Object.assign(this.parameter,{enableMark: 'ENABLE'});
serve.getByPage(data).then((res) => {
this.parameter.params["enableMark"] = "ENABLE";
serve.getByPage(this.parameter).then((res) => {
this.tableData = res.data.list;
this.parameter.total = res.data.totalCount;
});