1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<template>
<div class="eContainer">
<c-page title="涉外资金账户境内划转信息(2135)-删除">
<el-form :model="model" :rules="rules" label-position="left" label-width="120px" ref="modelForm"
size="small">
<c-tabs ref="elment" type="card" v-model="tabVal">
<el-tab-pane label="接口数据" name="selection">
<c-content>
<m-selection :codes="codes" :model="model"/>
</c-content>
</el-tab-pane>
<el-tab-pane label="涉外资金账户境内划转信息-删除" name="info">
<c-content>
<m-info :codes="codes" :model="model"/>
</c-content>
</el-tab-pane>
</c-tabs>
</el-form>
<!-- 底部按钮 -->
<div style="text-align: center">
<c-button :disabled="isDisabled" @click="save" style="margin-right: 10px" type="primary">提交</c-button>
<c-button :disabled="isDisabled" @click="check" style="margin-right: 10px" type="primary">检核</c-button>
<c-button @click="exit" style="margin-right: 10px" type="primary">退出</c-button>
</div>
</c-page>
</div>
</template>
<script>
import Tcp from "../../tcp/model"
import Event from "../event"
import Check from "../model/check"
import Info from "./ads2135"
import init from "../../../rmbsel/event"
import Selection from "../../tcp/views/selection"
export default {
components: {
"m-selection": Selection,
"m-info": Info,
},
name: 'Rmbdel2135',
mixins: [Event, Check, init], // 里面包含了Default、Check等的公共处理
provide() {
return {
root: this,
}
},
computed: {
isDisabled() {
return this.model.rmbbut.flg !== 'X';
},
},
data() {
return {
tabVal: "selection",
trnName: "tcpdel",
trnType: "",
model: new Tcp().data,
codes: {},
}
},
methods: {},
created: async function () {
const inr = this.$route.query.inr;
this.init(this.trnName, inr);
}
}
</script>
<style scoped>
/deep/ .el-form-item__label {
padding-left: 10px;
padding-right: 10px;
line-height: 20px !important;
display: flex;
align-items: center;
justify-content: flex-start;
text-align: left;
}
</style>