Commit 025ebd7d by ZcyJames

1.码表转换

parent e501ca2e
......@@ -10059,6 +10059,19 @@ const CodeTable = {
{label: "无需复核", value: "O"},
{label: "待退报复核", value: "T"},
],
cpsfiltyp: [
{label: "公共参数数据文件", value: "9"},
{label: "公共参数数据变更信息文件", value: "10"},
{label: "报文编号与业务种类对照关系", value: "11"},
{label: "变更期数信息文件", value: "12"},
{label: "参与者信息文件", value: "13"},
{label: "参与者变更信息文件", value: "14"},
{label: "参与者运行状态文件", value: "15"},
{label: "直间参关系信息文件", value: "16"},
{label: "直间参关系变更信息文件", value: "17"},
{label: "参与者数字证书绑定信息文件", value: "18"},
{label: "业务权限信息文件", value: "19"},
],
msgmst:[
{label:"G渠道",value:"gisp" },
{label:"CIPS",value:"xml" },
......
......@@ -61,6 +61,10 @@
</el-table-column>
<el-table-column v-for="(item, key) in stmData.columns" :key="key" :label="item.label" :prop="item.prop"
:min-width="item.width">
<template slot-scope="scope">
<c-select-value-to-label v-if="item.prop == 'filtyp'" v-model="scope.row.filtyp" :code="codes.cpsfiltyp"></c-select-value-to-label>
<span v-else>{{ scope.row[item.prop] }}</span>
</template>
</el-table-column>
</el-table>
......
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