更新图片展示

This commit is contained in:
yaooo 2023-11-28 10:32:46 +08:00
parent b3c023cfbf
commit 9f8ee351ed
7 changed files with 8 additions and 8 deletions

View File

@ -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 = ''
} }
// //

View File

@ -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 = ''
} }

View File

@ -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 = ''
} }

View File

@ -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 = ''
} }

View File

@ -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 = ''
} }
// //

View File

@ -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 = ''
} }