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
<template>
<div class="eContainer">
<c-page title="客户信息查询">
<el-form
:model="model"
ref="modelForm"
label-width="120px"
label-position="right"
size="small"
>
<c-tabs v-model="tabVal" ref="elment" type="card">
<el-tab-pane label="牌价查询" name="infsea">
<c-content>
<m-infsea :model="model" ref="infsea" />
</c-content>
</el-tab-pane>
</c-tabs>
</el-form>
</c-page>
</div>
</template>
<script>
import Infsea from "./Infsea";
export default {
name: "StaticsDblxrt",
components: {
"m-infsea": Infsea,
},
data() {
return {
tabVal: "infsea",
model: {
// // bch
// branch: "",
// etyexkey: "",
// bchkey: "",
// bchtyp: "",
//xrt
inr:"",
cur:"",
curnam:"",
begdat:"",
enddat:"",
buyrat:0,
midrat:0,
selrat:0,
ttrrat:0,
odrrat:0,
ver:"",
resrat:0,
rebrat:0,
ibrrat:0,
sel1rat:0,
buy1rat:0,
etgextkey:"CEBGRP",
xrttim:"",
orderStr: "",
columnStr: "",
// paging
pageNum: 1,
pageSize:PageSize,
total: 0
},
};
},
};
</script>
<style></style>