更新后台管理系统
This commit is contained in:
parent
de35413527
commit
e989a2178f
|
@ -12,7 +12,6 @@ export function apiProductLists(params: any) {
|
|||
|
||||
// 土地表列表
|
||||
export function apiLandLists(params: any) {
|
||||
console.log(params)
|
||||
return request.get({ url: '/land.land/lists', params })
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ export function getUserList(params: any) {
|
|||
|
||||
// 土地表列表
|
||||
export function apiLandLists(params: any) {
|
||||
console.log(params)
|
||||
return request.get({ url: '/land.land/lists', params })
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ export function getUserList(params: any) {
|
|||
|
||||
// 土地表列表
|
||||
export function apiLandLists(params: any) {
|
||||
console.log(params)
|
||||
return request.get({ url: '/land.land/lists', params })
|
||||
}
|
||||
|
||||
|
|
|
@ -46,12 +46,6 @@
|
|||
<dict-value :options="dictData.device_online_status" :value="deviceData.device.is_online" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-1/2 md:w-1/6 mb-4">
|
||||
<div class="leading-10">是否绑定产品:</div>
|
||||
<div class="text-3xl text-tx-secondary">
|
||||
<dict-value :options="dictData.device_bind_status" :value="deviceData.device.is_bind" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-card>
|
||||
|
||||
|
|
|
@ -81,7 +81,6 @@ const formRules = reactive<any>({
|
|||
}],
|
||||
})
|
||||
|
||||
|
||||
// 获取详情
|
||||
const setFormData = async (data: Record<any, any>) => {
|
||||
for (const key in formData) {
|
||||
|
@ -139,9 +138,13 @@ const handleClose = () => {
|
|||
emit('close')
|
||||
}
|
||||
|
||||
const setProduct = async (data: Record<any, any>) => {
|
||||
console.log(data)
|
||||
}
|
||||
|
||||
defineExpose({
|
||||
open,
|
||||
setFormData
|
||||
setFormData,
|
||||
setProduct
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -229,6 +229,7 @@ const handleBind = async (data: any) => {
|
|||
await nextTick()
|
||||
bindRef.value?.open('bind')
|
||||
bindRef.value?.setFormData(data)
|
||||
bindRef.value?.setProduct(data)
|
||||
}
|
||||
|
||||
// 删除
|
||||
|
|
Loading…
Reference in New Issue