Browse Source

仓库增加租赁类型

test
kilo 2 years ago
parent
commit
dbb5a82402
  1. 133
      src/option/basicdata/basicdataWarehouse.js
  2. 34
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

133
src/option/basicdata/basicdataWarehouse.js

@ -217,16 +217,14 @@ export default {
}, },
{ // {
label: "配送商场", // label: "配送商场",
prop: "distributionMall", // prop: "distributionMall",
type: "input", // type: "input",
span:12, // span:12,
labelWidth:'120', // labelWidth:'120',
width:'100' // width:'100'
// },
},
{ {
label: "事业线", label: "事业线",
prop: "businessLine", prop: "businessLine",
@ -394,21 +392,20 @@ export default {
}, },
{ // {
label: "商家仓", // label: "商家仓",
prop: "merchantFactory", // prop: "merchantFactory",
type: "select", // type: "select",
dicUrl: "/api/blade-system/dict-biz/dictionary?code=yes_no", // dicUrl: "/api/blade-system/dict-biz/dictionary?code=yes_no",
props: { // props: {
label: "dictValue", // label: "dictValue",
value: "dictKey" // value: "dictKey"
}, // },
span:12, // span:12,
labelWidth:'120', // labelWidth:'120',
width:'90' // width:'90'
//
// },
},
{ {
label: "仓库结构", label: "仓库结构",
prop: "warehouseStructure", prop: "warehouseStructure",
@ -489,18 +486,66 @@ export default {
span:12, span:12,
labelWidth:'120', labelWidth:'120',
width:'70' width:'70'
}, },
{ {
label: "单价", label: "租金单价",
prop: "unitPrice", prop: "unitPrice",
type: "input", type: "input",
span:12, span:12,
labelWidth:'120', labelWidth:'120',
width:'70' width:'70'
},
{
label: "日期范围",
prop: "daterange",
type: "daterange",
format:'YYYY-MM-DD',
valueFormat:'YYYY-MM-DD',
startPlaceholder: '租赁开始日期',
endPlaceholder: '租赁结束日期',
span:12,
labelWidth:'120',
width:'120',
search: true,
searchRange: true,
searchSpan: 12,
rules:[{
required: true,
message: "请选择租赁时间",
trigger: "change"
}],
viewDisplay: false,
addDisplay: true,
editDisplay: true,
hide: true,
},
{ label: "开始时间",
prop: "startDate",
type: "date",
format:'YYYY-MM-DD',
valueFormat:'YYYY-MM-DD',
placeholder:'请选择租赁开始时间',
span:12,
labelWidth:'120',
width:'120',
viewDisplay: true,
addDisplay: false,
editDisplay: false,
hide: false,
},
{ label: "到期时间",
prop: "endDate",
type: "date",
format:'YYYY-MM-DD',
valueFormat:'YYYY-MM-DD',
placeholder:'请选择租赁结束时间',
span:12,
labelWidth:'120',
width:'120',
viewDisplay: true,
addDisplay: false,
editDisplay: false,
hide: false,
}, },
{ {
label: "管理费", label: "管理费",
@ -509,8 +554,6 @@ export default {
span:12, span:12,
labelWidth:'120', labelWidth:'120',
width:'90' width:'90'
}, },
{ {
label: "库位数", label: "库位数",
@ -519,8 +562,6 @@ export default {
span:12, span:12,
labelWidth:'120', labelWidth:'120',
width:'90' width:'90'
}, },
{ {
label: "仓库等级", label: "仓库等级",
@ -540,9 +581,27 @@ export default {
message: "请选择仓库等级", message: "请选择仓库等级",
trigger: "change" trigger: "change"
}], }],
}, },
{
label: "租金类型",
prop: "rentType",
type: "select",
search: true,
dicUrl: "/api/blade-system/dict-biz/dictionary?code=rent_type",
props: {
label: "dictValue",
value: "dictKey"
},
span:12,
labelWidth:'120',
width:'100',
rules:[{
required: true,
message: "请选择租金类型",
trigger: "change"
}],
},
{ {
label: "收款码", label: "收款码",
prop: "moneyReceivingCode", prop: "moneyReceivingCode",
@ -562,8 +621,6 @@ export default {
message: "请上传收款码", message: "请上传收款码",
trigger: "blur" trigger: "blur"
}], }],
}, },
// { // {
// label: '坐标', // label: '坐标',

34
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -98,7 +98,11 @@
row.latitude = a[1]; row.latitude = a[1];
row.warehouseAddress = a[2]; row.warehouseAddress = a[2];
} }
console.log(">>>>>>",this.from); if (this.form.daterange){
let date =this.form.daterange
row.startDate = date[0];
row.endDate = date[1];
}
add(row).then(() => { add(row).then(() => {
this.onLoad(this.page); this.onLoad(this.page);
this.$message({ this.$message({
@ -113,6 +117,11 @@
}, },
rowUpdate(row, index, done, loading) { rowUpdate(row, index, done, loading) {
console.log(">>>this.form",this.form); console.log(">>>this.form",this.form);
if (this.form.daterange){
let date =this.form.daterange
row.startDate = date[0];
row.endDate = date[1];
}
let a =[]; let a =[];
if (!!this.form.address){ if (!!this.form.address){
a = this.form.address; a = this.form.address;
@ -121,7 +130,6 @@
row.warehouseAddress = a[2]; row.warehouseAddress = a[2];
} }
console.log(">>>row",row); console.log(">>>row",row);
update(row).then(() => { update(row).then(() => {
this.onLoad(this.page); this.onLoad(this.page);
this.$message({ this.$message({
@ -243,7 +251,7 @@
}, },
onLoad(page, params = {}) { onLoad(page, params = {}) {
this.loading = true; this.loading = true;
console.log("this.query>>>",this.query);
const { const {
name, name,
linkman, linkman,
@ -255,7 +263,8 @@
fireGrade, fireGrade,
warehouseStructure, warehouseStructure,
powerCondition, powerCondition,
grade grade,
daterange
} = this.query; } = this.query;
let values = { let values = {
@ -269,10 +278,13 @@
fireRatingNot:fireRatingNot, fireRatingNot:fireRatingNot,
warehouseStructure:warehouseStructure, warehouseStructure:warehouseStructure,
powerCondition:powerCondition, powerCondition:powerCondition,
grade:grade grade:grade,
}; };
if (this.query.daterange){
values.startDate = this.query.daterange[0]
values.endDate = this.query.daterange[1]
}
console.log("values>>>>>>>",values);
getList(page.currentPage, page.pageSize, values).then(res => { getList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data; const data = res.data.data;
this.page.total = data.total; this.page.total = data.total;
@ -286,10 +298,10 @@
</script> </script>
<style> <style>
/* .avue-input-map__content-box {*/ .avue-input-map__content-box {
/* position: relative;*/ position: relative;
/* z-index: -1;*/ z-index: -1;
/* }*/ }
/*.amap-ui-poi-picker-search-results-container, .amap-ui-poi-picker-sugg-container {*/ /*.amap-ui-poi-picker-search-results-container, .amap-ui-poi-picker-sugg-container {*/
/* position: absolute;*/ /* position: absolute;*/
/* -webkit-box-sizing: border-box;*/ /* -webkit-box-sizing: border-box;*/

Loading…
Cancel
Save