描述:企业查询

This commit is contained in:
SelfRidicule 2024-05-09 15:57:18 +08:00
parent 1a3e0c1fee
commit cfa60fd669

View File

@ -123,11 +123,11 @@
<a-input placeholder='所属行业' v-decorator="['sector']" />
</a-form-item>
</a-col>
<!-- <a-col :span='12'>-->
<!-- <a-form-item :labelCol='labelColHalf' :wrapperCol='wrapperColHalf' label='所属国家'>-->
<!-- <a-input placeholder='所属国家' v-decorator="['country']" />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :span='12'>-->
<!-- <a-form-item :labelCol='labelColHalf' :wrapperCol='wrapperColHalf' label='所属国家'>-->
<!-- <a-input placeholder='所属国家' v-decorator="['country']" />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :span='12'>
<a-form-item :labelCol='labelColHalf' :wrapperCol='wrapperColHalf' label='过程管理'>
<a-select v-decorator="['process']">
@ -396,7 +396,7 @@
:dataSource='deviceData'
>
<span slot='floorName' slot-scope='text, record'>
{{ record.roomName?record.buildName + record.roomName:record.buildName }}
{{ record.roomName ? record.buildName + record.roomName : record.buildName }}
</span>
</a-table>
</a-modal>
@ -586,7 +586,7 @@ export default {
roomList: [], //
tenantEnable: false,
parkEnable: false,
mdl: {},
mdl: {}
}
},
@ -615,7 +615,7 @@ export default {
//
this.getTenantData()
//
this.getUserDetail();
this.getUserDetail()
},
methods: {
@ -727,11 +727,18 @@ export default {
this.form.setFieldsValue({
roomIds: [] //
})
//
let type = 0
//
const { customerId } = this.$route.query
if (customerId == 83) {
type = null
}
//
getRoomListByBuildIdsRq({
'ids': ids,
'buildingDetailIds': buildingDetailIds,
'type': 0
'type': type
}).then((res) => {
this.roomList = res.data
})
@ -781,7 +788,6 @@ export default {
},
customRequest(file) {
// file
// formData
@ -790,7 +796,7 @@ export default {
const formData = new FormData()
formData.append('file', file.file)
console.log(file)
importData(formData,customerId).then(res => {
importData(formData, customerId).then(res => {
if (res.code == 0) {
// ,
file.onSuccess(res, file.file)