Browse Source

楼盘修改页面

develop
caoyizhong 3 years ago
parent
commit
cde9faccd7
  1. 28
      src/views/city/cityInterest/index.vue
  2. 6
      src/views/houseList/page/detail.vue
  3. 2
      src/views/sale/index.vue

28
src/views/city/cityInterest/index.vue

@ -222,6 +222,7 @@
style="width: 100%"
ref="multipleTable"
v-loading="loading"
>
<el-table-column fixed type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index" width="50"> </el-table-column>
@ -465,6 +466,7 @@ export default {
aroundTown:false,
//
aroundTownRim:[],
dialogLoad:false,
limit: 1,
searchForm: {
//
@ -636,7 +638,7 @@ export default {
);
this.showPages = false;
this.aroundTown=true;
}else if('2'){
}else {
//
param = Object.assign(
{
@ -665,11 +667,21 @@ export default {
//
delItemRim(row){
console.log(row);
let pasm = row ;
delInterestRim(pasm).then(rest => {
console.log("成功")
this.$message.success("删除成功");
})
let pasme = row ;
this.$modal.confirm('是否确认删除地区为"' + row.county + '"的数据项?').then(function() {
return delInterestRim(pasme);
}).then(() => {
this.circumDelete("1");
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
// delInterestRim(pasm).then(rest => {
// console.log("")
// this.$message.success("");
// })
@ -678,17 +690,19 @@ export default {
},
//
multiLead(e){
this.loading = true;
const file = e;
let formData = new FormData();
formData.append("uploadFile", file);
importFile(formData).then((res) => {
this.loading = false;
if (res.data.success) {
this.$message({
type: 'success',
message: '导入成功'
});
this.onSubmit();
return true
return true;
} else {
this.$message("导入失败");
return false

6
src/views/houseList/page/detail.vue

@ -333,17 +333,17 @@ export default {
},
{
label: "状态更新时间",
prop: "plotRatio",
prop: "subscribeDate",
width: 120,
},
{
label: "网签状态",
prop: "plotRatio",
prop: "netSignStatus",
width: 150,
},
{
label: "状态更新时间",
prop: "plotRatio",
prop: "netSignDate",
width: 120,
},
],

2
src/views/sale/index.vue

@ -633,7 +633,7 @@ export default {
this.dialogLoad = true;
this.$refs[formName].validate((valid) => {
if (valid) {
console.log(this.params);
// console.log(this.params);
api.changeHouse(this.params).then((res) => {
if (res.data.data) {
this.dialogLoad = false;

Loading…
Cancel
Save