更新图片展示

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)
var device_id = query.device_id
if (typeof(device_id) == 'undefined') {
if (typeof device_id == 'undefined') {
device_id = ''
}
//

View File

@ -131,7 +131,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const showEdit = ref(false)
let user_id = query.user_id
if (typeof(user_id) == 'undefined') {
if (typeof user_id == 'undefined') {
user_id = ''
}

View File

@ -158,7 +158,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const showEdit = ref(false)
let land_id = query.land_id
if (typeof(land_id) == 'undefined') {
if (typeof land_id == 'undefined') {
land_id = ''
}

View File

@ -108,7 +108,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const showEdit = ref(false)
let plant_id = query.plant_id
if (typeof(plant_id) == 'undefined') {
if (typeof plant_id == 'undefined') {
plant_id = ''
}

View File

@ -103,7 +103,7 @@ if (typeof device_id == 'undefined') {
}
//
const queryParams = reactive({
const queryParams = reactive({
device_id: device_id,
type: '',
start_time: '',

View File

@ -128,7 +128,7 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const showEdit = ref(false)
let land_id = query.land_id
if (typeof(land_id) == 'undefined') {
if (typeof land_id == 'undefined') {
land_id = ''
}
//

View File

@ -88,8 +88,8 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
//
const showEdit = ref(false)
var device_id = query.device_id
if (typeof(device_id) == 'undefined') {
let device_id = query.device_id
if (typeof device_id == 'undefined') {
device_id = ''
}