You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RuoYi-Vue/ruoyi-ui/src/views/stocksystem/financial/index.vue

450 lines
15 KiB

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="股票代码" prop="code">
<el-input
v-model="queryParams.code"
placeholder="请输入股票代码"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="报告期" prop="period">
<el-date-picker clearable size="small"
v-model="queryParams.period"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择报告期">
</el-date-picker>
</el-form-item>
<el-form-item label="净利润同比增长率" prop="jlrtbzzl">
<el-input
v-model="queryParams.jlrtbzzl"
placeholder="请输入净利润同比增长率"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="净利润环比增长率" prop="jlrhbzzl">
<el-input
v-model="queryParams.jlrhbzzl"
placeholder="请输入净利润环比增长率"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="净资产收益率ROE" prop="jzcsylroe">
<el-input
v-model="queryParams.jzcsylroe"
placeholder="请输入净资产收益率ROE"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="每股收益EPS" prop="epsbasic">
<el-input
v-model="queryParams.epsbasic"
placeholder="请输入每股收益EPS"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="净利润" prop="jlr">
<el-input
v-model="queryParams.jlr"
placeholder="请输入净利润"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="基本每股收益" prop="jbmgsy">
<el-input
v-model="queryParams.jbmgsy"
placeholder="请输入基本每股收益"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="每股净资产BPS" prop="mgjzc">
<el-input
v-model="queryParams.mgjzc"
placeholder="请输入每股净资产BPS"
clearable
size="small"
@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="['stocksystem:financial: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="['stocksystem:financial: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="['stocksystem:financial: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="['stocksystem:financial:export']"
>导出</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
v-hasPermi="['stocksystem:financial:import']"
>导入</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="financialList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="股票代码" align="center" prop="code" />
<el-table-column label="报告期" align="center" prop="period" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.period, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="净利润同比增长率" align="center" prop="jlrtbzzl" />
<el-table-column label="净利润环比增长率" align="center" prop="jlrhbzzl" />
<el-table-column label="净资产收益率ROE" align="center" prop="jzcsylroe" />
<el-table-column label="每股收益EPS" align="center" prop="epsbasic" />
<el-table-column label="净利润" align="center" prop="jlr" />
<el-table-column label="基本每股收益" align="center" prop="jbmgsy" />
<el-table-column label="每股净资产BPS" align="center" prop="mgjzc" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改A股财务数据对话框 -->
<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="code">
<el-input v-model="form.code" placeholder="请输入股票代码" />
</el-form-item>
<el-form-item label="报告期" prop="period">
<el-date-picker clearable size="small"
v-model="form.period"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择报告期">
</el-date-picker>
</el-form-item>
<el-form-item label="净利润同比增长率" prop="jlrtbzzl">
<el-input v-model="form.jlrtbzzl" placeholder="请输入净利润同比增长率" />
</el-form-item>
<el-form-item label="净利润环比增长率" prop="jlrhbzzl">
<el-input v-model="form.jlrhbzzl" placeholder="请输入净利润环比增长率" />
</el-form-item>
<el-form-item label="净资产收益率ROE" prop="jzcsylroe">
<el-input v-model="form.jzcsylroe" placeholder="请输入净资产收益率ROE" />
</el-form-item>
<el-form-item label="每股收益EPS" prop="epsbasic">
<el-input v-model="form.epsbasic" placeholder="请输入每股收益EPS" />
</el-form-item>
<el-form-item label="净利润" prop="jlr">
<el-input v-model="form.jlr" placeholder="请输入净利润" />
</el-form-item>
<el-form-item label="基本每股收益" prop="jbmgsy">
<el-input v-model="form.jbmgsy" placeholder="请输入基本每股收益" />
</el-form-item>
<el-form-item label="每股净资产BPS" prop="mgjzc">
<el-input v-model="form.mgjzc" placeholder="请输入每股净资产BPS" />
</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>
<!-- 用户导入对话框 -->
<el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
<el-upload
ref="upload"
:limit="1"
accept=".xlsx, .xls"
:headers="upload.headers"
:action="upload.url + '?updateSupport=' + upload.updateSupport + '&s=' + upload.tradeDay"
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<div class="el-upload__tip" slot="tip">
<el-date-picker clearable size="small"
v-model="upload.tradeDay"
type="date"
value-format="yyyy-MM-dd"
placeholder="交易日期">
</el-date-picker>
</div>
<div class="el-upload__tip" slot="tip">
<el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
</div>
<span>仅允许导入xls、xlsx格式文件。</span>
<!-- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>-->
</div>
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitUploadFileForm">确 定</el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listFinancial, getFinancial, delFinancial, addFinancial, updateFinancial } from "@/api/stocksystem/financial";
import {getToken} from "@/utils/auth";
export default {
name: "Financial",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// A股财务数据表格数据
financialList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
code: null,
period: null,
jlrtbzzl: null,
jlrhbzzl: null,
jzcsylroe: null,
epsbasic: null,
jlr: null,
jbmgsy: null,
mgjzc: null
},
// 用户导入参数
upload: {
// 是否显示弹出层(行情数据导入)
open: false,
// 弹出层标题(行情数据导入)
title: "",
// 是否禁用上传
isUploading: false,
// 是否更新已经存在的用户数据
updateSupport: 0,
// 设置上传的请求头部
headers: { Authorization: "Bearer " + getToken() },
// 上传的地址
url: process.env.VUE_APP_BASE_API + "/stocksystem/financial/importData",
//文件所属交易日期
tradeDay: new Date(),
sTradeDay: null
},
// 表单参数
form: {},
// 表单校验
rules: {
code: [
{ required: true, message: "股票代码不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询A股财务数据列表 */
getList() {
this.loading = true;
listFinancial(this.queryParams).then(response => {
this.financialList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
code: null,
period: null,
jlrtbzzl: null,
jlrhbzzl: null,
jzcsylroe: null,
epsbasic: null,
jlr: null,
jbmgsy: null,
mgjzc: 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 = "添加A股财务数据";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getFinancial(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改A股财务数据";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateFinancial(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addFinancial(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除A股财务数据编号为"' + ids + '"的数据项?').then(function() {
return delFinancial(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('stocksystem/financial/export', {
...this.queryParams
}, `financial_${new Date().getTime()}.xlsx`)
},
/** 导入按钮操作 */
handleImport() {
this.upload.title = "财报数据导入";
this.upload.open = true;
this.upload.updateSupport = true;
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
// 文件上传成功处理
handleFileSuccess(response, file, fileList) {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
this.getList();
},
// 提交上传文件
submitUploadFileForm() {
this.$refs.upload.submit();
}
}
};
</script>