wwf
6 小时以前 a1d7e81859f554f3a53680cc35f0f49bf1f77098
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!-- 产品选择器组件 -->
<template>
  <el-select
    :model-value="modelValue"
    @update:model-value="handleChange"
    placeholder="请选择产品"
    filterable
    clearable
    class="w-full"
    :loading="productLoading"
  >
    <el-option
      v-for="product in productList"
      :key="product.id"
      :label="product.name"
      :value="product.id"
    >
      <div class="flex items-center justify-between w-full py-4px">
        <div class="flex-1">
          <div class="text-14px font-500 text-[var(--el-text-color-primary)] mb-2px">
            {{ product.name }}
          </div>
          <div class="text-12px text-[var(--el-text-color-secondary)]">
            {{ product.productKey }}
          </div>
        </div>
        <dict-tag :type="DICT_TYPE.IOT_PRODUCT_STATUS" :value="product.status" />
      </div>
    </el-option>
  </el-select>
</template>
 
<script setup lang="ts">
import { ProductApi } from '@/api/iot/product/product'
import { DICT_TYPE } from '@/utils/dict'
 
/** 产品选择器组件 */
defineOptions({ name: 'ProductSelector' })
 
defineProps<{
  modelValue?: number
}>()
 
const emit = defineEmits<{
  (e: 'update:modelValue', value?: number): void
  (e: 'change', value?: number): void
}>()
 
const productLoading = ref(false) // 产品加载状态
const productList = ref<any[]>([]) // 产品列表
 
/**
 * 处理选择变化事件
 * @param value 选中的产品 ID
 */
const handleChange = (value?: number) => {
  emit('update:modelValue', value)
  emit('change', value)
}
 
/** 获取产品列表 */
const getProductList = async () => {
  try {
    productLoading.value = true
    const res = await ProductApi.getSimpleProductList()
    productList.value = res || []
  } catch (error) {
    console.error('获取产品列表失败:', error)
    productList.value = []
  } finally {
    productLoading.value = false
  }
}
 
// 组件挂载时获取产品列表
onMounted(() => {
  getProductList()
})
</script>