更新图片展示
This commit is contained in:
parent
b3c023cfbf
commit
9f8ee351ed
|
@ -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 = ''
|
||||
}
|
||||
// 查询条件
|
||||
|
|
|
@ -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 = ''
|
||||
}
|
||||
|
||||
|
|
|
@ -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 = ''
|
||||
}
|
||||
|
||||
|
|
|
@ -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 = ''
|
||||
}
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ if (typeof device_id == 'undefined') {
|
|||
}
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
const queryParams = reactive({
|
||||
device_id: device_id,
|
||||
type: '',
|
||||
start_time: '',
|
||||
|
|
|
@ -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 = ''
|
||||
}
|
||||
// 查询条件
|
||||
|
|
|
@ -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 = ''
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue