From 3a154bdb0a5aaa2c0ac3eac95a6ba747068bd454 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期二, 13 一月 2026 10:00:37 +0800
Subject: [PATCH] 优化
---
admin/src/views/business/warningPush.vue | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 161 insertions(+), 0 deletions(-)
diff --git a/admin/src/views/business/warningPush.vue b/admin/src/views/business/warningPush.vue
new file mode 100644
index 0000000..170d433
--- /dev/null
+++ b/admin/src/views/business/warningPush.vue
@@ -0,0 +1,161 @@
+<template>
+ <TableLayout :permissions="['business:warningpush:query']">
+ <!-- 鎼滅储琛ㄥ崟 -->
+ <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline>
+ <el-form-item label="鎶ヨ鍒嗙被" prop="warningType">
+ <el-select v-model="searchForm.warningType" placeholder="璇烽�夋嫨" clearable @change="search">
+ <el-option label="瀹夐槻浜嬩欢" value="0"></el-option>
+ <el-option label="娑堥槻浜嬩欢" value="1"></el-option>
+ <el-option label="杞﹁浇浜嬩欢" value="2"></el-option>
+ <el-option label="閽ュ寵鏌滀簨浠�" value="3"></el-option>
+ <el-option label="澶╂皵棰勮" value="4"></el-option>
+ </el-select>
+ </el-form-item>
+ <el-form-item label="鎶ヨ鏍囬" prop="title">
+ <el-input v-model="searchForm.title" placeholder="璇疯緭鍏ユ姤璀︽爣棰�" clearable @keypress.enter.native="search" ></el-input>
+ </el-form-item>
+ <el-form-item label="鎶ヨ鍐呭" prop="content">
+ <el-input v-model="searchForm.content" placeholder="璇疯緭鍏ユ姤璀﹀唴瀹�" clearable @keypress.enter.native="search"></el-input>
+ </el-form-item>
+ <el-form-item label="閫氱煡浜哄憳" prop="content">
+ <el-input v-model="searchForm.memberName" placeholder="璇疯緭鍏ラ�氱煡浜哄憳" clearable @keypress.enter.native="search"></el-input>
+ </el-form-item>
+ <el-form-item label="閫氱煡鐘舵�� " prop="status">
+ <el-select v-model="searchForm.status" placeholder="璇烽�夋嫨" clearable @change="search">
+ <el-option label="鏈�氱煡" value="0"></el-option>
+ <el-option label="閫氱煡鎴愬姛" value="1"></el-option>
+ <el-option label="閫氱煡澶辫触" value="2"></el-option>
+ </el-select>
+ </el-form-item>
+ <el-form-item label="鍙戠敓鏃堕棿" prop="date">
+ <el-date-picker
+ v-model="searchForm.queryStarttime"
+ type="datetime"
+ clearable
+ value-format="yyyy-MM-dd HH:mm:ss"
+ class="w200"
+ placeholder="寮�濮嬫椂闂�" /> 鑷�
+ <el-date-picker
+ v-model="searchForm.queryEndtime"
+ type="datetime"
+ value-format="yyyy-MM-dd HH:mm:ss"
+ class="w200"
+ clearable
+ placeholder="缁撴潫鏃堕棿" />
+ </el-form-item>
+ <section>
+ <el-button type="primary" @click="search">鎼滅储</el-button>
+ <el-button type="primary" :loading="isWorking.export" v-permissions="['business:warningpush:exportExcel']" @click="exportExcel">瀵煎嚭</el-button>
+ <el-button @click="reset">閲嶇疆</el-button>
+ </section>
+ </el-form>
+ <!-- 琛ㄦ牸鍜屽垎椤� -->
+ <template v-slot:table-wrap>
+<!-- <ul class="toolbar" v-permissions="['business:warningpush:create', 'business:warningpush:delete']">
+ <li><el-button type="primary" @click="$refs.operaWarningPushWindow.open('鏂板缓鎶ヨ鎺ㄩ�佽褰�')" icon="el-icon-plus" v-permissions="['business:warningpush:create']">鏂板缓</el-button></li>
+ <li><el-button @click="deleteByIdInBatch" icon="el-icon-delete" v-permissions="['business:warningpush:delete']">鍒犻櫎</el-button></li>
+ </ul>-->
+ <el-table
+ :height="tableHeightNew"
+ v-loading="isWorking.search"
+ :data="tableData.list"
+ stripe
+ @selection-change="handleSelectionChange"
+ >
+ <el-table-column prop="createDate" label="鍙戠敓鏃堕棿" min-width="150px"></el-table-column>
+ <el-table-column prop="warningName" label="鎶ヨ绫诲瀷" min-width="120px" show-tooltip-when-overflow></el-table-column>
+ <el-table-column prop="warningType" label="鎶ヨ鍒嗙被" min-width="100px">
+ <template slot-scope="{row}">
+ <span v-if="row.warningType === 0">瀹夐槻浜嬩欢</span>
+ <span v-if="row.warningType === 1" >娑堥槻浜嬩欢</span>
+ <span v-if="row.warningType === 2" >杞﹁浇浜嬩欢</span>
+ <span v-if="row.warningType === 3" >閽ュ寵鏌滀簨浠�</span>
+ <span v-if="row.warningType === 4" >澶╂皵棰勮</span>
+ </template>
+ </el-table-column>
+ <el-table-column prop="warningLevel" label="鎶ヨ绛夌骇" min-width="100px">
+ <template slot-scope="{row}">
+ <span v-if="row.warningLevel === 0" class="status-grey">浣�</span>
+ <span v-if="row.warningLevel === 1" class="status-yellow" >涓�</span>
+ <span v-if="row.warningLevel === 2" class="status-red">楂�</span>
+ </template>
+ </el-table-column>
+ <el-table-column prop="region" label="鎵�鍦ㄤ綅缃�" min-width="120px" show-tooltip-when-overflow></el-table-column>
+ <el-table-column prop="content" label="鎶ヨ鍐呭" min-width="180px" show-tooltip-when-overflow></el-table-column>
+ <el-table-column prop="memberName" label="閫氱煡浜哄憳" min-width="100px" show-tooltip-when-overflow></el-table-column>
+ <el-table-column prop="companyName" label="浜哄憳閮ㄩ棬" min-width="100px" show-tooltip-when-overflow></el-table-column>
+ <el-table-column prop="status" label="閫氱煡鐘舵��" min-width="100px">
+ <template slot-scope="{row}">
+ <span style="color: rgba(245, 154, 35, 0.996);" v-if="row.status === 0">鏈�氱煡</span>
+ <span v-if="row.status === 1" style="color: rgba(245, 154, 35, 0.996);">閫氱煡鎴愬姛</span>
+ <span v-if="row.status === 2" style="color: rgba(245, 154, 35, 0.996);">鍚屽織澶辫触</span>
+ </template>
+ </el-table-column>
+ <el-table-column
+ v-if="containPermissions(['business:warningpush:update', 'business:warningpush:delete'])"
+ label="鎿嶄綔"
+ min-width="120"
+ fixed="right"
+ >
+<!-- <template slot-scope="{row}">
+ <el-button type="text" @click="$refs.operaWarningPushWindow.open('缂栬緫鎶ヨ鎺ㄩ�佽褰�', row)" icon="el-icon-edit" v-permissions="['business:warningpush:update']">缂栬緫</el-button>
+ <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:warningpush:delete']">鍒犻櫎</el-button>
+ </template>-->
+ </el-table-column>
+ </el-table>
+ <pagination
+ @size-change="handleSizeChange"
+ @current-change="handlePageChange"
+ :pagination="tableData.pagination"
+ >
+ </pagination>
+ </template>
+ <!-- 鏂板缓/淇敼 -->
+ <OperaWarningPushWindow ref="operaWarningPushWindow" @success="handlePageChange"/>
+ </TableLayout>
+</template>
+
+<script>
+import BaseTable from '@/components/base/BaseTable'
+import TableLayout from '@/layouts/TableLayout'
+import Pagination from '@/components/common/Pagination'
+import OperaWarningPushWindow from '@/components/business/OperaWarningPushWindow'
+export default {
+ name: 'WarningPush',
+ extends: BaseTable,
+ components: { TableLayout, Pagination, OperaWarningPushWindow },
+ data () {
+ return {
+ // 鎼滅储
+ searchForm: {
+ id: '',
+ warningId: '',
+ memberName: null,
+ warningType: null,
+ title: '',
+ content: '',
+ status: '',
+ queryEndtime:null,
+ queryStarttime:null
+ }
+ }
+ },
+ created () {
+ this.config({
+ module: '鎶ヨ鎺ㄩ�佽褰�',
+ api: '/business/warningPush',
+ 'field.id': 'id',
+ 'field.main': 'id'
+ })
+ this.search()
+ },
+ methods:{
+ reset () {
+ this.$refs.searchForm.resetFields()
+ this.searchForm.queryStarttime = ''
+ this.searchForm.queryEndtime = ''
+ this.search()
+ }
+ }
+}
+</script>
--
Gitblit v1.9.3