|
|
@@ -0,0 +1,121 @@
|
|
|
+<template>
|
|
|
+ <el-card class="tjm_card_style_custom">
|
|
|
+ <div class="tjm_card_title">查询表格</div>
|
|
|
+ <div class="tjm_card_select">
|
|
|
+ <el-form class="tjm_card_select_left" :model="params" inline label-width="80px" label-position="left">
|
|
|
+ <el-form-item label="政策名称">
|
|
|
+ <el-input v-model="params.name" clearable placeholder="请输入政策名称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="政策等级">
|
|
|
+ <el-select v-model="params.zcLevel" clearable placeholder="请选择政策等级">
|
|
|
+ <el-option v-for="item in levelDic" :key="item" :label="item" :value="item"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="政策类别">
|
|
|
+ <el-select v-model="params.zcType" clearable placeholder="请选择政策类别">
|
|
|
+ <el-option v-for="item in typeDic" :key="item" :label="item" :value="item"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="发布时间">
|
|
|
+ <el-date-picker v-model="createTime" type="daterange" value-format="YYYY-MM-DD" range-separator="-" start-placeholder="开始时间" end-placeholder="结束时间"></el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="search" @click="reloadTable">搜索</el-button>
|
|
|
+ <el-button icon="refresh-right" @click="reset">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <el-divider></el-divider>
|
|
|
+
|
|
|
+ <div class="tjm_card_table">
|
|
|
+ <el-table v-loading="loading" row-key="id" header-cell-class-name="tjm_card_table_header" height="400" :data="tableData" border>
|
|
|
+ <el-table-column type="index" label="序号" width="55"></el-table-column>
|
|
|
+ <template v-for="(item, index) in columns" :key="index">
|
|
|
+ <el-table-column :label="item.label" :prop="item.props" :width="item.width || 180" show-overflow-tooltip></el-table-column>
|
|
|
+ </template>
|
|
|
+ <el-table-column label="操作" fixed="right" width="220">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button type="primary" link icon="tickets" @click="table_detail(scope.row)">详情</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <div class="tjm_card_pagination">
|
|
|
+ <yh-pagination v-model:pageNo="params.page" v-model:pageSize="params.size" :total="total" @paginationChange="reloadTable"></yh-pagination>
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+
|
|
|
+ <policy-detail v-if="dialog" ref="policyDetail" @closed="dialog = false"></policy-detail>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import API from "@/api/policy/share"
|
|
|
+import { levelDic, typeDic } from "@/views/policyShare/main";
|
|
|
+import { columns } from "./main";
|
|
|
+
|
|
|
+import yhPagination from "@/components/Pagination/index.vue";
|
|
|
+import policyDetail from "@/views/policyShare/dialog.vue";
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ yhPagination,
|
|
|
+ policyDetail
|
|
|
+ },
|
|
|
+
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ columns, levelDic, typeDic,
|
|
|
+
|
|
|
+ loading: false,
|
|
|
+ createTime: [],
|
|
|
+ params: {
|
|
|
+ page: 1,
|
|
|
+ size: 10,
|
|
|
+ isInWh: 1,
|
|
|
+ status: "done"
|
|
|
+ },
|
|
|
+
|
|
|
+ total: 0,
|
|
|
+ tableData: [],
|
|
|
+
|
|
|
+ dialog: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ this.reloadTable();
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ reloadTable() {
|
|
|
+ this.params.beginCreateTime = this.createTime && this.createTime.length && this.createTime[0] + " 00:00:00" || null;
|
|
|
+ this.params.endCreateTime = this.createTime && this.createTime.length && this.createTime[1] + " 23:59:59" || null;
|
|
|
+
|
|
|
+ this.loading = true;
|
|
|
+ API.get(this.params).then(res => {
|
|
|
+ this.loading = false;
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.tableData = res.data.records;
|
|
|
+ this.total = res.data.total;
|
|
|
+ } else ElMessage.error(res.msg);
|
|
|
+ }).catch(() => this.loading = false);
|
|
|
+ },
|
|
|
+
|
|
|
+ reset() {
|
|
|
+ this.createTime = [];
|
|
|
+ for (const key in this.params) {
|
|
|
+ if (key == "page") this.params[key] = 1;
|
|
|
+ else if (key == "size") this.params[key] = 10;
|
|
|
+ else this.params[key] = null;
|
|
|
+ }
|
|
|
+ this.reloadTable();
|
|
|
+ },
|
|
|
+
|
|
|
+ table_detail(row, mode = "detail") {
|
|
|
+ this.dialog = true;
|
|
|
+ this.$nextTick(() => this.$refs.policyDetail.open(mode).setData(row.id));
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|