123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <template>
- <div class="page">
- <el-card shadow="never">
- <el-form :model="tableData.param" ref="queryRef" inline label-width="68px">
- <!-- 关键字 -->
- <el-form-item :label="$t('message.device.formI18nLabel.keyword')" prop="name">
- <el-input v-model="tableData.param.name" :placeholder="$t('message.device.formI18nPlaceholder.keyword')" clearable style="width: 150px" @keyup.enter.native="typeList" />
- </el-form-item>
- <!-- 类型 -->
- <el-form-item :label="$t('message.device.formI18nLabel.type')" prop="deviceType" style="width: 180px">
- <el-select v-model="tableData.param.deviceType" :placeholder="$t('message.device.formI18nPlaceholder.type')" clearable style="width: 240px" @keyup.enter.native="typeList">
- <!-- 网关 -->
- <el-option :label="$t('message.device.formI18nOption.gateway')" :value="'网关'" />
- <!-- 设备 -->
- <el-option :label="$t('message.device.formI18nOption.device')" :value="'设备'" />
- <!-- 子设备 -->
- <el-option :label="$t('message.device.formI18nOption.subDevice')" :value="'子设备'" />
- <!-- <el-option label="直连设备" :value="'设备'" />
- <el-option label="网关设备" :value="'网关'" /> -->
- </el-select>
- </el-form-item>
- <!-- 状态 -->
- <el-form-item :label="$t('message.device.formI18nLabel.status')" prop="status" style="width: 180px">
- <el-select v-model="tableData.param.status" :placeholder="$t('message.device.formI18nPlaceholder.status')" clearable style="width: 240px">
- <!-- 已启用 -->
- <el-option :label="$t('message.device.formI18nOption.on')" :value="1" />
- <!-- 未启用 -->
- <el-option :label="$t('message.device.formI18nOption.off')" :value="0" />
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="创建时间" prop="dateRange">-->
- <!-- <el-date-picker v-model="tableData.param.dateRange" style="width: 240px" value-format="YYYY-MM-DD" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>-->
- <!-- </el-form-item>-->
- <el-form-item>
- <!-- 查询 -->
- <el-button type="primary" class="ml10" @click="typeList">
- <el-icon>
- <ele-Search />
- </el-icon>
- {{ $t('message.formI18nButton.query') }}
- </el-button>
- <!-- 重置 -->
- <!-- <el-button @click="resetQuery(queryRef)">
- <el-icon>
- <ele-Refresh />
- </el-icon>
- {{ $t('iotmanagerI18n.formI18nButton.reset') }}
- </el-button> -->
- <!-- 新增产品 -->
- <el-button type="primary" class="ml10" @click="onOpenAddDic" v-auth="'add'">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- {{ $t('message.device.formI18nButton.addProduct') }}
- </el-button>
- <!-- 删除 -->
- <el-button type="info" class="ml10" @click="onRowDel()" v-auth="'del'">
- <el-icon>
- <ele-Delete />
- </el-icon>
- {{ $t('message.formI18nButton.delete') }}
- </el-button>
- </el-form-item>
- </el-form>
- <el-table :data="tableData.data" style="width: 100%" @selection-change="handleSelectionChange" v-loading="tableData.loading">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="标识" prop="key" min-width="130" show-overflow-tooltip v-col="'key'">
- <template #default="{ row }"><copy :text="row.key"></copy></template>
- </el-table-column>
- <el-table-column label="名称" prop="name" min-width="160" show-overflow-tooltip v-col="'name'" />
- <el-table-column label="分类" prop="categoryName" align="center" width="140" show-overflow-tooltip v-col="'categoryName'" />
- <!-- <el-table-column label="消息协议" prop="messageProtocol" align="center" min-width="150" show-overflow-tooltip v-col="'messageProtocol'" />-->
- <el-table-column label="接入方式" prop="transportProtocol" min-width="120" align="center" show-overflow-tooltip v-col="'transportProtocol'" />
- <el-table-column label="类型" prop="deviceType" min-width="90" align="center" show-overflow-tooltip v-col="'deviceType'" />
- <el-table-column prop="status" label="状态" min-width="90" align="center" v-col="'status'">
- <template #default="scope">
- <el-tag type="success" size="small" v-if="scope.row.status">已启用</el-tag>
- <el-tag type="info" size="small" v-else>未启用</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="150" align="center" fixed="right">
- <template #default="scope">
- <router-link :to="'/iotmanager/device/product/detail/' + scope.row.key" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff">
- <span>详情</span>
- </router-link>
- <router-link :to="{ path: '/iotmanager/device/instance', query: { productKey: scope.row.key } }" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff">设备管理</router-link>
- <!-- <el-button size="small" text type="warning" @click="onOpenEditDic(scope.row)" v-auth="'edit'">修改</el-button>-->
- <el-button size="small" text type="info" @click="onRowDel(scope.row)" v-auth="'del'">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination v-show="tableData.total > 0" :total="tableData.total" v-model:page="tableData.param.pageNum" v-model:limit="tableData.param.pageSize" @pagination="typeList" />
- </el-card>
- <EditDic ref="editDicRef" @typeList="typeList" />
- </div>
- </template>
- <script lang="ts">
- import { toRefs, reactive, onMounted, ref, defineComponent } from "vue";
- import { ElMessageBox, ElMessage, FormInstance } from "element-plus";
- import EditDic from "./component/editPro.vue";
- import api from "/@/api/device";
- // 定义接口来定义对象的类型
- interface TableDataRow {
- id: number;
- key: string;
- name: string;
- deviceType: string;
- status: number;
- desc: string;
- createBy: string;
- }
- interface TableDataState {
- keys: string[];
- tableData: {
- data: Array<TableDataRow>;
- total: number;
- loading: boolean;
- param: {
- pageNum: number;
- pageSize: number;
- name: string;
- deviceType: string;
- status: string;
- dateRange: string[];
- };
- };
- }
- export default defineComponent({
- name: "deviceproduct",
- components: { EditDic },
- setup() {
- const addDicRef = ref();
- const editDicRef = ref();
- const queryRef = ref();
- const state = reactive<TableDataState>({
- keys: [],
- tableData: {
- data: [],
- total: 0,
- loading: false,
- param: {
- pageNum: 1,
- pageSize: 20,
- status: "",
- name: "",
- deviceType: "",
- dateRange: [],
- },
- },
- });
- // 初始化表格数据
- const initTableData = () => {
- typeList();
- };
- const typeList = () => {
- state.tableData.loading = true;
- api.product
- .getList(state.tableData.param)
- .then((res: any) => {
- state.tableData.data = res.product;
- state.tableData.total = res.total;
- })
- .finally(() => (state.tableData.loading = false));
- };
- // 打开新增产品弹窗
- const onOpenAddDic = () => {
- editDicRef.value.openDialog();
- };
- // 打开修改产品弹窗
- const onOpenEditDic = (row: TableDataRow) => {
- editDicRef.value.openDialog(row);
- };
- // 删除产品
- const onRowDel = (row?: TableDataRow) => {
- let msg = "你确定要删除所选数据?";
- let keys: string[] = [];
- if (row) {
- msg = `此操作将永久删除产品:“${row.name}”,是否继续?`;
- keys = [row.key];
- } else {
- keys = state.keys;
- }
- if (keys.length === 0) {
- ElMessage.error("请选择要删除的数据。");
- return;
- }
- ElMessageBox.confirm(msg, "提示", {
- confirmButtonText: "确认",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- api.product.delete(keys).then(() => {
- ElMessage.success("删除成功");
- typeList();
- });
- })
- .catch(() => {});
- };
- // 页面加载时
- onMounted(() => {
- initTableData();
- });
- /** 重置按钮操作 */
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- typeList();
- };
- // 多选框选中数据
- const handleSelectionChange = (selection: TableDataRow[]) => {
- state.keys = selection.map((item) => item.key);
- };
- return {
- addDicRef,
- editDicRef,
- queryRef,
- onOpenAddDic,
- onOpenEditDic,
- onRowDel,
- typeList,
- resetQuery,
- handleSelectionChange,
- ...toRefs(state),
- };
- },
- });
- </script>
|