|
@@ -11,8 +11,8 @@
|
|
|
custom-class="xl-dialog"
|
|
|
center
|
|
|
>
|
|
|
- <base-form ref="ruleForm" class="lib-edit" :data="formData" :is-inline="false" label-width="110px" :insertSlotArr="[4]">
|
|
|
- <div slot="OI4" class="scoped-other-form">
|
|
|
+ <base-form ref="ruleForm" class="lib-edit" :data="formData" :is-inline="false" label-width="110px" :insertSlotArr="[7]">
|
|
|
+ <div slot="OI7" class="scoped-other-form">
|
|
|
<el-form-item label="点位坐标" class="scoped-item-two item">
|
|
|
纬度N<el-input v-model="cObj.latitude" disabled />
|
|
|
经度E<el-input v-model="cObj.longitude" disabled />
|
|
@@ -72,10 +72,13 @@ export default {
|
|
|
getDef (str, strKey, strParams) {
|
|
|
let params = {...this.cObj}
|
|
|
this.formData = [
|
|
|
- { label: '楼盘名称', key: 'estate_name', class: 'c-2', rules: 1 },
|
|
|
- { label: '所属区域', key: 'area_type', type: 'select', class: 'c-2', options: this.$dictData.area_type },
|
|
|
+ { label: '楼盘名称', key: 'estate_name', rules: 1 },
|
|
|
{ label: '报备保护期', key: 'report_lock', type: 'inputFont', class: 'c-2', appendFont: '天' },
|
|
|
{ label: '带看保护期', key: 'lead_lock', type: 'inputFont', class: 'c-2', appendFont: '天' },
|
|
|
+ { label: '排序', key: 'sort', class: 'c-2' },
|
|
|
+ { label: '楼盘标签', key: 'estate_tag', class: 'c-2', rules: 1 },
|
|
|
+ { label: '营销电话', key: 'marketing_phone', class: 'c-2', rules: 1 },
|
|
|
+ { label: '所属区域', key: 'area_type', type: 'select', class: 'c-2', options: this.$dictData.area_type, rules: 1 },
|
|
|
{ label: '楼盘地址', key: 'address', rules: 1 },
|
|
|
{ label: '楼盘图', key: 'pri_image', class: 'c-2', type: 'cuImg',
|
|
|
options: {
|
|
@@ -83,7 +86,10 @@ export default {
|
|
|
h: 250,
|
|
|
}
|
|
|
, rules: 1 },
|
|
|
- { label: '备注', key: 'remark', type: 'textarea' },
|
|
|
+ { label: 'plusId', key: 'honglou_plus', class: 'c-2' },
|
|
|
+ { label: '楼盘介绍', key: 'introduce', type: 'textarea', rules: 1 },
|
|
|
+ { label: '佣金标准', key: 'brokerage', type: 'textarea', rules: 1 },
|
|
|
+ { label: '带看材料', key: 'report_visit', type: 'textarea', rules: 1 },
|
|
|
]
|
|
|
this.setDefaultValue(params)
|
|
|
},
|
|
@@ -166,4 +172,18 @@ export default {
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
|
|
|
+::v-deep .img-upload {
|
|
|
+ width: 120px;
|
|
|
+ height: 80px;
|
|
|
+ .icon {
|
|
|
+ width: 120px;
|
|
|
+ height: 80px;
|
|
|
+ line-height: 80px;
|
|
|
+ }
|
|
|
+ .img {
|
|
|
+ width: 120px;
|
|
|
+ height: 80px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</style>
|