mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-11 06:07:24 +08:00
v1.9 修复装修状态不对bug
This commit is contained in:
parent
edfcb91bcf
commit
7aa2ca341c
@ -152,7 +152,7 @@ export default {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
// 这里需要根据实际API实现查询房屋信息
|
// 这里需要根据实际API实现查询房屋信息
|
||||||
const { rooms } = await queryRooms({ roomName: this.form.roomName, page: 1, row: 10, communityId: getCommunityId() })
|
const { rooms } = await queryRooms({ roomNum: this.form.roomName, page: 1, row: 10,flag:1, communityId: getCommunityId() })
|
||||||
if (rooms.length > 0) {
|
if (rooms.length > 0) {
|
||||||
this.form.personName = rooms[0].ownerName
|
this.form.personName = rooms[0].ownerName
|
||||||
this.form.personTel = rooms[0].link
|
this.form.personTel = rooms[0].link
|
||||||
|
|||||||
@ -56,6 +56,7 @@ export default {
|
|||||||
form: {
|
form: {
|
||||||
rId: '',
|
rId: '',
|
||||||
roomName: '',
|
roomName: '',
|
||||||
|
roomId: '',
|
||||||
state: '',
|
state: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
detailType: '1001',
|
detailType: '1001',
|
||||||
@ -68,6 +69,7 @@ export default {
|
|||||||
this.form = {
|
this.form = {
|
||||||
rId: row.rId,
|
rId: row.rId,
|
||||||
roomName: row.roomName,
|
roomName: row.roomName,
|
||||||
|
roomId: row.roomId,
|
||||||
state: '',
|
state: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
detailType: '1001',
|
detailType: '1001',
|
||||||
@ -80,6 +82,7 @@ export default {
|
|||||||
this.form = {
|
this.form = {
|
||||||
rId: '',
|
rId: '',
|
||||||
roomName: '',
|
roomName: '',
|
||||||
|
roomId: '',
|
||||||
state: '',
|
state: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
detailType: '1001',
|
detailType: '1001',
|
||||||
|
|||||||
@ -38,6 +38,7 @@ export default {
|
|||||||
open(row) {
|
open(row) {
|
||||||
this.form = {
|
this.form = {
|
||||||
rId: row.rId,
|
rId: row.rId,
|
||||||
|
roomId: row.roomId,
|
||||||
communityId: this.getCommunityId()
|
communityId: this.getCommunityId()
|
||||||
}
|
}
|
||||||
this.visible = true
|
this.visible = true
|
||||||
@ -46,6 +47,7 @@ export default {
|
|||||||
resetForm() {
|
resetForm() {
|
||||||
this.form = {
|
this.form = {
|
||||||
rId: '',
|
rId: '',
|
||||||
|
roomId: '',
|
||||||
communityId: ''
|
communityId: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -49,6 +49,7 @@ export default {
|
|||||||
open(row) {
|
open(row) {
|
||||||
this.form = {
|
this.form = {
|
||||||
rId: row.rId,
|
rId: row.rId,
|
||||||
|
roomId: row.roomId,
|
||||||
roomName: row.roomName,
|
roomName: row.roomName,
|
||||||
state: '',
|
state: '',
|
||||||
examineRemark: '',
|
examineRemark: '',
|
||||||
@ -60,6 +61,7 @@ export default {
|
|||||||
resetForm() {
|
resetForm() {
|
||||||
this.form = {
|
this.form = {
|
||||||
rId: '',
|
rId: '',
|
||||||
|
roomId: '',
|
||||||
roomName: '',
|
roomName: '',
|
||||||
state: '',
|
state: '',
|
||||||
examineRemark: '',
|
examineRemark: '',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user