Commit 9d32fa8b authored by dragondean@qq.com's avatar dragondean@qq.com
parents f6f2b0eb d1544a8b
...@@ -285,8 +285,10 @@ export default { ...@@ -285,8 +285,10 @@ export default {
box-shadow: #8f8f8f 7px 5px 14px 0; box-shadow: #8f8f8f 7px 5px 14px 0;
} }
.warehouse-block-active{ .warehouse-block-active{
box-shadow: #7e9dbd 7px 5px 14px 0; box-shadow: #b1a4cb 7px 5px 14px 0;
transform: scale(1.04); transform: scale(1.04);
background-color: #9ab7e1;
color: #ffffff;
} }
.warehouse-block-selected{ .warehouse-block-selected{
color: #ffffff; color: #ffffff;
......
...@@ -257,8 +257,10 @@ export default { ...@@ -257,8 +257,10 @@ export default {
box-shadow: #8f8f8f 7px 5px 14px 0; box-shadow: #8f8f8f 7px 5px 14px 0;
} }
.warehouse-block-active{ .warehouse-block-active{
box-shadow: #7e9dbd 7px 5px 14px 0; box-shadow: #b1a4cb 7px 5px 14px 0;
transform: scale(1.04); transform: scale(1.04);
background-color: #9ab7e1;
color: #ffffff;
} }
.warehouse-block-selected{ .warehouse-block-selected{
color: #ffffff; color: #ffffff;
......
...@@ -421,7 +421,7 @@ export default { ...@@ -421,7 +421,7 @@ export default {
opened: false, opened: false,
brandList: [], brandList: [],
form: { form: {
// "brand": "0", "brand": "",
// "brandType": 0, // "brandType": 0,
// "inTime": "", // "inTime": "",
// "material": "", // "material": "",
...@@ -487,7 +487,7 @@ export default { ...@@ -487,7 +487,7 @@ export default {
opened(val) { opened(val) {
if (val) { if (val) {
this.form.material = this.warehousing.material this.form.material = this.warehousing.material
this.form.brand = this.warehousing.brand this.form.brand = this.warehousing.brand.toString()
this.handleBrandChange(this.form.brand) this.handleBrandChange(this.form.brand)
} else { } else {
this.$emit('update:visible', false) this.$emit('update:visible', false)
...@@ -605,7 +605,7 @@ export default { ...@@ -605,7 +605,7 @@ export default {
// 首次入仓 // 首次入仓
return orderWarehouseIn({ return orderWarehouseIn({
...this.form, ...this.form,
brandType: this.form.brand ? 1 : 0, brandType: (this.form.brand && this.form.brand !== '0') ? 1 : 0,
orderId: this.warehousing.orderId, orderId: this.warehousing.orderId,
orderItemId: this.warehousing.orderItemId, orderItemId: this.warehousing.orderItemId,
orderNo: this.warehousing.orderNo, orderNo: this.warehousing.orderNo,
......
...@@ -252,7 +252,7 @@ export default { ...@@ -252,7 +252,7 @@ export default {
"customerContactsId": 0, "customerContactsId": 0,
"customerId": 0, "customerId": 0,
"endTime": "", "endTime": "",
"feeScale": 0, "feeScale": '0',
"fileUrl": "", "fileUrl": "",
"productBrandId": null, "productBrandId": null,
"startTime": "", "startTime": "",
......
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