123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- <template>
- <div class="app-container">
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- label-width="68px"
- >
- <el-form-item label="项目名称">
- <el-input
- v-model="queryParams.atvName"
- placeholder="请输入项目名称"
- ></el-input>
- </el-form-item>
- <el-form-item label="建设规模">
- <el-input
- v-model="queryParams.scale"
- placeholder="请输入建设规模"
- ></el-input>
- <!-- <el-select v-model="queryParams.scale" placeholder="请输入建设规模">
- <el-option
- v-for="item in scaleList"
- :key="item.value + 'typeList'"
- :label="item.label"
- :value="item.label"
- ></el-option>
- </el-select> -->
- </el-form-item>
- <el-form-item label="年度计划投资" label-width="120px">
- <el-input
- style="width: 130px"
- v-model="queryParams.least"
- type="number"
- placeholder="最小查询范围"
- ></el-input>
- <div class="ec-input-range-divider"></div>
- <el-input
- style="width: 130px"
- type="number"
- v-model="queryParams.most"
- placeholder="最大查询范围"
- ></el-input>
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置</el-button
- >
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['business:ARTICLE:add']"
- :disabled="isButtonDisabled"
- >新增</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- size="mini"
- icon="el-icon-delete"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['business:ARTICLE:remove']"
- >删除</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- size="mini"
- icon="el-icon-edit"
- @click="handleInsert"
- v-hasPermi="['business:ARTICLE:insert']"
- >设置重点项目录入开放时间</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table :data="ARTICLEList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" :selectable="selected"></el-table-column>
- <el-table-column label="保税区名称" width="150" show-overflow-tooltip align="center" prop="deptName">
- <template slot-scope="scope">
- {{ scope.row.deptName }}
- </template>
- </el-table-column>
- <el-table-column label="项目名称" width="180" show-overflow-tooltip align="center" prop="atvName">
- <template slot-scope="scope">
- {{ scope.row.atvName }}
- </template>
- </el-table-column>
- <el-table-column label="建设规模" show-overflow-tooltip align="center" prop="scale">
- <template slot-scope="scope">
- {{ scope.row.scale }}
- <!-- <el-tag v-if="scope.row.scale == 1" type="success">小型</el-tag>
- <el-tag v-else-if="scope.row.scale == 2" type="success">中型</el-tag>
- <el-tag v-else-if="scope.row.scale == 3" type="success">大型</el-tag>-->
- </template>
- </el-table-column>
- <el-table-column label="年度投资计划(万)" show-overflow-tooltip align="center" prop="plan">
- <template slot-scope="scope">
- {{ scope.row.plan }}
- </template>
- </el-table-column>
- <el-table-column
- label="总投资金额(万)"
- align="center"
- prop="totalPlan"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.totalPlan }}
- </template>
- </el-table-column>
- <el-table-column
- label="实际完成投资额(万)"
- align="center"
- prop="reality"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.reality }}
- </template>
- </el-table-column>
- <el-table-column label="投资完成百分比" show-overflow-tooltip align="center" prop="retio">
- <template slot-scope="scope">
- {{
- scope.row.retio
- ? (scope.row.retio * 100).toFixed(2) + "%"
- : scope.row.retio
- }}
- </template>
- </el-table-column>
- <el-table-column label="形象进度" width="240" show-overflow-tooltip align="center" prop="schedule">
- <template slot-scope="scope">
- {{ scope.row.schedule }}
- </template>
- </el-table-column>
- <el-table-column label="项目审核状态" align="center" prop="status">
- <template slot-scope="scope">
- <el-tag v-if="scope.row.status == 0">草稿</el-tag>
- <el-tag v-else-if="scope.row.status == 1" type="info">审核中</el-tag>
- <el-tag v-else-if="scope.row.status == 2" type="danger"
- >审核拒绝</el-tag
- >
- <el-tag v-else-if="scope.row.status == 3" type="success"
- >已审核</el-tag
- >
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- fixed="right"
- width="140"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['business:ARTICLE:edit']"
- v-if="scope.row.status == 0 || scope.row.status == 2"
- >修改</el-button
- >
- <el-button
- size="mini"
- type="text"
- @click="handleTask(scope.row)"
- v-hasPermi="['business:ARTICLE:edit']"
- v-if="scope.row.status == 0 || scope.row.status == 2"
- >提交审核</el-button
- >
- <el-button
- size="mini"
- type="text"
- @click="showDetail(scope.row)"
- v-hasPermi="['business:ARTICLE:query']"
- >详情</el-button
- >
- <el-button
- size="mini"
- type="text"
- v-if="scope.row.status == 3"
- @click="showEnterData(scope.row)"
- v-hasPermi="['business:ARTICLE:edit']"
- >数据填报</el-button
- >
- <el-button
- size="mini"
- type="text"
- v-if="scope.row.status == 0"
- @click="handleDelete(scope.row)"
- v-hasPermi="['business:ARTICLE:remove']"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 设置重点项目录入开放时间对话框 -->
- <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="500px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-form-item label="开放时间" prop="beginTime">
- <el-date-picker
- v-model="form.beginTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="截止时间" prop="endTime">
- <el-date-picker
- v-model="form.endTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择日期">
- </el-date-picker>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- listARTICLE,
- getARTICLE,
- delARTICLE,
- addARTICLE,
- updateARTICLE,
- getUserInfo,
- articleDate,
- getqueryArticleDate,
- } from '@/api/portal/ARTICLE/ARTICLE.js'
- import edit from "./edit.vue";
- import enterData from "./enterData.vue";
- import detail from "./detail.vue";
- export default {
- name: "ARTICLE",
- data() {
- return {
- isButtonDisabled: false,
- scaleList: [
- { label: "小型", value: 1 },
- { label: "中型", value: 2 },
- { label: "大型", value: 3 },
- ],
- statusList: [
- { label: "已保存", value: 0 },
- { label: "审核中", value: 1 },
- { label: "审核驳回", value: 2 },
- { label: "已审核", value: 3 },
- ],
- // 根路径
- baseURL: process.env.VUE_APP_BASE_API,
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 重点项目管理表格数据
- ARTICLEList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- id: null,
- createTime: null,
- createBy: null,
- updateTime: null,
- updateBy: null,
- delFlag: null,
- deptId: null,
- preview: null,
- atvName: null,
- scale: null,
- unit: null,
- content: null,
- plan: null,
- reality: null,
- retio: null,
- schedule: null,
- least:null,
- most:null
- },
- deptId: "",
- // 表单参数
- form: {
- beginTime: '',
- endTime: ''
- },
- rules: {
- beginTime: [
- { required: true, message: "开始时间不能为空", trigger: "blur" }
- ],
- endTime: [
- { required: true, message: "截止时间不能为空", trigger: "blur" },
- {
- validator: (rule, value, callback) => {
- if (new Date(value) < new Date(this.form.beginTime)) {
- callback(new Error("截止时间不能早于开始时间"));
- } else {
- callback();
- }
- },
- trigger: "blur"
- }
- ]
- }
- };
- },
- created() {
- this.getList();
- this.getDeptId();
- this.getqueryArticleDate();
- },
- methods: {
- //选择规则
- selected(row, index) {
- if (row.status != 0) { // 选择多选框的功能就拿来批量删除,所以不是草稿禁选
- return false
- } else {
- return true;
- }
- },
- //获取填报时间
- getqueryArticleDate() {
- getqueryArticleDate().then(res => {
- const beginTime = new Date(res.data.beginTime);
- const endTime = new Date(res.data.endTime);
- const currentTime = new Date();
- // 检查当前时间是否在 beginTime 和 endTime 范围内
- if (currentTime < beginTime || currentTime > endTime) {
- this.isButtonDisabled = true;
- this.$message.warning('当前日期不在填报时间范围内')
- }
- });
- },
- getDeptId() {
- getUserInfo().then((res) => {
- this.deptId = res.user.deptId;
- });
- },
- showDetail(row) {
- const id = row.id || this.ids;
- this.iframe({
- obj: detail,
- param: { id: id },
- title: "详情",
- width: "1050px",
- height: "80%",
- });
- },
- showEnterData(param) {
- this.iframe({
- obj: enterData,
- param: { param: param, deptId: this.deptId },
- title: "数据填报",
- width: "500px",
- height: "350px",
- });
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.id);
- this.single = selection.length !== 1;
- this.multiple = !selection.length;
- },
- /** 查询重点项目管理列表 */
- getList() {
- this.loading = true;
- listARTICLE(this.queryParams).then((response) => {
- this.ARTICLEList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.form.beginTime = '';
- this.form.endTime = '';
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams.atvName = null;
- this.queryParams.scale = null;
- this.queryParams.least = null;
- this.queryParams.most = null;
- this.resetForm("queryForm");
- this.handleQuery();
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.iframe({
- obj: edit,
- param: {},
- title: "添加重点项目",
- width: "1050px",
- height: "80%",
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- const id = row.id || this.ids;
- this.iframe({
- obj: edit,
- param: { id: id },
- title: "修改重点项目",
- width: "1050px",
- height: "80%",
- });
- },
- handleTask(row) {
- row.status = 1;
- updateARTICLE(row).then((response) => {
- if (response.code == 200) {
- this.$modal.msgSuccess("提交审核成功");
- this.getList();
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal
- .confirm("是否确认删除?")
- .then(function () {
- return delARTICLE(ids);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- })
- .catch(() => {});
- },
- //设置重点项目录入开放时间
- handleInsert(){
- this.open = true;
- this.title = "设置重点项目录入开放时间";
- },
- submitForm(){
- if (new Date(this.form.endTime) < new Date(this.form.beginTime)) {
- this.$message.error('截止时间不能早于开始时间');
- return
- }
- const timeData = [new Date(this.form.beginTime).getTime(), new Date(this.form.endTime).getTime()];
- articleDate(timeData).then(res => {
- if (res.code == 200) {
- this.$modal.msgSuccess("设置重点项目录入开放时间成功");
- this.open = false;
- this.getList();
- this.getqueryArticleDate();
- }
- })
- }
- },
- };
- </script>
- <style scoped>
- .ec-input-range-divider {
- display: inline-block;
- width: 7px;
- height: 1px;
- background: #c0c4cc;
- margin-bottom: 4px;
- margin: 0 5px;
- }
- </style>
|