|
@@ -0,0 +1,388 @@
|
|
|
+<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="年份" prop="year">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.year"
|
|
|
+ placeholder="请输入年份"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用地面积" prop="landArea">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.landArea"
|
|
|
+ placeholder="请输入用地面积"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用电量" prop="powerConsumeSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.powerConsumeSum"
|
|
|
+ placeholder="请输入用电量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="能源消费量" prop="energyConsumeSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.energyConsumeSum"
|
|
|
+ placeholder="请输入能源消费量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="研发经费" prop="fundingSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.fundingSum"
|
|
|
+ placeholder="请输入研发经费"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="从业人员数" prop="employeeNumberSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.employeeNumberSum"
|
|
|
+ placeholder="请输入从业人员数"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="利润总额" prop="profitSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.profitSum"
|
|
|
+ placeholder="请输入利润总额"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="企业数量" prop="enterpriseNumbers">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.enterpriseNumbers"
|
|
|
+ placeholder="请输入企业数量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工业总产值" prop="totalIndustrialValueSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.totalIndustrialValueSum"
|
|
|
+ placeholder="请输入工业总产值"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="应税收入" prop="taxableIncomeSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.taxableIncomeSum"
|
|
|
+ placeholder="请输入应税收入"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实缴税金" prop="paidTaxSum">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.paidTaxSum"
|
|
|
+ placeholder="请输入实缴税金"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </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="['industry_oveview:industry_oveview:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['industry_oveview:industry_oveview:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['industry_oveview:industry_oveview:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['industry_oveview:industry_oveview:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" :data="industry_oveviewList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="主键" align="center" prop="id" />
|
|
|
+ <el-table-column label="年份" align="center" prop="year" />
|
|
|
+ <el-table-column label="用地面积" align="center" prop="landArea" />
|
|
|
+ <el-table-column label="用电量" align="center" prop="powerConsumeSum" />
|
|
|
+ <el-table-column label="能源消费量" align="center" prop="energyConsumeSum" />
|
|
|
+ <el-table-column label="研发经费" align="center" prop="fundingSum" />
|
|
|
+ <el-table-column label="从业人员数" align="center" prop="employeeNumberSum" />
|
|
|
+ <el-table-column label="利润总额" align="center" prop="profitSum" />
|
|
|
+ <el-table-column label="企业数量" align="center" prop="enterpriseNumbers" />
|
|
|
+ <el-table-column label="工业总产值" align="center" prop="totalIndustrialValueSum" />
|
|
|
+ <el-table-column label="应税收入" align="center" prop="taxableIncomeSum" />
|
|
|
+ <el-table-column label="实缴税金" align="center" prop="paidTaxSum" />
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['industry_oveview:industry_oveview:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['industry_oveview:industry_oveview: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"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 添加或修改industry_oveview对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="年份" prop="year">
|
|
|
+ <el-input v-model="form.year" placeholder="请输入年份" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用地面积" prop="landArea">
|
|
|
+ <el-input v-model="form.landArea" placeholder="请输入用地面积" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用电量" prop="powerConsumeSum">
|
|
|
+ <el-input v-model="form.powerConsumeSum" placeholder="请输入用电量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="能源消费量" prop="energyConsumeSum">
|
|
|
+ <el-input v-model="form.energyConsumeSum" placeholder="请输入能源消费量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="研发经费" prop="fundingSum">
|
|
|
+ <el-input v-model="form.fundingSum" placeholder="请输入研发经费" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="从业人员数" prop="employeeNumberSum">
|
|
|
+ <el-input v-model="form.employeeNumberSum" placeholder="请输入从业人员数" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="利润总额" prop="profitSum">
|
|
|
+ <el-input v-model="form.profitSum" placeholder="请输入利润总额" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="企业数量" prop="enterpriseNumbers">
|
|
|
+ <el-input v-model="form.enterpriseNumbers" placeholder="请输入企业数量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工业总产值" prop="totalIndustrialValueSum">
|
|
|
+ <el-input v-model="form.totalIndustrialValueSum" placeholder="请输入工业总产值" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="应税收入" prop="taxableIncomeSum">
|
|
|
+ <el-input v-model="form.taxableIncomeSum" placeholder="请输入应税收入" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实缴税金" prop="paidTaxSum">
|
|
|
+ <el-input v-model="form.paidTaxSum" placeholder="请输入实缴税金" />
|
|
|
+ </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 { listIndustry_oveview, getIndustry_oveview, delIndustry_oveview, addIndustry_oveview, updateIndustry_oveview } from "@/api/industry_oveview/industry_oveview";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "Industry_oveview",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // industry_oveview表格数据
|
|
|
+ industry_oveviewList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ year: null,
|
|
|
+ landArea: null,
|
|
|
+ powerConsumeSum: null,
|
|
|
+ energyConsumeSum: null,
|
|
|
+ fundingSum: null,
|
|
|
+ employeeNumberSum: null,
|
|
|
+ profitSum: null,
|
|
|
+ enterpriseNumbers: null,
|
|
|
+ totalIndustrialValueSum: null,
|
|
|
+ taxableIncomeSum: null,
|
|
|
+ paidTaxSum: null
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ year: [
|
|
|
+ { required: true, message: "年份不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询industry_oveview列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listIndustry_oveview(this.queryParams).then(response => {
|
|
|
+ this.industry_oveviewList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ year: null,
|
|
|
+ landArea: null,
|
|
|
+ powerConsumeSum: null,
|
|
|
+ energyConsumeSum: null,
|
|
|
+ fundingSum: null,
|
|
|
+ employeeNumberSum: null,
|
|
|
+ profitSum: null,
|
|
|
+ enterpriseNumbers: null,
|
|
|
+ totalIndustrialValueSum: null,
|
|
|
+ taxableIncomeSum: null,
|
|
|
+ paidTaxSum: null
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加industry_oveview";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id || this.ids
|
|
|
+ getIndustry_oveview(id).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改industry_oveview";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateIndustry_oveview(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addIndustry_oveview(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除industry_oveview编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ return delIndustry_oveview(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ this.download('industry_oveview/industry_oveview/export', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `industry_oveview_${new Date().getTime()}.xlsx`)
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|