index.vue 27.3 KB
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
<template>
	<div class="NCC-common-layout">
		<div class="NCC-common-layout-center">
			<el-row class="NCC-common-search-box" :gutter="16">
				<el-form @submit.native.prevent>
					<el-col :span="6">
						<el-form-item>
							<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
							<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
						</el-form-item>
					</el-col>
				</el-form>
			</el-row>
			<div class="NCC-common-layout-main NCC-flex-main">
				<div class="NCC-common-head">
					<div>
						<el-button type="primary" icon="el-icon-plus" @click="addOrUpdateHandle()">新增</el-button>
					</div>
					<div class="NCC-common-head-right">
						<el-tooltip effect="dark" content="刷新" placement="top">
							<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="reset()" />
						</el-tooltip>
						<screenfull isContainer />
					</div>
				</div>
                <NCC-table v-loading="listLoading" :data="list">
					<el-table-column prop="version" label="App版本号" align="left" />
					<el-table-column prop="createTime" label="创建时间" align="center" width="180">
						<template slot-scope="scope">
							{{ scope.row.createTime ? new Date(scope.row.createTime).toLocaleString() : '-' }}
						</template>
					</el-table-column>
					<el-table-column label="操作" fixed="right" width="200">
							<template slot-scope="scope">
							<el-button type="primary" size="mini" @click="pushUpdate(scope.row)">推送更新</el-button>
							<!-- <el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >编辑</el-button> -->
							<!-- <el-button type="text" @click="handleDel(scope.row.id)" class="NCC-table-delBtn" >删除</el-button> -->
						</template>
					</el-table-column>
				</NCC-table>
                <pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize" @pagination="initData" />
            </div>
        </div>
		<NCC-Form v-if="formVisible" ref="NCCForm" @refresh="refresh" />
		<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download" />
		
		<!-- 推送更新弹窗 -->
		<el-dialog 
			title="" 
			:visible.sync="pushUpdateVisible" 
			width="1200px" 
			:close-on-click-modal="false" 
			class="modern-push-update-dialog"
			:top="'3vh'"
			:show-close="true"
		>
			<div class="modern-push-update-content">
				<!-- 顶部信息栏 -->
				<div class="update-header">
					<div class="header-left">
						<div class="update-title">
							<i class="el-icon-upload2"></i>
							<span>推送应用更新</span>
						</div>
						<div class="update-subtitle">选择要推送更新的设备</div>
					</div>
					<div class="header-right">
						<div class="version-info">
							<span class="version-label">目标版本</span>
							<span class="version-number">{{ currentUpdateInfo.version }}</span>
						</div>
						<div class="update-time">
							{{ currentUpdateInfo.createTime ? new Date(currentUpdateInfo.createTime).toLocaleString() : '-' }}
						</div>
					</div>
				</div>

				<!-- 主要内容区域 -->
				<div class="main-content">
					<!-- 设备列表 -->
					<div class="device-section">
						<div class="section-header">
							<div class="header-title">
								<i class="el-icon-cpu"></i>
								<span>设备列表</span>
							</div>
							<div class="header-actions">
								<el-dropdown @command="handleBatchSelect" trigger="click">
									<el-button type="text" size="small">
										<i class="el-icon-s-operation"></i>
									</el-button>
									<el-dropdown-menu slot="dropdown">
										<el-dropdown-item command="all">全选当前页</el-dropdown-item>
										<el-dropdown-item command="online">全选在线设备</el-dropdown-item>
										<el-dropdown-item command="outdated">全选待更新设备</el-dropdown-item>
										<el-dropdown-item command="clear" divided>清空选择</el-dropdown-item>
									</el-dropdown-menu>
								</el-dropdown>
							</div>
						</div>

						<!-- 搜索和筛选 -->
						<div class="search-section">
							<el-input
								v-model="deviceSearchKeyword"
								placeholder="搜索设备名称或编号"
								prefix-icon="el-icon-search"
								clearable
								@input="handleDeviceSearch"
								class="modern-search-input"
							/>
							<div class="filter-chips">
								<div 
									class="filter-chip" 
									:class="{ active: deviceFilterStatus === 'all' }"
									@click="setDeviceFilter('all')"
								>
									全部
								</div>

								<div 
									class="filter-chip" 
									:class="{ active: deviceFilterStatus === 'updated' }"
									@click="setDeviceFilter('updated')"
								>
									已更新
								</div>
								<div 
									class="filter-chip" 
									:class="{ active: deviceFilterStatus === 'outdated' }"
									@click="setDeviceFilter('outdated')"
								>
									待更新
								</div>
							</div>
						</div>

						<!-- 设备列表 -->
						<div class="device-list" v-loading="deviceListLoading">
							<div v-for="device in filteredDeviceList" :key="device.id" class="modern-device-card" :class="{ 'selected': device.selected }">
								<el-checkbox v-model="device.selected" class="device-checkbox">
									<div class="device-content">
										<div class="device-main">
											<div class="device-name">{{ device.deviceName }}</div>
											<div class="device-code">{{ device.deviceCode }}</div>
										</div>
										<div class="device-meta">
											<div class="device-version" :class="{ 'updated': device.appVersion === currentUpdateInfo.version }">
												{{ device.appVersion || '未知' }}
											</div>
										</div>
									</div>
								</el-checkbox>
							</div>
						</div>

						<!-- 分页 -->
						<div class="pagination-wrapper" v-if="devicePagination.total > devicePagination.pageSize">
							<el-pagination
								@current-change="handleDevicePageChange"
								:current-page="devicePagination.currentPage"
								:page-size="devicePagination.pageSize"
								:total="devicePagination.total"
								layout="prev, pager, next"
								background
								class="modern-pagination"
							/>
						</div>
					</div>
				</div>

				<!-- 底部操作按钮 -->
				<div class="bottom-actions">
					<div class="action-info">
						<span class="selected-count">已选择:{{ selectedDeviceCount }} 台设备</span>
						<span class="outdated-count">待更新:{{ outdatedDeviceCount }} 台</span>
					</div>
					<div class="action-buttons">
						<el-button 
							type="primary" 
							size="medium"
							:disabled="selectedDeviceCount === 0"
							@click="confirmPushUpdate"
							:loading="pushLoading"
						>
							确认推送 ({{ selectedDeviceCount }})
						</el-button>
						<el-button 
							size="medium"
							@click="pushUpdateVisible = false"
						>
							取消
						</el-button>
					</div>
				</div>
			</div>
		</el-dialog>
	</div>
