|
@@ -1,3 +1,433 @@
|
|
|
<template>
|
|
|
- <div>企业运行数据</div>
|
|
|
-</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="enterpriseName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.enterpriseName"
|
|
|
+ placeholder="请输入企业名称"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="坐落地" prop="location">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.location"
|
|
|
+ placeholder="请输入坐落地"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="行业代码" prop="code">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.code"
|
|
|
+ placeholder="请输入行业代码"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工业总产值" prop="totalIndustrialValue">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.totalIndustrialValue"
|
|
|
+ placeholder="请输入工业总产值"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="应税收入" prop="taxableIncome">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.taxableIncome"
|
|
|
+ placeholder="请输入应税收入"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实缴税金" prop="paidTax">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.paidTax"
|
|
|
+ placeholder="请输入实缴税金"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="研发经费" prop="funding">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.funding"
|
|
|
+ placeholder="请输入研发经费"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="能源消费量" prop="energyConsume">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.energyConsume"
|
|
|
+ placeholder="请输入能源消费量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用电量" prop="powerConsume">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.powerConsume"
|
|
|
+ placeholder="请输入用电量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <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="season">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.season"
|
|
|
+ placeholder="请输入季节"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="月份" prop="month">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.month"
|
|
|
+ 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_run:industry_run: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_run:industry_run: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_run:industry_run: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_run:industry_run:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" :data="industry_runList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="企业名称" align="center" prop="enterpriseName" />
|
|
|
+ <el-table-column label="坐落地" align="center" prop="location" />
|
|
|
+ <el-table-column label="行业代码" align="center" prop="code" />
|
|
|
+ <el-table-column label="工业总产值" align="center" prop="totalIndustrialValue" />
|
|
|
+ <el-table-column label="应税收入" align="center" prop="taxableIncome" />
|
|
|
+ <el-table-column label="实缴税金" align="center" prop="paidTax" />
|
|
|
+ <el-table-column label="研发经费" align="center" prop="funding" />
|
|
|
+ <el-table-column label="能源消费量" align="center" prop="energyConsume" />
|
|
|
+ <el-table-column label="用电量" align="center" prop="powerConsume" />
|
|
|
+ <el-table-column label="年份" align="center" prop="year" />
|
|
|
+ <el-table-column label="季节" align="center" prop="season" />
|
|
|
+ <el-table-column label="月份" align="center" prop="month" />
|
|
|
+ <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_run:industry_run:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['industry_run:industry_run: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_run对话框 -->
|
|
|
+ <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="id">
|
|
|
+ <el-input v-model="form.id" placeholder="请输入主键" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="坐落地" prop="location">
|
|
|
+ <el-input v-model="form.location" placeholder="请输入坐落地" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="行业大类" prop="industryName">
|
|
|
+ <el-input v-model="form.industryName" placeholder="请输入行业大类" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="行业代码" prop="code">
|
|
|
+ <el-input v-model="form.code" placeholder="请输入行业代码" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="主营业务活动" prop="mainBusiness">
|
|
|
+ <el-input v-model="form.mainBusiness" 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="totalIndustrialValue">
|
|
|
+ <el-input v-model="form.totalIndustrialValue" placeholder="请输入工业总产值" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工业增加值" prop="gdp">
|
|
|
+ <el-input v-model="form.gdp" placeholder="请输入工业增加值" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="应税收入" prop="taxableIncome">
|
|
|
+ <el-input v-model="form.taxableIncome" placeholder="请输入应税收入" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实缴税金" prop="paidTax">
|
|
|
+ <el-input v-model="form.paidTax" placeholder="请输入实缴税金" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="主营业务收入" prop="mainBusinessIncome">
|
|
|
+ <el-input v-model="form.mainBusinessIncome" placeholder="请输入主营业务收入" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="从业人员数" prop="employeeNumber">
|
|
|
+ <el-input v-model="form.employeeNumber" placeholder="请输入从业人员数" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="利润总额" prop="profit">
|
|
|
+ <el-input v-model="form.profit" placeholder="请输入利润总额" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="所有者权益" prop="ownerEquity">
|
|
|
+ <el-input v-model="form.ownerEquity" placeholder="请输入所有者权益" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="研发经费" prop="funding">
|
|
|
+ <el-input v-model="form.funding" placeholder="请输入研发经费" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="能源消费量" prop="energyConsume">
|
|
|
+ <el-input v-model="form.energyConsume" placeholder="请输入能源消费量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用电量" prop="powerConsume">
|
|
|
+ <el-input v-model="form.powerConsume" placeholder="请输入用电量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="季节" prop="season">
|
|
|
+ <el-input v-model="form.season" 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_run, getIndustry_run, delIndustry_run, addIndustry_run, updateIndustry_run } from "@/api/industry_run/industry_run";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "Industry_run",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // industry_run表格数据
|
|
|
+ industry_runList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ enterpriseName: null,
|
|
|
+ location: null,
|
|
|
+ code: null,
|
|
|
+ totalIndustrialValue: null,
|
|
|
+ taxableIncome: null,
|
|
|
+ paidTax: null,
|
|
|
+ funding: null,
|
|
|
+ energyConsume: null,
|
|
|
+ powerConsume: null,
|
|
|
+ year: null,
|
|
|
+ season: null,
|
|
|
+ month: null
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ id: [
|
|
|
+ { required: true, message: "主键不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ industryName: [
|
|
|
+ { required: true, message: "行业大类不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ season: [
|
|
|
+ { required: true, message: "季节不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询industry_run列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listIndustry_run(this.queryParams).then(response => {
|
|
|
+ this.industry_runList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ enterpriseName: null,
|
|
|
+ location: null,
|
|
|
+ industryName: null,
|
|
|
+ code: null,
|
|
|
+ mainBusiness: null,
|
|
|
+ landArea: null,
|
|
|
+ totalIndustrialValue: null,
|
|
|
+ gdp: null,
|
|
|
+ taxableIncome: null,
|
|
|
+ paidTax: null,
|
|
|
+ mainBusinessIncome: null,
|
|
|
+ employeeNumber: null,
|
|
|
+ profit: null,
|
|
|
+ ownerEquity: null,
|
|
|
+ funding: null,
|
|
|
+ energyConsume: null,
|
|
|
+ powerConsume: null,
|
|
|
+ year: null,
|
|
|
+ season: null,
|
|
|
+ month: 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.enterpriseName)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加industry_run";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const enterpriseName = row.enterpriseName || this.ids
|
|
|
+ getIndustry_run(enterpriseName).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改industry_run";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.enterpriseName != null) {
|
|
|
+ updateIndustry_run(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addIndustry_run(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const enterpriseNames = row.enterpriseName || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除industry_run编号为"' + enterpriseNames + '"的数据项?').then(function() {
|
|
|
+ return delIndustry_run(enterpriseNames);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ this.download('industry_run/industry_run/export', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `industry_run_${new Date().getTime()}.xlsx`)
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|