123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <template>
- <div class="mutiple-bind-dialog-wrap">
- <el-dialog title="批量绑定子设备" v-model="isShowDialog" width="90%">
- <el-form :model="ruleForm" ref="formRef" :rules="rules" size="small" label-width="110px">
- <el-form-item label="所属产品" prop="productKey">
- <el-select @change="handleChange" v-model="ruleForm.productKey" placeholder="请选择所属产品" style="width: 300px;">
- <el-option v-for="item in productData" :key="item.key" :label="item.name" :value="item.key" />
- </el-select>
- <el-button style="margin-left: 20px;" :disabled="!deviceKeyList.length" v-auth="'mutipleBind'" type="primary" @click="confirmBind()">批量绑定</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" 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" show-overflow-tooltip v-col="'name'" />
- <el-table-column label="产品名称" prop="product.name" show-overflow-tooltip v-col="'productName'" />
- <el-table-column prop="status" label="状态" width="100" align="center" v-col="'status'">
- <template #default="scope">
- <el-tag type="info" size="small" v-if="scope.row.status == 1">离线</el-tag>
- <el-tag type="success" size="small" v-if="scope.row.status == 2">在线</el-tag>
- <el-tag type="info" size="small" v-if="scope.row.status == 0">未启用</el-tag>
- </template>
- </el-table-column>
- <el-table-column prop="registryTime" label="激活时间" align="center" width="150" v-col="'registryTime'"></el-table-column>
- <el-table-column prop="desc" label="说明" v-col="'desc'"></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="getDeviceList" />
- </el-dialog>
- </div>
- </template>
- <script lang="ts">
- import { toRefs, reactive, defineComponent } from 'vue'
- import { ElMessageBox, ElMessage } from 'element-plus'
- import 'vue3-json-viewer/dist/index.css'
- import { useRoute } from 'vue-router'
- import api from '/@/api/device'
- interface TableDataState {
- isShowDialog: boolean,
- productData: object[],
- deviceKeyList: string[];
- gatewayKey: string;
- tableData: {
- data: []
- total: number
- loading: boolean
- param: {
- pageNum: number
- pageSize: number
- productKey: number
- status: string
- dateRange: string[]
- }
- },
- ruleForm: {
- productKey: string | number
- },
- rules: {}
- }
- export default defineComponent({
- name: 'MutipleBindDialog',
- setup(prop, { emit }) {
- const route = useRoute()
- const state = reactive<TableDataState>({
- gatewayKey: '',
- deviceKeyList: [],
- isShowDialog: false,
- productData: [],
- tableData: {
- data: [],
- total: 0,
- loading: false,
- param: {
- pageNum: 1,
- pageSize: 20,
- productKey: 0,
- status: '',
- dateRange: [],
- },
- },
- ruleForm: {
- productKey: ''
- },
- rules: {
- productKey: [{ required: true, message: '所属产品不能为空', trigger: 'blur' }],
- }
- })
- const getDeviceList = () => {
- if (!state.ruleForm.productKey) {
- state.tableData.data = [];
- state.tableData.total = 0;
- return;
- }
- state.tableData.loading = true;
- api.device.getSubList({
- "productKey": state.ruleForm.productKey,
- "pageSize": state.tableData.param.pageSize,
- "pageNum": state.tableData.param.pageNum
- }).then((res: any) => {
- state.tableData.data = res.device;
- state.tableData.total = res.Total;
- }).finally(() => (state.tableData.loading = false));
- };
- const getProductList = () => {
- api.product.getSubList().then((res: any) => {
- state.productData = res.product;
- state.ruleForm.productKey = res.product[0].key
- getDeviceList()
- state.isShowDialog = true;
- });
- };
- const openDialog = (gatewayKey: any) => {
- state.gatewayKey = gatewayKey;
- getProductList()
- };
- // 多选框选中数据
- const handleSelectionChange = (selection: any[]) => {
- state.deviceKeyList = selection.map((item) => item.key);
- };
- const confirmBind = () => {
- let msg = '是否进行批量绑定?';
- if (state.deviceKeyList.length === 0) {
- ElMessage.error('请选择要批量绑定的数据。');
- return;
- }
- ElMessageBox.confirm(msg, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- api.device.mutipleBind({
- "gatewayKey": state.gatewayKey,
- "subKeys": state.deviceKeyList
- }).then(() => {
- ElMessage.success('绑定成功');
- emit('bindSuccess')
- state.isShowDialog = false;
- });
- })
- };
- const handleChange = (productKey: number) => {
- state.ruleForm.productKey = productKey;
- getDeviceList()
- }
- return {
- openDialog,
- getProductList,
- confirmBind,
- getDeviceList,
- handleSelectionChange,
- handleChange,
- ...toRefs(state),
- }
- },
- })
- </script>
|