| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <template>
- <div v-if="show" class="domain-policy-detail">
- <policy-detail ref="policyDetail" @closed="show = false"></policy-detail>
- </div>
- <el-card v-else class="tjm_card_style_custom">
- <div class="tjm_card_title">条件检索</div>
- <div class="tjm_card_select">
- <el-scrollbar>
- <el-form class="tjm_card_select_left" :model="params" label-width="80px" label-position="left">
- <el-row :gutter="15">
- <el-col :lg="8" :md="12" :xs="24">
- <el-form-item label="政策编号">
- <el-input v-model="params.businessNo" clearable placeholder="请输入政策编号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :lg="8" :md="12" :xs="24">
- <el-form-item label="政策名称">
- <el-input v-model="params.name" clearable placeholder="请输入政策名称"></el-input>
- </el-form-item>
- </el-col>
- <el-col :lg="8" :md="12" :xs="24">
- <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-col>
- <template v-if="paramsIsCollapse">
- <el-col :lg="8" :md="12" :xs="24">
- <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-col>
- <el-col :lg="8" :md="12" :xs="24">
- <el-form-item label="入库类别">
- <el-select v-model="params.inWhType" clearable placeholder="请选择入库类别">
- <el-option v-for="item in storageTypeDic" :key="item" :label="item" :value="item"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :lg="8" :md="12" :xs="24">
- <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-col>
- </template>
- </el-row>
- </el-form>
- <div class="tjm_card_select_right">
- <el-button type="primary" icon="search" @click="reloadTable">搜索</el-button>
- <el-button icon="refresh-right" @click="reset">重置</el-button>
- <el-button type="primary" link @click="paramsIsCollapse = !paramsIsCollapse">
- <template v-if="paramsIsCollapse">收起<tjm-icon-ep-arrow-up-bold /></template>
- <template v-else>更多<tjm-icon-ep-arrow-down-bold /></template>
- </el-button>
- </div>
- </el-scrollbar>
- </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 @row-click="table_detail">
- <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" :min-width="item.width || 180" show-overflow-tooltip>
- <template #default="scope">{{ columnFormat(scope.row, item.props) }}</template>
- </el-table-column>
- </template>
- </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>
- </template>
- <script>
- import API from "@/api/policy/share";
- import { levelDic, typeDic, storageTypeDic } from "@/views/policyShare/main";
- import { columns } from "./main";
- import yhPagination from "@/components/Pagination/index.vue";
- import policyDetail from "@/views/home/policyDetail.vue";
- export default {
- components: {
- yhPagination,
- policyDetail
- },
- data() {
- return {
- columns, levelDic, typeDic, storageTypeDic,
- loading: false,
- paramsIsCollapse: false,
- createTime: [],
- params: {
- page: 1,
- size: 10,
- isInWh: 1,
- status: "done"
- },
- total: 0,
- tableData: [],
- show: false
- }
- },
- mounted() {
- if (this.$route.query.zcType) this.params["zcType"] = this.$route.query.zcType;
- if (this.$route.query.inWhType) this.params["inWhType"] = this.$route.query.inWhType;
- if (this.$route.query.name) this.params["name"] = this.$route.query.name;
- this.reloadTable();
- },
- methods: {
- columnFormat(row, props) {
- if (props == "createTime") return row[props].split(" ")[0];
- return row[props];
- },
- 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 = [];
- this.params = {
- page: 1,
- size: 10,
- isInWh: 1,
- status: "done"
- }
- if (this.$route.query.zcType) this.params["zcType"] = this.$route.query.zcType;
- if (this.$route.query.inWhType) this.params["inWhType"] = this.$route.query.inWhType;
-
- this.reloadTable();
- },
- table_detail(row) {
- this.show = true;
- nextTick(() => this.$refs.policyDetail.setData(row));
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .domain-policy-detail :deep(.tjm_card_style_custom) > .el-card__body {
- max-height: calc(
- $base-main-height - $base-padding - 2 * var(--el-card-padding) - 54px
- );
- overflow: auto;
- }
- </style>
|