</template>
<script>
    import request from '@/utils/request'
    import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
    import NCCForm from './Form'
    import ExportBox from './ExportBox'
    import { previewDataInterface } from '@/api/systemData/dataInterface'
	export default {
        components: { NCCForm, ExportBox },
        data() {
            return {
				query: {
				},
                list: [],
                listLoading: true,
                multipleSelection: [], total: 0,
                listQuery: {
                    currentPage: 1,
                    pageSize: 20,
					sort: "desc",
                    sidx: "",
                },
                formVisible: false,
                exportBoxVisible: false,
                // 推送更新相关
                pushUpdateVisible: false,
                deviceListLoading: false,
                pushLoading: false,
                currentUpdateInfo: {},
                deviceList: [],
                // 搜索筛选相关
                deviceSearchKeyword: '',
                deviceFilterStatus: 'all', // all, online, offline
                devicePagination: {
                    currentPage: 1,
                    pageSize: 18, // 调整为18个设备
                    total: 0
                },
                // 刷新设备状态相关
                deviceStatusLoading: false,
				columnList: [
                    { prop: 'version', label: 'App版本号' },
				],
			}
        },
		computed: {
			// 筛选后的设备列表
			filteredDeviceList() {
				let filtered = this.deviceList;
				
				// 按状态筛选
				if (this.deviceFilterStatus === 'updated') {
					filtered = filtered.filter(device => device.appVersion === this.currentUpdateInfo.version);
				} else if (this.deviceFilterStatus === 'outdated') {
					filtered = filtered.filter(device => device.appVersion !== this.currentUpdateInfo.version);
				}
				
				// 按关键词搜索
				if (this.deviceSearchKeyword) {
					const keyword = this.deviceSearchKeyword.toLowerCase();
					filtered = filtered.filter(device => 
						device.deviceName.toLowerCase().includes(keyword) ||
						device.deviceCode.toLowerCase().includes(keyword)
					);
				}
				
				// 更新分页总数
				this.devicePagination.total = filtered.length;
				
				// 分页处理
				const start = (this.devicePagination.currentPage - 1) * this.devicePagination.pageSize;
				const end = start + this.devicePagination.pageSize;
				return filtered.slice(start, end);
			},
			
			// 设备统计
			totalDeviceCount() {
				return this.deviceList.length;
			},
			

			
			updatedDeviceCount() {
				return this.deviceList.filter(device => device.appVersion === this.currentUpdateInfo.version).length;
			},
			
			outdatedDeviceCount() {
				return this.deviceList.filter(device => device.appVersion !== this.currentUpdateInfo.version).length;
			},
			
			// 已选择设备数量
			selectedDeviceCount() {
				return this.deviceList.filter(device => device.selected).length;
			}
		},
		created() {
			this.initData()
		},
		methods: {
			initData() {
                this.listLoading = true;
                let _query = {
                    ...this.listQuery,
                    ...this.query
                };
                let query = {}
                for (let key in _query) {
                    if (Array.isArray(_query[key])) {
                        query[key] = _query[key].join()
                    } else {
                        query[key] = _query[key]
                    }
                }
                request({
                    url: `/api/Extend/UavAppUpdateInfo`,
                    method: 'GET',
                    data: query
                }).then(res => {
                    this.list = res.data.list
                    this.total = res.data.pagination.total
                    this.listLoading = false
                })
            },
			handleDel(id) {
                this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
                    type: 'warning'
                }).then(() => {
                    request({
                        url: `/api/Extend/UavAppUpdateInfo/${id}`,
                        method: 'DELETE'
                    }).then(res => {
                        this.$message({
                            type: 'success',
                            message: res.msg,
                            onClose: () => {
                                this.initData()
                            }
                        });
                    })
                }).catch(() => {
                });
            },
			addOrUpdateHandle(id, isDetail) {
                this.formVisible = true
                this.$nextTick(() => {
                    this.$refs.NCCForm.init(id, isDetail)
                })
            },
			search() {
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "",
                }
                this.initData()
            },
            refresh(isrRefresh) {
                this.formVisible = false
                if (isrRefresh) this.reset()
            },
            reset() {
                for (let key in this.query) {
                    this.query[key] = undefined
                }
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "",
                }
                this.initData()
            },
            
            // 推送更新相关方法
            pushUpdate(row) {
                this.currentUpdateInfo = row;
                this.pushUpdateVisible = true;
                this.resetDeviceSelection();
                this.loadDeviceList();
            },
            
            // 重置设备选择状态
            resetDeviceSelection() {
                this.deviceSearchKeyword = '';
                this.deviceFilterStatus = 'all';
                this.devicePagination.currentPage = 1;
            },
            
            // 加载设备列表
            loadDeviceList() {
                this.deviceListLoading = true;
                request({
                    url: '/api/Extend/UavDevice/GetDeviceListForUpdate',
                    method: 'GET',
                    data: {
                        currentPage: 1,
                        pageSize: 1000, // 获取所有设备
                        sort: "desc",
                        sidx: ""
                    }
                }).then(res => {
                    this.deviceList = res.data.list.map(device => ({
                        ...device,
                        selected: false,
                        isOnline: true // 默认在线,不再检测
                    }));
                    
                    this.deviceListLoading = false;
                }).catch(() => {
                    this.deviceListLoading = false;
                });
            },
            

            
            // 处理设备搜索
            handleDeviceSearch() {
                this.devicePagination.currentPage = 1; // 重置到第一页
            },
            
            // 设置设备筛选状态
            setDeviceFilter(status) {
                this.deviceFilterStatus = status;
                this.devicePagination.currentPage = 1; // 重置到第一页
            },
            
            // 处理设备分页
            handleDevicePageChange(page) {
                this.devicePagination.currentPage = page;
            },
            
            // 全选当前页设备
            selectAllDevices() {
                this.filteredDeviceList.forEach(device => {
                    device.selected = true;
                });
            },
            
            // 全选所有在线设备
            selectAllOnlineDevices() {
                this.deviceList.forEach(device => {
                    if (device.isOnline) {
                        device.selected = true;
                    }
                });
            },
            
            // 全选所有待更新设备
            selectAllOutdatedDevices() {
                this.deviceList.forEach(device => {
                    if (device.appVersion !== this.currentUpdateInfo.version) {
                        device.selected = true;
                    }
                });
            },
            
            // 处理批量选择下拉菜单
            handleBatchSelect(command) {
                switch (command) {
                    case 'all':
                        this.selectAllDevices();
                        break;
                    case 'online':
                        this.selectAllOnlineDevices();
                        break;
                    case 'outdated':
                        this.selectAllOutdatedDevices();
                        break;
                    case 'clear':
                        this.clearSelection();
                        break;
                }
            },
            
            // 清空选择
            clearSelection() {
                this.deviceList.forEach(device => {
                    device.selected = false;
                });
            },
            

            
            // 确认推送更新
            confirmPushUpdate() {
                const selectedDevices = this.deviceList.filter(device => device.selected);
                if (selectedDevices.length === 0) {
                    this.$message.warning('请选择要推送的设备');
                    return;
                }
                
                console.log(this.currentUpdateInfo)
                this.pushLoading = true;
                
                // 获取更新信息的下载地址
                let downloadUrl = 'https://wrj.cqjiangzhichao.cn/app.apk'; // 默认地址
                
                if (this.currentUpdateInfo.path) {
                    try {
                        // 解析path的JSON字符串
                        const pathArray = JSON.parse(this.currentUpdateInfo.path);
                        if (pathArray && pathArray.length > 0 && pathArray[0].url) {
                            // 如果是相对路径,需要拼接完整的URL
                            if (pathArray[0].url.startsWith('/')) {
                                downloadUrl = 'https://wrj.cqjiangzhichao.cn' + pathArray[0].url;
                            } else {
                                downloadUrl = pathArray[0].url;
                            }
                        }
                    } catch (error) {
                        console.error('解析path失败:', error);
                    }
                }
                
                // 调用UavDevice的PushUpdate接口
                const promises = selectedDevices.map(device => {
                    return request({
                        url: `/api/Extend/UavDevice/PushAppUpdate`,
                        method: 'POST',
                        params: {
                            deviceCode: device.deviceCode,
                            downloadUrl: downloadUrl
                        }
                    });
                });
                
                Promise.all(promises).then(responses => {
                    const successCount = responses.filter(res => res.code === 200).length;
                    const failCount = responses.length - successCount;
                    
                    if (failCount === 0) {
                        this.$message.success(`推送更新成功,已推送到 ${selectedDevices.length} 个设备`);
                    } else {
                        this.$message.warning(`推送完成,成功:${successCount}个设备,失败:${failCount}个设备`);
                    }
                    
                    this.pushUpdateVisible = false;
                    this.pushLoading = false;
                }).catch(() => {
                    this.$message.error('推送更新失败');
                    this.pushLoading = false;
                });
            },


		}
    }
