send_log.vue
7.1 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<template>
<div>
<!-- 搜索区域 -->
<el-row :gutter="10" class="toolbar">
<el-col :span="7">
<el-input v-model="queryInfo.cebType" placeholder="申报业务类型" clearable></el-input>
</el-col>
<el-col :span="7">
<el-select v-model="queryInfo.decStatus" placeholder="申报状态">
<el-option label="暂存" value="1"></el-option>
<el-option label="申报" value="2"></el-option>
<el-option label="已回执" value="3"></el-option>
</el-select>
</el-col>
<el-col :span="6">
<el-button type="primary" icon="el-icon-search" @click="searchLogInfo">查询</el-button>
<el-button type="success" icon="el-icon-plus" @click="applyAdd">新增</el-button>
</el-col>
</el-row>
<!-- 表格展示 -->
<el-table :data="tableData" border style="width: 100%">
<el-table-column prop="uuid" label="主键"></el-table-column>
<el-table-column prop="cebType" label="申报业务类型"></el-table-column>
<el-table-column prop="decType" label="申报类型" :formatter="formatDecType"></el-table-column>
<el-table-column prop="decDate" label="申报时间" :formatter="formatDate"></el-table-column>
<el-table-column prop="decStatus" label="申报状态" :formatter="formatAppStatus"></el-table-column>
<el-table-column prop="billGuid" label="单证GUID/编号"></el-table-column>
<el-table-column prop="decUser" label="申报人"></el-table-column>
<!-- <el-table-column prop="decPiece" label="申报件数"></el-table-column>-->
<!-- <el-table-column prop="decWeight" label="申报重量"></el-table-column>-->
<el-table-column prop="headGuid" label="报头ID/批次ID"></el-table-column>
<el-table-column prop="decNum" label="申报序号"></el-table-column>
<el-table-column prop="recDate" label="回执时间" :formatter="formatDate"></el-table-column>
<el-table-column prop="recStatus" label="回执状态"></el-table-column>
<el-table-column prop="recDescription" label="回执说明"></el-table-column>
<!-- <el-table-column fixed="right" label="操作">-->
<!-- <template slot-scope="scope">-->
<!-- <el-button type="text" @click="applyView(scope.row)">查看</el-button>-->
<!-- <el-button type="text" @click="applyEdit(scope.row)">编辑</el-button>-->
<!-- <el-button type="text" @click="applyDel(scope.$index, scope.row)">删除</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<!-- 分页 -->
<el-pagination
background
layout="total, prev, pager, next"
:page-size="queryInfo.pageSize"
:current-page="queryInfo.pageNum"
:total="total"
@current-change="handleCurrentChange">
</el-pagination>
<!-- 对话框 -->
<el-dialog :title="dialogStateMap[dialogType]" :visible.sync="showDialog" width="80%">
<el-form ref="logFormRef" :model="logInfo" :rules="rules" label-width="120px">
<!-- 录入表单字段 -->
<el-form-item label="主键" prop="uuid">
<el-input v-model="logInfo.uuid"></el-input>
</el-form-item>
<!-- ... 其他字段 -->
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="showDialog = false">取 消</el-button>
<el-button type="primary" @click="submitForm(dialogType)">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
import { addLogInfo, editLogInfo, deleteLogInfo, selectAllByPage } from '@/api/cbecd/send_log';
export default {
name: 'Send-Log',
props: {
billGuid: {
type: String,
default: ''
}
},
watch: {
billGuid: {
handler(newBillGuid) {
if (newBillGuid) {
this.queryInfo.sendLog.billGuid = newBillGuid;
this.searchLogInfo();
}
},
immediate: true // 立即执行一次监听器
}
},
data() {
return {
queryInfo: {
pageNum: 1,
pageSize: 10,
sendLog:{
billGuid:'uuid'
}
},
tableData: [],
total: 0,
logInfo: {},
dialogType: '',
showDialog: false,
dialogStateMap: {
view: '查看',
edit: '编辑',
add: '新增'
},
rules: {
// 录入表单字段校验规则
uuid: [{ required: true, message: '请输入主键', trigger: 'blur' }],
// ... 其他字段的校验规则
}
};
},
methods: {
formatAppStatus: function (row, column,cellValue, index) {
const map = {
"1": { text: "暂存", type: "" },
"2": { text: "申报", type: "info" },
"3": { text: "申报中", type: "warning" }, // 默认样式
"4": { text: "已回执", type: "success" } // 默认样式
};
const tagInfo = map[cellValue] || { text: "未知状态", type: "" };
// 使用 createElement 创建 VNode
return this.$createElement('el-tag', { props: { type: tagInfo.type } }, tagInfo.text);
// 使用 createElement 创建 VNode
return this.$createElement('el-tag', { props: { type: tagInfo.type } }, tagInfo.text);
},
formatDecType: function (row, column,cellValue, index) {
cellValue = ''+ cellValue;
console.log(row, column,cellValue, index);
const map={
"1": "新增",
"2": "变更",
"3": "删除"
}
return map[cellValue];
},
formatDate(date) {
if (!date) return '';
const d = new Date(date);
const year = d.getFullYear();
const month = (d.getMonth() + 1).toString().padStart(2, '0');
const day = d.getDate().toString().padStart(2, '0');
const hours = d.getHours().toString().padStart(2, '0');
const minutes = d.getMinutes().toString().padStart(2, '0');
const seconds = d.getSeconds().toString().padStart(2, '0');
// 格式化为 YYYY-MM-DD HH:mm:ss
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
},
searchLogInfo() {
selectAllByPage(this.queryInfo.sendLog,this.queryInfo).then(response => {
this.tableData = response.data.data.list;
this.total = response.pages;
});
},
applyAdd() {
this.dialogType = 'add';
this.showDialog = true;
// 清空表单
this.logInfo = {};
},
applyEdit(row) {
this.dialogType = 'edit';
this.showDialog = true;
this.logInfo = Object.assign({}, row);
},
applyView(row) {
this.dialogType = 'view';
this.showDialog = true;
// 设置为只读模式
this.$refs.logFormRef.setDisabled(true);
this.logInfo = Object.assign({}, row);
},
applyDel(index, row) {
deleteLogInfo(row.uuid).then(() => {
this.tableData.splice(index, 1);
});
},
submitForm(type) {
if (type === 'add') addLogInfo(this.logInfo);
else if (type === 'edit') editLogInfo(this.logInfo);
// 关闭对话框
this.showDialog = false;
// 刷新数据列表
this.searchLogInfo();
},
handleCurrentChange(val) {
this.queryInfo.pageNum = val;
this.searchLogInfo();
}
}
}
</script>
<style>
</style>