|
|
@@ -2,16 +2,22 @@
|
|
|
<div class="borderless" v-loading="allloading">
|
|
|
<div class="customer-head">
|
|
|
<div class="customer-back">
|
|
|
- <el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
|
|
|
- @click="backToList">返回列表
|
|
|
+ <el-button type="danger" style="border: none; background: none; color: red" icon="el-icon-arrow-left" @click="backToList"
|
|
|
+ >返回列表
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<div class="add-customer-btn">
|
|
|
- <el-button type="primary" size="small" v-if="detailData.status == 1" class="el-button--small-yh "
|
|
|
- :disabled="form.status > 0" @click.stop="openEdit">编辑
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ v-if="detailData.status == 1"
|
|
|
+ class="el-button--small-yh"
|
|
|
+ :disabled="form.status > 0"
|
|
|
+ @click.stop="openEdit"
|
|
|
+ >编辑
|
|
|
</el-button>
|
|
|
- <el-button class="el-button--small-yh" type="primary" :disabled="loadingBtn || detailData.status == 1"
|
|
|
- size="small" @click="editCustomer">保存数据
|
|
|
+ <el-button class="el-button--small-yh" type="primary" :disabled="loadingBtn || detailData.status == 1" size="small" @click="editCustomer"
|
|
|
+ >保存数据
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -20,49 +26,81 @@
|
|
|
<basic-container>
|
|
|
<avue-form class="trading-form" ref="form" v-model="form" :option="option">
|
|
|
<template slot="parities">
|
|
|
- <el-input-number v-model="form.parities" size="small" :controls="false" style="width: 100%"
|
|
|
- placeholder="请输入 默认汇率" :disabled="detailData.status == 1"></el-input-number>
|
|
|
+ <el-input-number
|
|
|
+ v-model="form.parities"
|
|
|
+ size="small"
|
|
|
+ :controls="false"
|
|
|
+ style="width: 100%"
|
|
|
+ placeholder="请输入 默认汇率"
|
|
|
+ :disabled="detailData.status == 1"
|
|
|
+ ></el-input-number>
|
|
|
</template>
|
|
|
<template slot="standardMoney">
|
|
|
- <el-switch v-model="form.standardMoney" :active-value="1" :inactive-value="0"
|
|
|
- :disabled="detailData.status == 1">
|
|
|
- </el-switch>
|
|
|
+ <el-switch v-model="form.standardMoney" :active-value="1" :inactive-value="0" :disabled="detailData.status == 1"> </el-switch>
|
|
|
</template>
|
|
|
<!-- <template slot="paritiesType">
|
|
|
<avue-select v-model="form.paritiesType" placeholder="请选择汇率类型" :disabled="detailData.status == 1"
|
|
|
:dic="typeData" @change="paritiesChange"></avue-select>
|
|
|
</template> -->
|
|
|
<template slot="annual">
|
|
|
- <avue-date v-model="form.annual" placeholder="请选择汇率年度" :disabled="detailData.status == 1" type="year"
|
|
|
- @change="annualChange" valueFormat="yyyy"></avue-date>
|
|
|
+ <avue-date
|
|
|
+ v-model="form.annual"
|
|
|
+ placeholder="请选择汇率年度"
|
|
|
+ :disabled="detailData.status == 1"
|
|
|
+ type="year"
|
|
|
+ @change="annualChange"
|
|
|
+ valueFormat="yyyy"
|
|
|
+ ></avue-date>
|
|
|
</template>
|
|
|
<template v-if="form.paritiesType == '日汇率'" slot="moon">
|
|
|
- <avue-select v-model="form.moon" placeholder="请选择月份" :disabled="detailData.status == 1" :dic="MoonData"
|
|
|
- @change="MoonChange"></avue-select>
|
|
|
+ <avue-select
|
|
|
+ v-model="form.moon"
|
|
|
+ placeholder="请选择月份"
|
|
|
+ :disabled="detailData.status == 1"
|
|
|
+ :dic="MoonData"
|
|
|
+ @change="MoonChange"
|
|
|
+ ></avue-select>
|
|
|
</template>
|
|
|
<template slot="button">
|
|
|
- <el-button v-if="form.code != 'CNY'" size="small" type="primary" @click="createExRate"
|
|
|
- :disabled="detailData.status == 1 || dataList.length != 0">产生汇率项目</el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="form.code != 'CNY'"
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ @click="createExRate"
|
|
|
+ :disabled="detailData.status == 1 || dataList.length != 0"
|
|
|
+ >产生汇率项目</el-button
|
|
|
+ >
|
|
|
<div v-else></div>
|
|
|
</template>
|
|
|
</avue-form>
|
|
|
</basic-container>
|
|
|
<containerTitle v-if="form.code != 'CNY'" title="基础明细"></containerTitle>
|
|
|
<basic-container v-if="form.code != 'CNY'">
|
|
|
- <avue-crud ref="crud" v-model="crudForm" :option="optionList" id="out-table" :search.sync="search"
|
|
|
- :header-cell-class-name="headerClassName" :data="dataList" :table-loading="loading" :cell-style="cellStyle"
|
|
|
- @row-save="rowSave" @row-update="rowUpdate" @search-change="searchChange" @search-reset="resetChange"
|
|
|
- @selection-change="selectionChange">
|
|
|
-
|
|
|
+ <avue-crud
|
|
|
+ ref="crud"
|
|
|
+ v-model="crudForm"
|
|
|
+ :option="optionList"
|
|
|
+ id="out-table"
|
|
|
+ :search.sync="search"
|
|
|
+ :header-cell-class-name="headerClassName"
|
|
|
+ :data="dataList"
|
|
|
+ :table-loading="loading"
|
|
|
+ :cell-style="cellStyle"
|
|
|
+ @row-save="rowSave"
|
|
|
+ @row-update="rowUpdate"
|
|
|
+ @search-change="searchChange"
|
|
|
+ @search-reset="resetChange"
|
|
|
+ @selection-change="selectionChange"
|
|
|
+ >
|
|
|
<template slot="menuLeft">
|
|
|
- <el-button type="danger" size="small" @click.stop="BatchDelete"
|
|
|
- :disabled="detailData.status == 1 || dataList.length == 0">一键删除</el-button>
|
|
|
+ <el-button type="danger" size="small" @click.stop="BatchDelete" :disabled="detailData.status == 1 || dataList.length == 0"
|
|
|
+ >一键删除</el-button
|
|
|
+ >
|
|
|
</template>
|
|
|
- <template v-if="!row.$cellEdit" slot="menu" slot-scope="{row}">
|
|
|
- <el-button type="text" size="small" @click="editFun(row)">编辑
|
|
|
- </el-button>
|
|
|
- <!-- <el-button type="text" size="small" @click="rowDel(row)">删除
|
|
|
- </el-button> -->
|
|
|
+ <template v-if="!row.$cellEdit" slot="menu" slot-scope="{ row }">
|
|
|
+ <el-button type="text" size="small" @click="editFun(row)">编辑</el-button>
|
|
|
+ <!-- <el-button type="text" size="small" @click="rowDel(row)">删除</el-button> -->
|
|
|
+ <el-button type="text" size="small" @click="rowSyncExchangeRate(row)">同步汇率</el-button>
|
|
|
</template>
|
|
|
</avue-crud>
|
|
|
</basic-container>
|
|
|
@@ -71,7 +109,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { typeSave, dataDetail, delItem, bcurexrateDetails, bcurexrateList } from "@/api/iosBasicData/rateManagement";
|
|
|
+import { typeSave, dataDetail, delItem, bcurexrateDetails, bcurexrateList, syncExchangeRate } from "@/api/iosBasicData/rateManagement";
|
|
|
import { optionList } from "./js/optionList";
|
|
|
import reportDialog from "@/components/report-dialog/main";
|
|
|
export default {
|
|
|
@@ -81,70 +119,70 @@ export default {
|
|
|
typeData: [
|
|
|
{
|
|
|
label: "年汇率",
|
|
|
- value: "年汇率"
|
|
|
+ value: "年汇率",
|
|
|
},
|
|
|
{
|
|
|
label: "月汇率",
|
|
|
- value: "月汇率"
|
|
|
+ value: "月汇率",
|
|
|
},
|
|
|
{
|
|
|
label: "日汇率",
|
|
|
- value: "日汇率"
|
|
|
- }
|
|
|
+ value: "日汇率",
|
|
|
+ },
|
|
|
],
|
|
|
MoonData: [
|
|
|
{
|
|
|
label: "一月",
|
|
|
- value: 1
|
|
|
+ value: 1,
|
|
|
},
|
|
|
{
|
|
|
label: "二月",
|
|
|
- value: 2
|
|
|
+ value: 2,
|
|
|
},
|
|
|
{
|
|
|
label: "三月",
|
|
|
- value: 3
|
|
|
+ value: 3,
|
|
|
},
|
|
|
{
|
|
|
label: "四月",
|
|
|
- value: 4
|
|
|
+ value: 4,
|
|
|
},
|
|
|
{
|
|
|
label: "五月",
|
|
|
- value: 5
|
|
|
+ value: 5,
|
|
|
},
|
|
|
{
|
|
|
label: "六月",
|
|
|
- value: 6
|
|
|
+ value: 6,
|
|
|
},
|
|
|
{
|
|
|
label: "七月",
|
|
|
- value: 7
|
|
|
+ value: 7,
|
|
|
},
|
|
|
{
|
|
|
label: "八月",
|
|
|
- value: 8
|
|
|
+ value: 8,
|
|
|
},
|
|
|
{
|
|
|
label: "九月",
|
|
|
- value: 9
|
|
|
+ value: 9,
|
|
|
},
|
|
|
{
|
|
|
label: "十月",
|
|
|
- value: 10
|
|
|
+ value: 10,
|
|
|
},
|
|
|
{
|
|
|
label: "十一月",
|
|
|
- value: 11
|
|
|
+ value: 11,
|
|
|
},
|
|
|
{
|
|
|
label: "十二月",
|
|
|
- value: 12
|
|
|
+ value: 12,
|
|
|
},
|
|
|
],
|
|
|
time: "",
|
|
|
search: {
|
|
|
- annual: '2024'
|
|
|
+ annual: "2024",
|
|
|
},
|
|
|
crudForm: {},
|
|
|
loading: false,
|
|
|
@@ -163,11 +201,13 @@ export default {
|
|
|
label: "货币代码",
|
|
|
prop: "code",
|
|
|
span: 6,
|
|
|
- rules: [{
|
|
|
- required: true,
|
|
|
- message: "请输入代码",
|
|
|
- trigger: "blur"
|
|
|
- }]
|
|
|
+ rules: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请输入代码",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
label: "国际三字码",
|
|
|
@@ -178,21 +218,25 @@ export default {
|
|
|
label: "中文名称",
|
|
|
prop: "cnName",
|
|
|
span: 6,
|
|
|
- rules: [{
|
|
|
- required: true,
|
|
|
- message: "请输入中文名称",
|
|
|
- trigger: "blur"
|
|
|
- }]
|
|
|
+ rules: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请输入中文名称",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
label: "英文名称",
|
|
|
prop: "enName",
|
|
|
span: 6,
|
|
|
- rules: [{
|
|
|
- required: true,
|
|
|
- message: "请输入英文名称",
|
|
|
- trigger: "blur"
|
|
|
- }]
|
|
|
+ rules: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请输入英文名称",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
label: "货币符号",
|
|
|
@@ -204,14 +248,17 @@ export default {
|
|
|
prop: "isLocal",
|
|
|
type: "select",
|
|
|
span: 6,
|
|
|
- dicData: [{
|
|
|
- label: '非本币',
|
|
|
- value: 0
|
|
|
- }, {
|
|
|
- label: '本币',
|
|
|
- value: 1
|
|
|
- }],
|
|
|
- value: 0
|
|
|
+ dicData: [
|
|
|
+ {
|
|
|
+ label: "非本币",
|
|
|
+ value: 0,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "本币",
|
|
|
+ value: 1,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ value: 0,
|
|
|
},
|
|
|
{
|
|
|
label: "对本币汇率",
|
|
|
@@ -221,12 +268,12 @@ export default {
|
|
|
{
|
|
|
label: "国家代码",
|
|
|
prop: "cntyCode",
|
|
|
- span: 6
|
|
|
+ span: 6,
|
|
|
},
|
|
|
{
|
|
|
label: "国家名称",
|
|
|
prop: "cntyName",
|
|
|
- span: 6
|
|
|
+ span: 6,
|
|
|
},
|
|
|
{
|
|
|
label: "汇率类型",
|
|
|
@@ -236,21 +283,21 @@ export default {
|
|
|
clearable: false,
|
|
|
props: {
|
|
|
label: "dictValue",
|
|
|
- value: "dictValue"
|
|
|
+ value: "dictValue",
|
|
|
},
|
|
|
dicData: [
|
|
|
{
|
|
|
dictValue: "年汇率",
|
|
|
- dictKey: 0
|
|
|
+ dictKey: 0,
|
|
|
},
|
|
|
{
|
|
|
dictValue: "月汇率",
|
|
|
- dictKey: 1
|
|
|
+ dictKey: 1,
|
|
|
},
|
|
|
{
|
|
|
dictValue: "日汇率",
|
|
|
- dictKey: 2
|
|
|
- }
|
|
|
+ dictKey: 2,
|
|
|
+ },
|
|
|
],
|
|
|
span: 6,
|
|
|
},
|
|
|
@@ -272,30 +319,32 @@ export default {
|
|
|
prop: "status",
|
|
|
span: 6,
|
|
|
type: "select",
|
|
|
- dicData: [{
|
|
|
- label: '启用',
|
|
|
- value: 0
|
|
|
- }, {
|
|
|
- label: '停用',
|
|
|
- value: 1
|
|
|
- }],
|
|
|
- value: 0
|
|
|
+ dicData: [
|
|
|
+ {
|
|
|
+ label: "启用",
|
|
|
+ value: 0,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "停用",
|
|
|
+ value: 1,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ value: 0,
|
|
|
},
|
|
|
{
|
|
|
label: "备注",
|
|
|
prop: "remarks",
|
|
|
- type: 'textarea',
|
|
|
+ type: "textarea",
|
|
|
width: "180",
|
|
|
span: 24,
|
|
|
minRows: 3,
|
|
|
- slot: true
|
|
|
+ slot: true,
|
|
|
},
|
|
|
{
|
|
|
prop: "button",
|
|
|
- span: 6
|
|
|
- }
|
|
|
-
|
|
|
- ]
|
|
|
+ span: 6,
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
optionList: optionList,
|
|
|
selectionList: [],
|
|
|
@@ -303,11 +352,11 @@ export default {
|
|
|
},
|
|
|
props: {
|
|
|
detailData: {
|
|
|
- type: Object
|
|
|
- }
|
|
|
+ type: Object,
|
|
|
+ },
|
|
|
},
|
|
|
components: {
|
|
|
- reportDialog
|
|
|
+ reportDialog,
|
|
|
},
|
|
|
created() {
|
|
|
this.$set(this.form, "standardMoney", 0);
|
|
|
@@ -315,13 +364,13 @@ export default {
|
|
|
this.getDetail(this.detailData.id);
|
|
|
}
|
|
|
if (this.detailData.status == 1) {
|
|
|
- this.$set(this.option, 'disabled', true)
|
|
|
+ this.$set(this.option, "disabled", true);
|
|
|
}
|
|
|
this.optionList.height = 450;
|
|
|
},
|
|
|
methods: {
|
|
|
selectionChange(list) {
|
|
|
- this.selectionList = list
|
|
|
+ this.selectionList = list;
|
|
|
},
|
|
|
// paritiesChange(row) {
|
|
|
// let obj = {
|
|
|
@@ -352,16 +401,16 @@ export default {
|
|
|
// }
|
|
|
// },
|
|
|
annualChange(row) {
|
|
|
- this.search.annual = row
|
|
|
- this.search.moon = this.form.moon
|
|
|
- this.search.paritiesType = this.form.paritiesType
|
|
|
- this.searchChange(this.search)
|
|
|
+ this.search.annual = row;
|
|
|
+ this.search.moon = this.form.moon;
|
|
|
+ this.search.paritiesType = this.form.paritiesType;
|
|
|
+ this.searchChange(this.search);
|
|
|
},
|
|
|
MoonChange(row) {
|
|
|
- this.search.annual = this.form.annual
|
|
|
- this.search.moon = row
|
|
|
- this.search.paritiesType = this.form.paritiesType
|
|
|
- this.searchChange(this.search)
|
|
|
+ this.search.annual = this.form.annual;
|
|
|
+ this.search.moon = row;
|
|
|
+ this.search.paritiesType = this.form.paritiesType;
|
|
|
+ this.searchChange(this.search);
|
|
|
},
|
|
|
searchChange(params, done) {
|
|
|
// if (params.paritiesType == "日汇率") {
|
|
|
@@ -378,69 +427,85 @@ export default {
|
|
|
type: params.paritiesType,
|
|
|
code: this.form.code,
|
|
|
exrateYear: params.annual,
|
|
|
- exrateMonth: params.moon
|
|
|
- }
|
|
|
- bcurexrateList(obj).then(res => {
|
|
|
+ exrateMonth: params.moon,
|
|
|
+ };
|
|
|
+ bcurexrateList(obj).then((res) => {
|
|
|
this.dataList = res.data.data.records;
|
|
|
- done();
|
|
|
- })
|
|
|
- },
|
|
|
- resetChange() {
|
|
|
-
|
|
|
+ if (typeof done === "function") done();
|
|
|
+ });
|
|
|
},
|
|
|
+ resetChange() {},
|
|
|
// 编辑明细
|
|
|
editFun(row) {
|
|
|
- console.log(row, '编辑')
|
|
|
- this.$refs.crud.rowCell(row, row.$index)
|
|
|
-
|
|
|
+ console.log(row, "编辑");
|
|
|
+ this.$refs.crud.rowCell(row, row.$index);
|
|
|
},
|
|
|
- // 编辑点击保存
|
|
|
+ // 新增保存
|
|
|
rowSave(row, done, loading) {
|
|
|
- done(row)
|
|
|
+ done(row);
|
|
|
},
|
|
|
- // 编辑点击保存
|
|
|
+ // 编辑保存
|
|
|
rowUpdate(row, index, done, loading) {
|
|
|
+ console.log("rowUpdate", row, done);
|
|
|
done(row);
|
|
|
},
|
|
|
+ rowSyncExchangeRate(row) {
|
|
|
+ if (!row) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ let msg = `确定要同步 ${row.exrateYear}年${row.type == "月汇率" ? row.exrateMonth + "月" : ""} 汇率吗?`;
|
|
|
+
|
|
|
+ this.$confirm(msg, {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
+ syncExchangeRate(row).then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.searchChange(this.search);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
// 批量删除
|
|
|
BatchDelete() {
|
|
|
this.$confirm("确定将选择数据删除?", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
}).then(() => {
|
|
|
- let arrId = this.dataList.map(item => {
|
|
|
- return item.id
|
|
|
- })
|
|
|
- bcurexrateDetails(arrId.join(',')).then(res => {
|
|
|
- this.$message.success('操作成功')
|
|
|
- this.searchChange(this.search)
|
|
|
- })
|
|
|
- })
|
|
|
+ let arrId = this.dataList.map((item) => {
|
|
|
+ return item.id;
|
|
|
+ });
|
|
|
+ bcurexrateDetails(arrId.join(",")).then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.searchChange(this.search);
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
// 删除
|
|
|
rowDel(row) {
|
|
|
this.$confirm("确定将选择数据删除?", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
}).then(() => {
|
|
|
- bcurexrateDetails(row.id).then(res => {
|
|
|
- this.$message.success('操作成功')
|
|
|
- this.dataList.splice(row.$index, 1)
|
|
|
- })
|
|
|
- })
|
|
|
+ bcurexrateDetails(row.id).then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.dataList.splice(row.$index, 1);
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
cellStyle() {
|
|
|
return "padding:0;height:40px;";
|
|
|
},
|
|
|
// 详情
|
|
|
getDetail(id) {
|
|
|
- this.allloading = true
|
|
|
+ this.allloading = true;
|
|
|
dataDetail(id)
|
|
|
- .then(res => {
|
|
|
- this.form = res.data.data
|
|
|
- this.form.annual = this.form.annual + ''
|
|
|
+ .then((res) => {
|
|
|
+ this.form = res.data.data;
|
|
|
+ this.form.annual = this.form.annual + "";
|
|
|
})
|
|
|
.finally(() => {
|
|
|
this.allloading = false;
|
|
|
@@ -458,9 +523,9 @@ export default {
|
|
|
// if (res.data.code == 200) {
|
|
|
typeSave({
|
|
|
...this.form,
|
|
|
- curExrateList: this.dataList
|
|
|
+ curExrateList: this.dataList,
|
|
|
})
|
|
|
- .then(res => {
|
|
|
+ .then((res) => {
|
|
|
this.$message.success("保存成功");
|
|
|
this.getDetail(res.data.data.id);
|
|
|
})
|
|
|
@@ -472,9 +537,9 @@ export default {
|
|
|
} else {
|
|
|
typeSave({
|
|
|
...this.form,
|
|
|
- curExrateList: this.dataList
|
|
|
+ curExrateList: this.dataList,
|
|
|
})
|
|
|
- .then(res => {
|
|
|
+ .then((res) => {
|
|
|
this.$message.success("保存成功");
|
|
|
this.getDetail(res.data.data.id);
|
|
|
})
|
|
|
@@ -488,8 +553,8 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
openEdit() {
|
|
|
- this.$set(this.detailData, 'status', 2)
|
|
|
- this.$set(this.option, 'disabled', false)
|
|
|
+ this.$set(this.detailData, "status", 2);
|
|
|
+ this.$set(this.option, "disabled", false);
|
|
|
// const data = {
|
|
|
// moduleName: "xxb",
|
|
|
// tableName: "primary_school",
|
|
|
@@ -517,7 +582,7 @@ export default {
|
|
|
moduleName: "xxb",
|
|
|
tableName: "primary_school",
|
|
|
billId: this.form.id,
|
|
|
- billNo: this.form.exrateYear + "-" + this.form.moon
|
|
|
+ billNo: this.form.exrateYear + "-" + this.form.moon,
|
|
|
});
|
|
|
}
|
|
|
this.$emit("goBack");
|
|
|
@@ -531,9 +596,9 @@ export default {
|
|
|
this.toggleForm();
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|
|
|
- text: '加载中',
|
|
|
- spinner: 'el-icon-loading',
|
|
|
- background: 'rgba(255,255,255,0.7)'
|
|
|
+ text: "加载中",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(255,255,255,0.7)",
|
|
|
});
|
|
|
// 拿有id 的数据
|
|
|
// let arrId = []
|
|
|
@@ -548,9 +613,9 @@ export default {
|
|
|
if (this.form.paritiesType == "年汇率") {
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|
|
|
- text: '加载中',
|
|
|
- spinner: 'el-icon-loading',
|
|
|
- background: 'rgba(255,255,255,0.7)'
|
|
|
+ text: "加载中",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(255,255,255,0.7)",
|
|
|
});
|
|
|
this.form.exrateMonth = "";
|
|
|
const data = {
|
|
|
@@ -562,25 +627,27 @@ export default {
|
|
|
code: this.form.code,
|
|
|
cnName: this.form.cnName,
|
|
|
enName: this.form.enName,
|
|
|
- type: this.form.paritiesType
|
|
|
+ type: this.form.paritiesType,
|
|
|
};
|
|
|
this.dataList.push(data);
|
|
|
typeSave({
|
|
|
...this.form,
|
|
|
- curExrateList: this.dataList
|
|
|
- }).then(res => {
|
|
|
- this.$message.success("操作成功");
|
|
|
- this.getDetail(res.data.data.id);
|
|
|
- }).finally(() => {
|
|
|
- this.loadingBtn = false;
|
|
|
- loading.close();
|
|
|
- });
|
|
|
+ curExrateList: this.dataList,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.getDetail(res.data.data.id);
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ this.loadingBtn = false;
|
|
|
+ loading.close();
|
|
|
+ });
|
|
|
} else if (this.form.paritiesType == "月汇率") {
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|
|
|
- text: '加载中',
|
|
|
- spinner: 'el-icon-loading',
|
|
|
- background: 'rgba(255,255,255,0.7)'
|
|
|
+ text: "加载中",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(255,255,255,0.7)",
|
|
|
});
|
|
|
this.form.exrateMonth = "";
|
|
|
for (let i = 1; i <= 12; i++) {
|
|
|
@@ -595,26 +662,28 @@ export default {
|
|
|
code: this.form.code,
|
|
|
cnName: this.form.cnName,
|
|
|
enName: this.form.enName,
|
|
|
- type: this.form.paritiesType
|
|
|
+ type: this.form.paritiesType,
|
|
|
};
|
|
|
this.dataList.push(data);
|
|
|
}
|
|
|
typeSave({
|
|
|
...this.form,
|
|
|
- curExrateList: this.dataList
|
|
|
- }).then(res => {
|
|
|
- this.$message.success("操作成功");
|
|
|
- this.getDetail(res.data.data.id);
|
|
|
- }).finally(() => {
|
|
|
- this.loadingBtn = false;
|
|
|
- loading.close();
|
|
|
- });
|
|
|
+ curExrateList: this.dataList,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.getDetail(res.data.data.id);
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ this.loadingBtn = false;
|
|
|
+ loading.close();
|
|
|
+ });
|
|
|
} else if (this.form.paritiesType == "日汇率") {
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|
|
|
- text: '加载中',
|
|
|
- spinner: 'el-icon-loading',
|
|
|
- background: 'rgba(255,255,255,0.7)'
|
|
|
+ text: "加载中",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(255,255,255,0.7)",
|
|
|
});
|
|
|
const days = this.getCountDays(this.form.annual, this.form.moon);
|
|
|
for (let i = 1; i <= days; i++) {
|
|
|
@@ -636,14 +705,16 @@ export default {
|
|
|
}
|
|
|
typeSave({
|
|
|
...this.form,
|
|
|
- curExrateList: this.dataList
|
|
|
- }).then(res => {
|
|
|
- this.$message.success("操作成功");
|
|
|
- this.getDetail(res.data.data.id);
|
|
|
- }).finally(() => {
|
|
|
- this.loadingBtn = false;
|
|
|
- loading.close();
|
|
|
- });
|
|
|
+ curExrateList: this.dataList,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.getDetail(res.data.data.id);
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ this.loadingBtn = false;
|
|
|
+ loading.close();
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
@@ -671,12 +742,12 @@ export default {
|
|
|
// 更改表格颜色
|
|
|
headerClassName(tab) {
|
|
|
//颜色间隔
|
|
|
- let back = ""
|
|
|
+ let back = "";
|
|
|
if (tab.columnIndex >= 0 && tab.column.level === 1) {
|
|
|
if (tab.columnIndex % 2 === 0) {
|
|
|
- back = "back-one"
|
|
|
+ back = "back-one";
|
|
|
} else if (tab.columnIndex % 2 === 1) {
|
|
|
- back = "back-two"
|
|
|
+ back = "back-two";
|
|
|
}
|
|
|
}
|
|
|
return back;
|
|
|
@@ -692,31 +763,30 @@ export default {
|
|
|
type: row,
|
|
|
code: this.form.code,
|
|
|
exrateYear: this.form.annual,
|
|
|
-
|
|
|
- }
|
|
|
+ };
|
|
|
if (row == "日汇率") {
|
|
|
this.findObject(this.option.column, "moon").display = true;
|
|
|
- this.search.annual = this.form.annual
|
|
|
- this.search.moon = this.form.moon
|
|
|
- this.search.paritiesType = row
|
|
|
+ this.search.annual = this.form.annual;
|
|
|
+ this.search.moon = this.form.moon;
|
|
|
+ this.search.paritiesType = row;
|
|
|
// this.searchChange(this.search)
|
|
|
// console.log("日汇率", this.search)
|
|
|
// this.findObject(this.option.column, "annual").display = false;
|
|
|
} else if (row == "月汇率") {
|
|
|
this.findObject(this.option.column, "moon").display = false;
|
|
|
- this.search.annual = this.form.annual
|
|
|
- this.search.moon = null
|
|
|
- this.form.moon=null
|
|
|
- this.search.paritiesType = row
|
|
|
+ this.search.annual = this.form.annual;
|
|
|
+ this.search.moon = null;
|
|
|
+ this.form.moon = null;
|
|
|
+ this.search.paritiesType = row;
|
|
|
// this.searchChange(this.search)
|
|
|
// console.log("月汇率", this.search)
|
|
|
// this.findObject(this.option.column, "annual").display = false;
|
|
|
} else {
|
|
|
// this.findObject(this.option.column, "moon").display = false;
|
|
|
- this.search.annual = this.form.annual
|
|
|
- this.search.moon = null
|
|
|
- this.form.moon=null
|
|
|
- this.search.paritiesType = row
|
|
|
+ this.search.annual = this.form.annual;
|
|
|
+ this.search.moon = null;
|
|
|
+ this.form.moon = null;
|
|
|
+ this.search.paritiesType = row;
|
|
|
// this.searchChange(this.search)
|
|
|
// console.log("年汇率", this.search)
|
|
|
// this.findObject(this.option.column, "annual").display = true;
|
|
|
@@ -724,12 +794,12 @@ export default {
|
|
|
|
|
|
if (this.form.code) {
|
|
|
// 查明细信息
|
|
|
- obj={...obj,...this.search}
|
|
|
- this.searchChange(obj)
|
|
|
+ obj = { ...obj, ...this.search };
|
|
|
+ this.searchChange(obj);
|
|
|
}
|
|
|
},
|
|
|
deep: false, // 深度监听
|
|
|
- immediate: false // 第一次改变就执行
|
|
|
+ immediate: false, // 第一次改变就执行
|
|
|
},
|
|
|
// "form.annual": {
|
|
|
// // 执行方法
|
|
|
@@ -755,24 +825,22 @@ export default {
|
|
|
// },
|
|
|
"search.paritiesType": {
|
|
|
handler(row, newValue) {
|
|
|
-
|
|
|
if (row == "日汇率") {
|
|
|
this.findObject(this.optionList.column, "moon").search = true;
|
|
|
// this.findObject(this.option.column, "annual").display = false;
|
|
|
} else {
|
|
|
this.findObject(this.optionList.column, "moon").search = false;
|
|
|
- this.search.moon = ''
|
|
|
+ this.search.moon = "";
|
|
|
// this.findObject(this.option.column, "annual").display = false;
|
|
|
}
|
|
|
},
|
|
|
deep: false, // 深度监听
|
|
|
- immediate: false // 第一次改变就执行
|
|
|
- }
|
|
|
- }
|
|
|
+ immediate: false, // 第一次改变就执行
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-
|
|
|
<style lang="scss" scoped>
|
|
|
.trading-form ::v-deep .el-form-item {
|
|
|
margin-bottom: 4px !important;
|