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
<template>
<div class="eibs-tab">
<!-- S0000003 : Input Dir -->
<c-col :span="12">
<el-form-item label="Input Dir" prop="bopcfg.indir">
<c-input v-model="model.bopcfg.indir" maxlength="90" placeholder="Please enter Input Dir"></c-input>
</el-form-item>
</c-col>
<el-col :span="24" style="margin-top: 10px;margin-bottom: 10px;">
<c-button @click="onSerbut" class="medium_bcs" size="medium" type="primary" style="margin-left: 0px">
Search
</c-button>
<c-button @click="onRcvbut" class="medium_bcs" size="medium" type="primary" style="margin-left: 30px">
Receive
</c-button>
<c-button @click="onFtpbut" class="medium_bcs" size="medium" type="primary" style="margin-left: 30px">
FTP Get
</c-button>
<c-button @click="onCfacfgLogbut" style="margin-left: 30px" class="medium_bcs" size="medium" type="primary">
View Log
</c-button>
</el-col>
<!-- S0000004 : Waiting Message -->
<c-col :span="24" style="margin-top:5px;">
<c-col :span="12">
<el-form-item label-width="0px">
Waiting Message
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="0px" prop="genptybas">
<c-checkbox v-model="model.genptybas">Generate Unit Info</c-checkbox>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24" style="margin-top:5px;">
<el-form-item label-width="0px" prop="msgstm">
<el-table border style="width: 100%" v-model="model.msgstm">
<el-table-column label="申报表号">
</el-table-column>
<el-table-column label="临时编号">
</el-table-column>
<el-table-column label="收付汇日期">
</el-table-column>
<el-table-column label="数据类型">
</el-table-column>
<el-table-column label="申报类型">
</el-table-column>
<el-table-column label="状态">
</el-table-column>
</el-table>
</el-form-item>
</c-col>
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onExtbut">
{{$t('cfarcv.CG000007')}}
</c-button>
</c-col>-->
</div>
</template>
<script>
import event from "../event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
methods: {},
created: function() {}
};
</script>
<style>
</style>