更新设备绑定
This commit is contained in:
parent
924a7c35e8
commit
c3c734f595
|
@ -16,6 +16,12 @@ export function apiProductLists(params: any) {
|
|||
return request.get({ url: '/land.product/lists', params })
|
||||
}
|
||||
|
||||
// 监测设备列表
|
||||
export function apiDeviceLists(params: any) {
|
||||
return request.get({ url: '/device.device/lists', params })
|
||||
}
|
||||
|
||||
|
||||
// 添加产品列表
|
||||
export function apiProductAdd(params: any) {
|
||||
return request.post({ url: '/land.product/add', params })
|
||||
|
@ -35,3 +41,8 @@ export function apiProductDelete(params: any) {
|
|||
export function apiProductDetail(params: any) {
|
||||
return request.get({ url: '/land.product/detail', params })
|
||||
}
|
||||
|
||||
// 绑定设备
|
||||
export function apiProductBind(params: any) {
|
||||
return request.post({ url: '/land.product/bind', params })
|
||||
}
|
|
@ -0,0 +1,148 @@
|
|||
<template>
|
||||
<div class="edit-popup">
|
||||
<popup
|
||||
ref="popupRef"
|
||||
:title="popupTitle"
|
||||
:async="true"
|
||||
width="650px"
|
||||
@confirm="handleSubmit"
|
||||
@close="handleClose"
|
||||
>
|
||||
<el-form ref="formRef" :model="formData" label-width="120px" :rules="formRules">
|
||||
<el-form-item label="产品ID" prop="id">
|
||||
<el-input v-model="formData.id" disabled clearable placeholder="请输入产品ID" />
|
||||
</el-form-item>
|
||||
<el-form-item label="产品名称" prop="name">
|
||||
<el-input
|
||||
v-model="formData.name"
|
||||
disabled
|
||||
clearable
|
||||
placeholder="请输入产品名称"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="绑定设备" prop="product_id">
|
||||
<el-select
|
||||
v-model="formData.device_id"
|
||||
filterable
|
||||
multiple
|
||||
remote
|
||||
reserve-keyword
|
||||
placeholder="请输入设备信息"
|
||||
:remote-method="queryDevice"
|
||||
:loading="loading"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in deviceOptions"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="landEdit">
|
||||
import type { FormInstance } from 'element-plus'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiProductBind, apiDeviceLists } from '@/api/product'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import type { PropType } from 'vue'
|
||||
defineProps({
|
||||
dictData: {
|
||||
type: Object as PropType<Record<string, any[]>>,
|
||||
default: () => ({})
|
||||
}
|
||||
})
|
||||
const emit = defineEmits(['success', 'close'])
|
||||
const formRef = shallowRef<FormInstance>()
|
||||
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
||||
const mode = ref('add')
|
||||
|
||||
// 弹窗标题
|
||||
const popupTitle = computed(() => {
|
||||
return (mode.value = '绑定设备')
|
||||
})
|
||||
|
||||
// 表单数据
|
||||
const formData = reactive({
|
||||
id: '',
|
||||
name: '',
|
||||
device_id: ''
|
||||
})
|
||||
|
||||
// 表单验证
|
||||
const formRules = reactive<any>({
|
||||
device_id: [{
|
||||
required: true,
|
||||
message: '请选择绑定设备',
|
||||
trigger: ['blur']
|
||||
}],
|
||||
})
|
||||
|
||||
|
||||
// 获取详情
|
||||
const setFormData = async (data: Record<any, any>) => {
|
||||
for (const key in formData) {
|
||||
if (data[key] != null && data[key] != undefined) {
|
||||
//@ts-ignore
|
||||
formData[key] = data[key]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
interface ListItem {
|
||||
value: string
|
||||
label: string
|
||||
}
|
||||
const deviceOptions = ref<ListItem[]>([])
|
||||
const loading = ref(false)
|
||||
|
||||
const queryDevice = async (query: string) => {
|
||||
if (query) {
|
||||
loading.value = true
|
||||
const deviceList = await apiDeviceLists({
|
||||
name: query
|
||||
})
|
||||
loading.value = false
|
||||
if (deviceList.count > 0) {
|
||||
deviceOptions.value = deviceList.lists.map((device: any) => {
|
||||
return { value: `${device.id}`, label: `ID: ${device.id} / 名称: ${device.name}` }
|
||||
})
|
||||
} else {
|
||||
deviceOptions.value = []
|
||||
}
|
||||
loading.value = false
|
||||
} else {
|
||||
deviceOptions.value = []
|
||||
}
|
||||
}
|
||||
|
||||
// 提交按钮
|
||||
const handleSubmit = async () => {
|
||||
await formRef.value?.validate()
|
||||
const data = { ...formData, }
|
||||
await apiProductBind(data)
|
||||
popupRef.value?.close()
|
||||
emit('success')
|
||||
}
|
||||
|
||||
//打开弹窗
|
||||
const open = (type = 'add') => {
|
||||
mode.value = type
|
||||
popupRef.value?.open()
|
||||
}
|
||||
|
||||
// 关闭回调
|
||||
const handleClose = () => {
|
||||
emit('close')
|
||||
}
|
||||
|
||||
|
||||
defineExpose({
|
||||
open,
|
||||
setFormData
|
||||
})
|
||||
</script>
|
|
@ -95,10 +95,10 @@
|
|||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
v-perms="['land.product/edit']"
|
||||
v-perms="['land.product/bind']"
|
||||
type="primary"
|
||||
link
|
||||
@click="handleEdit(row)"
|
||||
@click="handleBind(row)"
|
||||
>
|
||||
绑定设备
|
||||
</el-button>
|
||||
|
@ -131,6 +131,7 @@
|
|||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<bind-popup v-if="bindEdit" ref="bindRef" :dict-data="dictData" @success="getLists" @close="bindEdit = false" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -142,11 +143,15 @@ import { apiProductLists, apiProductDelete } from '@/api/product'
|
|||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import BindPopup from './bind.vue'
|
||||
|
||||
const { query } = useRoute()
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
|
||||
const bindRef = shallowRef<InstanceType<typeof BindPopup>>()
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
const bindEdit = ref(false)
|
||||
|
||||
let land_id = query.land_id
|
||||
if (typeof land_id == 'undefined') {
|
||||
|
@ -196,6 +201,14 @@ const handleEdit = async (data: any) => {
|
|||
editRef.value?.setFormData(data)
|
||||
}
|
||||
|
||||
// 绑定
|
||||
const handleBind = async (data: any) => {
|
||||
bindEdit.value = true
|
||||
await nextTick()
|
||||
bindRef.value?.open('bind')
|
||||
bindRef.value?.setFormData(data)
|
||||
}
|
||||
|
||||
// 删除
|
||||
const handleDelete = async (id: number | any[]) => {
|
||||
await feedback.confirm('确定要删除?')
|
||||
|
|
|
@ -104,5 +104,17 @@ class ProductController extends BaseAdminController
|
|||
return $this->data($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 绑定产品
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/22 16:35
|
||||
*/
|
||||
public function bind()
|
||||
{
|
||||
$params = (new ProductValidate())->post()->goCheck('bind');
|
||||
ProductLogic::bind($params);
|
||||
return $this->success('绑定成功', [], 1, 1);
|
||||
}
|
||||
|
||||
}
|
|
@ -134,4 +134,38 @@ class ProductLogic extends BaseLogic
|
|||
{
|
||||
return Product::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
|
||||
public static function bind($params): bool
|
||||
{
|
||||
$userId = (request()->adminInfo)['user_id'];
|
||||
if (!empty($params['id'])) {
|
||||
$userId = Db::name('product')->where('id', $params['id'])->value('user_id');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
Db::name('product_device')->whereIn('device_id', $params['device_id'])->delete();
|
||||
Db::name('product_device')->where('product_id', $params['id'])->delete();
|
||||
Db::name('device')->whereIn('id', $params['device_id'])->update([
|
||||
'user_id' => $userId
|
||||
]);
|
||||
$deviceList = Db::name('device')->whereIn('id', $params['device_id'])->select()->toArray();
|
||||
$insertData = [];
|
||||
foreach($deviceList as $d) {
|
||||
$insertData[] = [
|
||||
'product_id' => $params['id'],
|
||||
'device_id' => $d['id'],
|
||||
'device_type' => $d['type'],
|
||||
'create_time' => time(),
|
||||
'update_time' => time()
|
||||
];
|
||||
}
|
||||
Db::name('product_device')->insertAll($insertData);
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -32,12 +32,12 @@ class ProductValidate extends BaseValidate
|
|||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
'device_id' => 'require',
|
||||
'code' => 'require',
|
||||
'name' => 'require',
|
||||
'status' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
|
@ -106,4 +106,15 @@ class ProductValidate extends BaseValidate
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 绑定设备
|
||||
* @return LandValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/22 16:35
|
||||
*/
|
||||
public function sceneBind()
|
||||
{
|
||||
return $this->only(['id', 'device_id']);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue