更新图片展示
This commit is contained in:
parent
b3c023cfbf
commit
9f8ee351ed
|
@ -84,7 +84,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
var device_id = query.device_id
|
var device_id = query.device_id
|
||||||
if (typeof(device_id) == 'undefined') {
|
if (typeof device_id == 'undefined') {
|
||||||
device_id = ''
|
device_id = ''
|
||||||
}
|
}
|
||||||
// 查询条件
|
// 查询条件
|
||||||
|
|
|
@ -131,7 +131,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
let user_id = query.user_id
|
let user_id = query.user_id
|
||||||
if (typeof(user_id) == 'undefined') {
|
if (typeof user_id == 'undefined') {
|
||||||
user_id = ''
|
user_id = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -158,7 +158,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
let land_id = query.land_id
|
let land_id = query.land_id
|
||||||
if (typeof(land_id) == 'undefined') {
|
if (typeof land_id == 'undefined') {
|
||||||
land_id = ''
|
land_id = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -108,7 +108,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
let plant_id = query.plant_id
|
let plant_id = query.plant_id
|
||||||
if (typeof(plant_id) == 'undefined') {
|
if (typeof plant_id == 'undefined') {
|
||||||
plant_id = ''
|
plant_id = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
let land_id = query.land_id
|
let land_id = query.land_id
|
||||||
if (typeof(land_id) == 'undefined') {
|
if (typeof land_id == 'undefined') {
|
||||||
land_id = ''
|
land_id = ''
|
||||||
}
|
}
|
||||||
// 查询条件
|
// 查询条件
|
||||||
|
|
|
@ -88,8 +88,8 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
// 是否显示编辑框
|
// 是否显示编辑框
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
var device_id = query.device_id
|
let device_id = query.device_id
|
||||||
if (typeof(device_id) == 'undefined') {
|
if (typeof device_id == 'undefined') {
|
||||||
device_id = ''
|
device_id = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue