|
@@ -54,7 +54,7 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="keyWords">
|
|
|
+ <el-form-item prop="waybillNO">
|
|
|
<el-input
|
|
|
v-model.trim="formData.waybillNO"
|
|
|
size="default"
|
|
@@ -85,6 +85,7 @@
|
|
|
ref="tableRef"
|
|
|
:data="tableData"
|
|
|
:columns="tableColumns"
|
|
|
+ :column-props="{ formatter }"
|
|
|
sequence
|
|
|
@scroll-over="load"
|
|
|
/>
|
|
@@ -105,7 +106,12 @@ import SimpleTable from '@/components/SimpleTable/index.vue'
|
|
|
import { ElMessage, FormInstance } from 'element-plus'
|
|
|
import { parseTime } from '@/utils/validate'
|
|
|
import { useTableColumnSet } from '@/hooks/useTableColumnSet'
|
|
|
-import { CommonData, CommonTableColumn, CommonValue } from '~/common'
|
|
|
+import {
|
|
|
+ CommonData,
|
|
|
+ CommonTableColumn,
|
|
|
+ CommonTableFormatter,
|
|
|
+ CommonValue,
|
|
|
+} from '~/common'
|
|
|
import { Query } from '@/api/webApi'
|
|
|
|
|
|
const today = parseTime(new Date(), '{y}-{m}-{d}') as string
|
|
@@ -141,14 +147,17 @@ const datePreTitle = (title: string) => {
|
|
|
return <div class="date-pre-title">{title}:</div>
|
|
|
}
|
|
|
|
|
|
-const messageTypeOptions = ref([
|
|
|
- {
|
|
|
- value: '1',
|
|
|
- label: '1',
|
|
|
- },
|
|
|
-])
|
|
|
+const messageTypeOptions = ref(
|
|
|
+ Object.entries(MESSAGE_TYPE).map(([value, label]) => ({
|
|
|
+ label,
|
|
|
+ value,
|
|
|
+ }))
|
|
|
+)
|
|
|
|
|
|
const waybillValidator = (rule: any, value: any, callback: any) => {
|
|
|
+ if (!value) {
|
|
|
+ return callback()
|
|
|
+ }
|
|
|
const notMatched = [
|
|
|
/^[0-9]{8}$/,
|
|
|
/^[0-9]{11}$/,
|
|
@@ -241,6 +250,10 @@ const tableInit = () => {
|
|
|
const { columnChecked } = useTableColumnSet(tableColumns)
|
|
|
|
|
|
const columns = [
|
|
|
+ {
|
|
|
+ columnName: 'waybillNO',
|
|
|
+ columnLabel: '运单号',
|
|
|
+ },
|
|
|
{
|
|
|
columnName: 'fileName',
|
|
|
columnLabel: '文件名称',
|
|
@@ -264,18 +277,20 @@ const columns = [
|
|
|
{
|
|
|
columnName: 'messageDetails',
|
|
|
columnLabel: '报文明细',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ width: 300,
|
|
|
},
|
|
|
]
|
|
|
onMounted(() => {
|
|
|
tableColumns.value = columns.map(column => ({
|
|
|
columnDescribe: '',
|
|
|
dataType: '',
|
|
|
- needCount: 0,
|
|
|
+ needCount: null,
|
|
|
needFilters: null,
|
|
|
needGroup: null,
|
|
|
needSearch: null,
|
|
|
needShow: 1,
|
|
|
- needSort: 0,
|
|
|
+ needSort: null,
|
|
|
listqueryTemplateID: null,
|
|
|
queryTemplateColumnSetID: null,
|
|
|
queryTemplateID: null,
|
|
@@ -283,6 +298,24 @@ onMounted(() => {
|
|
|
...column,
|
|
|
}))
|
|
|
})
|
|
|
+
|
|
|
+const messageStateMap = {
|
|
|
+ in: '收',
|
|
|
+ out: '发',
|
|
|
+}
|
|
|
+const formatter: CommonTableFormatter = (row, column, cellValue, index) => {
|
|
|
+ const value = String(cellValue ?? '').trim()
|
|
|
+ if (['fileName', 'messageName'].includes(column.property)) {
|
|
|
+ return MESSAGE_TYPE[value] ?? value
|
|
|
+ }
|
|
|
+ if (column.property === 'execTime') {
|
|
|
+ return value.replace('T', ' ')
|
|
|
+ }
|
|
|
+ if (column.property === 'messageState') {
|
|
|
+ return messageStateMap[value] ?? ''
|
|
|
+ }
|
|
|
+ return value
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|