|
@@ -226,9 +226,11 @@ export default {
|
|
|
this.productData = [...productData]
|
|
|
},
|
|
|
roomAreaDel (one, two, three) {
|
|
|
- let productData = [...this.productData]
|
|
|
- productData[one].house_type_list[two].area_list.splice(three, 1)
|
|
|
- this.productData = [...productData]
|
|
|
+ this.$msg(`您确定要删除吗?`, 'confirm', () => {
|
|
|
+ let productData = [...this.productData]
|
|
|
+ productData[one].house_type_list[two].area_list.splice(three, 1)
|
|
|
+ this.productData = [...productData]
|
|
|
+ })
|
|
|
},
|
|
|
roomAreaAdd (one, two) {
|
|
|
let productData = [...this.productData]
|
|
@@ -626,7 +628,7 @@ export default {
|
|
|
font-size: 12px;
|
|
|
background: #e6a23c;
|
|
|
color: #fff;
|
|
|
- width: 100%;
|
|
|
+ width: 51%;
|
|
|
height: 26px;
|
|
|
line-height: 26px;
|
|
|
cursor: pointer;
|