Commit 47fecbc3 by 李少勇

修改报文管理交易页面

parent d4039304
...@@ -130,11 +130,11 @@ ...@@ -130,11 +130,11 @@
</c-list-search> </c-list-search>
<el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;"> <el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;">
<c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary">{{ <c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary">
$t('public.归档') }} {{ $t('public.归档') }}
</c-button> </c-button>
<c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" <c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
type="primary">ReRouting ReRouting
</c-button> </c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary"> <c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
{{ $t('public.导出Excel') }} {{ $t('public.导出Excel') }}
...@@ -144,29 +144,34 @@ ...@@ -144,29 +144,34 @@
<el-col :span="24" style="margin-top: 10px"> <el-col :span="24" style="margin-top: 10px">
<div> <div>
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-table
<el-tab-pane label="发报查询" name="fb"> :data="stmData.data"
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" :columns="stmData.columns"
@selection-change="handleSelectionChange" @row-dblclick="dbClickRow" size="small" :border="true" v-loading="load" style="width: 100%"
height="calc(100vh - 420px)" :highlight-current-row="true"> @selection-change="handleSelectionChange"
<el-table-column type="selection" width="55"> @row-dblclick="dbClickRow"
</el-table-column> size="small" :border="true"
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" height="calc(100vh - 310px)"
:min-width="item.width"> :highlight-current-row="true"
<template slot-scope="scope"> >
<c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label> <el-table-column type="selection" width="55"></el-table-column>
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span> <el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" :min-width="item.width">
<span v-else>{{ scope.row[item.prop] }}</span> <template slot-scope="scope">
</template> <c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</el-table-column> <span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span>
</el-table> <span v-else>{{ scope.row[item.prop] }}</span>
</template>
</el-table-column>
</el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" <el-pagination
:page-size="pagination.pageSize" :current-page.sync="pagination.pageNum" @size-change="handleSizeChange" layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"> :total="pagination.total"
</el-pagination> :page-size="pagination.pageSize"
</el-tab-pane> :current-page.sync="pagination.pageNum"
</el-tabs> @size-change="handleSizeChange"
@current-change="handleCurrentChange"
></el-pagination>
</c-col> </c-col>
</div> </div>
</el-col> </el-col>
...@@ -181,7 +186,6 @@ export default { ...@@ -181,7 +186,6 @@ export default {
mixins: [event], mixins: [event],
data() { data() {
return { return {
activeTab: 'fb',
load: false, load: false,
subtypCodes: [], subtypCodes: [],
multipleSelection: [], multipleSelection: [],
......
...@@ -130,11 +130,11 @@ ...@@ -130,11 +130,11 @@
</c-list-search> </c-list-search>
<el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;"> <el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;">
<c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary">{{ <c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary">
$t('public.归档') }} {{ $t('public.归档') }}
</c-button> </c-button>
<c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" <c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
type="primary">ReRouting ReRouting
</c-button> </c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary"> <c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
{{ $t('public.导出Excel') }} {{ $t('public.导出Excel') }}
...@@ -144,28 +144,35 @@ ...@@ -144,28 +144,35 @@
<el-col :span="24" style="margin-top: 10px"> <el-col :span="24" style="margin-top: 10px">
<div> <div>
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-table
<el-tab-pane label="报文失败处理" name="fb"> :data="stmData.data"
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" :columns="stmData.columns"
@selection-change="handleSelectionChange" @row-dblclick="dbClickRow" size="small" :border="true" v-loading="load" style="width: 100%"
height="calc(100vh - 420px)" :highlight-current-row="true"> @selection-change="handleSelectionChange"
<el-table-column type="selection" width="55"></el-table-column> @row-dblclick="dbClickRow" size="small"
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" :border="true"
:min-width="item.width"> height="calc(100vh - 310px)"
<template slot-scope="scope"> :highlight-current-row="true"
<c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label> >
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span> <el-table-column type="selection" width="55"></el-table-column>
<span v-else>{{ scope.row[item.prop] }}</span> <el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop"
</template> :min-width="item.width">
</el-table-column> <template slot-scope="scope">
</el-table> <c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span>
<span v-else>{{ scope.row[item.prop] }}</span>
</template>
</el-table-column>
</el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" <el-pagination
:page-size="pagination.pageSize" :current-page.sync="pagination.pageNum" @size-change="handleSizeChange" layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"> :total="pagination.total"
</el-pagination> :page-size="pagination.pageSize"
</el-tab-pane> :current-page.sync="pagination.pageNum"
</el-tabs> @size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</c-col> </c-col>
</div> </div>
</el-col> </el-col>
...@@ -180,7 +187,6 @@ export default { ...@@ -180,7 +187,6 @@ export default {
mixins: [event], mixins: [event],
data() { data() {
return { return {
activeTab: 'fb',
load: false, load: false,
subtypCodes: [], subtypCodes: [],
multipleSelection: [], multipleSelection: [],
......
...@@ -137,44 +137,49 @@ ...@@ -137,44 +137,49 @@
</c-list-search> </c-list-search>
<el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;"> <el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;">
<c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" <c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary" >
type="primary" >{{ $t('public.归档') }} {{ $t('public.归档') }}
</c-button> </c-button>
<c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" <c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
style="margin-left: 20" type="primary">ReRouting ReRouting
</c-button> </c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary"> <c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
{{ $t('public.导出Excel') }} {{ $t('public.导出Excel') }}
</c-button> </c-button>
</el-col> </el-col>
<el-col :span="24" style="margin-top: 10px"> <el-col :span="24" style="margin-top: 10px">
<div> <div>
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-table
<el-tab-pane label="收报查询" name="sb"> :data="stmData.data"
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" :columns="stmData.columns"
@selection-change="handleSelectionChange" v-loading="load" style="width: 100%"
@row-dblclick="dbClickRow" @selection-change="handleSelectionChange"
size="small" :border="true" height="calc(100vh - 420px)" :highlight-current-row="true"> @row-dblclick="dbClickRow"
<el-table-column type="selection" width="55"> size="small" :border="true"
</el-table-column> height="calc(100vh - 310px)"
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" :highlight-current-row="true"
:min-width="item.width"> >
<template slot-scope="scope"> <el-table-column type="selection" width="55"></el-table-column>
<c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label> <el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop"
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span> :min-width="item.width">
<span v-else>{{ scope.row[item.prop] }}</span> <template slot-scope="scope">
</template> <c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</el-table-column> <span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span>
</el-table> <span v-else>{{ scope.row[item.prop] }}</span>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" </template>
:page-size="pagination.pageSize" :current-page.sync="pagination.pageNum" @size-change="handleSizeChange" </el-table-column>
@current-change="handleCurrentChange"> </el-table>
</el-pagination> <el-pagination
</el-tab-pane> layout="total, sizes, prev, pager, next, jumper"
</el-tabs> :total="pagination.total"
:page-size="pagination.pageSize"
:current-page.sync="pagination.pageNum"
@size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</c-col> </c-col>
</div> </div>
</el-col> </el-col>
...@@ -189,7 +194,6 @@ export default { ...@@ -189,7 +194,6 @@ export default {
mixins: [event], mixins: [event],
data() { data() {
return { return {
activeTab: 'sb',
load: false, load: false,
subtypCodes: [], subtypCodes: [],
// isFoldDisable: true, // isFoldDisable: true,
......
...@@ -152,28 +152,33 @@ ...@@ -152,28 +152,33 @@
<el-col :span="24" style="margin-top: 10px"> <el-col :span="24" style="margin-top: 10px">
<div> <div>
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-table
<el-tab-pane label="收报疑似重复处理" name="sb"> :data="stmData.data"
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" :columns="stmData.columns"
@selection-change="handleSelectionChange" v-loading="load" style="width: 100%"
@row-dblclick="dbClickRow" @selection-change="handleSelectionChange"
size="small" :border="true" height="calc(100vh - 420px)" :highlight-current-row="true"> @row-dblclick="dbClickRow"
<el-table-column type="selection" width="55"> size="small" :border="true"
</el-table-column> height="calc(100vh - 310px)"
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" :min-width="item.width"> :highlight-current-row="true"
<template slot-scope="scope"> >
<c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label> <el-table-column type="selection" width="55"></el-table-column>
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span> <el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" :min-width="item.width">
<span v-else>{{ scope.row[item.prop] }}</span> <template slot-scope="scope">
</template> <c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</el-table-column> <span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span>
</el-table> <span v-else>{{ scope.row[item.prop] }}</span>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" </template>
:page-size="pagination.pageSize" :current-page.sync="pagination.pageNum" @size-change="handleSizeChange" </el-table-column>
@current-change="handleCurrentChange"> </el-table>
</el-pagination> <el-pagination
</el-tab-pane> layout="total, sizes, prev, pager, next, jumper"
</el-tabs> :total="pagination.total"
:page-size="pagination.pageSize"
:current-page.sync="pagination.pageNum"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
></el-pagination>
</c-col> </c-col>
</div> </div>
</el-col> </el-col>
...@@ -188,7 +193,6 @@ export default { ...@@ -188,7 +193,6 @@ export default {
mixins: [event], mixins: [event],
data() { data() {
return { return {
activeTab: 'sb',
load: false, load: false,
subtypCodes: [], subtypCodes: [],
// isFoldDisable: true, // isFoldDisable: true,
......
...@@ -129,44 +129,48 @@ ...@@ -129,44 +129,48 @@
</c-list-search> </c-list-search>
<el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;"> <el-col :span="24" style="margin-top: 2px;margin-bottom: 1px;">
<c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" <c-button :disabled="isFoldDisable" class="medium_bcs" size="medium" style="margin-left: 0" type="primary" >
type="primary" >{{ $t('public.归档') }} {{ $t('public.归档') }}
</c-button> </c-button>
<c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" <c-button :disabled="isRoutingDisable" class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
style="margin-left: 20" type="primary">ReRouting ReRouting
</c-button> </c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary"> <c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
{{ $t('public.导出Excel') }} {{ $t('public.导出Excel') }}
</c-button> </c-button>
</el-col> </el-col>
<el-col :span="24" style="margin-top: 10px"> <el-col :span="24" style="margin-top: 10px">
<div style="height: 90%"> <div style="height: 90%">
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-table
<el-tab-pane label="发报疑似重复处理" name="fb"> :data="stmData.data" :columns="stmData.columns"
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" v-loading="load" style="width: 100%"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
@row-dblclick="dbClickRow" @row-dblclick="dbClickRow"
size="small" :border="true" height="calc(100vh - 420px)" :highlight-current-row="true"> size="small" :border="true"
<el-table-column type="selection" width="55"> height="calc(100vh - 310px)"
</el-table-column> :highlight-current-row="true"
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop" >
:min-width="item.width"> <el-table-column type="selection" width="55"></el-table-column>
<template slot-scope="scope"> <el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop"
<c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label> :min-width="item.width">
<span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span> <template slot-scope="scope">
<span v-else>{{ scope.row[item.prop] }}</span> <c-select-value-to-label v-if="item.prop == 'sta'" v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</template> <span v-else-if="item.prop == 'amt'">{{ moneyFormat(scope.row.amt, scope.row.cur) }}</span>
</el-table-column> <span v-else>{{ scope.row[item.prop] }}</span>
</el-table> </template>
</el-table-column>
</el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" <el-pagination
:page-size="pagination.pageSize" :current-page.sync="pagination.pageNum" @size-change="handleSizeChange" layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"> :total="pagination.total"
</el-pagination> :page-size="pagination.pageSize"
</el-tab-pane> :current-page.sync="pagination.pageNum"
</el-tabs> @size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</c-col> </c-col>
</div> </div>
</el-col> </el-col>
...@@ -181,7 +185,6 @@ export default { ...@@ -181,7 +185,6 @@ export default {
mixins: [event], mixins: [event],
data() { data() {
return { return {
activeTab: 'fb',
load: false, load: false,
subtypCodes: [], subtypCodes: [],
multipleSelection:[], multipleSelection:[],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment