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/booksystem/statistictotal/index.vue

381 lines
13 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="name">
<el-input
v-model="queryParams.name"
placeholder="请输入股票名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="建仓交易日期" prop="startTradeDay">
<el-date-picker clearable size="small"
v-model="queryParams.startTradeDay"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择建仓交易日期">
</el-date-picker>
</el-form-item>
<el-form-item label="清仓交易日星期" prop="endTradeDay">
<el-date-picker clearable size="small"
v-model="queryParams.endTradeDay"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择清仓交易日星期">
</el-date-picker>
</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="['booksystem:statistictotal: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="['booksystem:statistictotal: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="['booksystem:statistictotal: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="['booksystem:statistictotal:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="statistictotalList" @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="name" />
<el-table-column label="建仓交易日期" align="center" prop="startTradeDay" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.startTradeDay, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="清仓交易日星期" align="center" prop="endTradeDay" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.endTradeDay, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="总盈亏" align="center" prop="totalProfit" />
<el-table-column label="总盈亏比例" align="center" prop="totalDiff" />
<el-table-column label="建仓交易价格" align="center" prop="startPrice" />
<el-table-column label="建仓交易价格" align="center" prop="endPrice" />
<el-table-column label="总成交量" align="center" prop="volumnTotal" />
<el-table-column label="总成交额" align="center" prop="amountTotal" />
<el-table-column label="交易次数" align="center" prop="operateTimes" />
<el-table-column label="总手续费" align="center" prop="fee" />
<el-table-column label="总印花税" align="center" prop="tax" />
<el-table-column label="总其他费用" align="center" prop="other" />
<el-table-column label="备注" align="center" prop="bz" />
<!-- <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="['booksystem:statistictotal:edit']"-->
<!-- >修改</el-button>-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-delete"-->
<!-- @click="handleDelete(scope.row)"-->
<!-- v-hasPermi="['booksystem:statistictotal: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" 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="name">
<el-input v-model="form.name" placeholder="请输入股票名称" />
</el-form-item>
<el-form-item label="建仓交易日期" prop="startTradeDay">
<el-date-picker clearable size="small"
v-model="form.startTradeDay"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择建仓交易日期">
</el-date-picker>
</el-form-item>
<el-form-item label="清仓交易日星期" prop="endTradeDay">
<el-date-picker clearable size="small"
v-model="form.endTradeDay"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择清仓交易日星期">
</el-date-picker>
</el-form-item>
<el-form-item label="总盈亏" prop="totalProfit">
<el-input v-model="form.totalProfit" placeholder="请输入总盈亏" />
</el-form-item>
<el-form-item label="总盈亏比例" prop="totalDiff">
<el-input v-model="form.totalDiff" placeholder="请输入总盈亏比例" />
</el-form-item>
<el-form-item label="建仓交易价格" prop="startPrice">
<el-input v-model="form.startPrice" placeholder="请输入建仓交易价格" />
</el-form-item>
<el-form-item label="建仓交易价格" prop="endPrice">
<el-input v-model="form.endPrice" placeholder="请输入建仓交易价格" />
</el-form-item>
<el-form-item label="总成交量" prop="volumnTotal">
<el-input v-model="form.volumnTotal" placeholder="请输入总成交量" />
</el-form-item>
<el-form-item label="总成交额" prop="amountTotal">
<el-input v-model="form.amountTotal" placeholder="请输入总成交额" />
</el-form-item>
<el-form-item label="交易次数" prop="operateTimes">
<el-input v-model="form.operateTimes" placeholder="请输入交易次数" />
</el-form-item>
<el-form-item label="总手续费" prop="fee">
<el-input v-model="form.fee" placeholder="请输入总手续费" />
</el-form-item>
<el-form-item label="总印花税" prop="tax">
<el-input v-model="form.tax" placeholder="请输入总印花税" />
</el-form-item>
<el-form-item label="总其他费用" prop="other">
<el-input v-model="form.other" placeholder="请输入总其他费用" />
</el-form-item>
<el-form-item label="用户id" prop="userId">
<el-input v-model="form.userId" placeholder="请输入用户id" />
</el-form-item>
<el-form-item label="备注" prop="bz">
<el-input v-model="form.bz" type="textarea" 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 { listStatistictotal, getStatistictotal, delStatistictotal, addStatistictotal, updateStatistictotal } from "@/api/booksystem/statistictotal";
export default {
name: "Statistictotal",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 统计当日持仓表格数据
statistictotalList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
code: null,
name: null,
startTradeDay: null,
endTradeDay: null,
totalProfit: null,
totalDiff: null,
startPrice: null,
endPrice: null,
volumnTotal: null,
amountTotal: null,
operateTimes: null,
fee: null,
tax: null,
other: null,
userId: null,
bz: null
},
// 表单参数
form: {},
// 表单校验
rules: {
code: [
{ required: true, message: "股票代码不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询统计当日持仓列表 */
getList() {
this.loading = true;
listStatistictotal(this.queryParams).then(response => {
this.statistictotalList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
code: null,
name: null,
startTradeDay: null,
endTradeDay: null,
totalProfit: null,
totalDiff: null,
startPrice: null,
endPrice: null,
volumnTotal: null,
amountTotal: null,
operateTimes: null,
fee: null,
tax: null,
other: null,
userId: null,
bz: 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 = "添加统计当日持仓";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getStatistictotal(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改统计当日持仓";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateStatistictotal(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addStatistictotal(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除统计当日持仓编号为"' + ids + '"的数据项?').then(function() {
return delStatistictotal(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('booksystem/statistictotal/export', {
...this.queryParams
}, `statistictotal_${new Date().getTime()}.xlsx`)
}
}
};
</script>