</script>

<style scoped>
/* 现代化弹窗样式 */
.modern-push-update-dialog .el-dialog {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modern-push-update-dialog .el-dialog__header {
    display: none;
}

.modern-push-update-dialog .el-dialog__body {
    padding: 0;
    max-height: 90vh;
    overflow: hidden;
}

.modern-push-update-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* 顶部信息栏 */
.update-header {
    padding: 16px 24px 12px;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.header-left {
    flex: 1;
}

.update-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
}

.update-title i {
    margin-right: 6px;
    font-size: 20px;
    color: #3b82f6;
}

.update-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.header-right {
    text-align: right;
}

.version-info {
    margin-bottom: 8px;
}

.version-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.version-number {
    font-size: 16px;
    font-weight: 600;
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.update-time {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

/* 统计信息栏 */
.stats-bar {
    display: flex;
    background: white;
    margin: 20px 32px;
    border-radius: 12px;
    padding: 20px 24px;
    gap: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-item {
    text-align: center;
    color: #1e293b;
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.stat-number.online {
    color: #10b981;
}

.stat-number.updated {
    color: #10b981;
}

.stat-number.outdated {
    color: #f59e0b;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    display: flex;
    background: white;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin: 0 24px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 左侧设备列表 */
.device-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.section-header {
    padding: 12px 20px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.header-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.header-title i {
    margin-right: 8px;
    color: #3b82f6;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-actions .el-button {
    padding: 8px;
    border-radius: 8px;
    color: #64748b;
}

.header-actions .el-button:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

/* 搜索和筛选 */
.search-section {
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.modern-search-input {
    margin-bottom: 12px;
}

.modern-search-input .el-input__inner {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s;
}

.modern-search-input .el-input__inner:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.filter-chip:hover {
    background: #f1f5f9;
    color: #374151;
    border-color: #d1d5db;
}

.filter-chip.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* 设备列表 */
.device-list {
    flex: 1;
    padding: 12px 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    min-height: 280px;
}

.modern-device-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.modern-device-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.modern-device-card.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2), 0 4px 6px -2px rgba(59, 130, 246, 0.1);
}



.device-checkbox {
    width: 100%;
}

.device-checkbox .el-checkbox__label {
    width: 100%;
    padding-left: 0;
}

.device-content {
    width: 100%;
}

.device-main {
    margin-bottom: 6px;
}

.device-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1.2;
}

.modern-device-card.selected .device-name {
    color: white;
}

.device-code {
    font-size: 12px;
    color: #64748b;
}

.modern-device-card.selected .device-code {
    color: rgba(255, 255, 255, 0.8);
}

.device-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.device-version {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
    background: #f8fafc;
    color: #64748b;
}

.device-version.updated {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.modern-device-card.selected .device-version {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-device-card.selected .device-version.updated {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* 分页 */
.pagination-wrapper {
    padding: 6px 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.modern-pagination .el-pagination.is-background .el-pager li {
    border-radius: 8px;
    margin: 0 2px;
}

.modern-pagination .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #3b82f6;
}

/* 底部操作按钮 */
.bottom-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    margin: 0 24px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -2px 4px -1px rgba(0, 0, 0, 0.05);
}

.action-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

.selected-count {
    color: #3b82f6;
    font-weight: 500;
}



.outdated-count {
    color: #f59e0b;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-buttons .el-button {
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.action-buttons .el-button--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
}

.action-buttons .el-button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.action-buttons .el-button--primary:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    transform: none;
    box-shadow: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .device-list {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .device-list {
        grid-template-columns: 1fr;
    }
    
    .update-header {
        padding: 24px 24px 16px;
    }
    
    .section-header,
    .search-section {
        padding: 16px 24px;
    }
    
    .device-list {
        padding: 16px 24px;
    }
    
    .bottom-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .action-info {
        justify-content: center;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .device-grid {
        grid-template-columns: 1fr;
    }
}
</style>