Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fukai
vue-gjjs
Commits
294d8cfa
Commit
294d8cfa
authored
Oct 28, 2022
by
lianyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setpan.vue结算页面处理方式根据借/贷的值选用不同的码表
parent
f514420a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
index.js
src/config/CodeTable/index.js
+1
-1
Setpan.vue
src/views/Public/Setpan.vue
+16
-2
No files found.
src/config/CodeTable/index.js
View file @
294d8cfa
...
...
@@ -6655,7 +6655,7 @@ const CodeTable = {
{
label
:
"SCC 贷记其他保证金账"
,
value
:
"SCC"
},
{
label
:
"BF 国结系统融资过渡账"
,
value
:
"BF"
}
],
setgll_dsp
:
[
setgll_dsp
2
:
[
{
label
:
"LOD 借记客户往来账"
,
value
:
"LOD"
},
{
label
:
"TPD 借记国际结算临时账"
,
value
:
"TPD"
},
{
label
:
"SPD 借记国结专户"
,
value
:
"SPD"
},
...
...
src/views/Public/Setpan.vue
View file @
294d8cfa
...
...
@@ -508,9 +508,22 @@
></c-input-currency>
-->
</
template
>
</el-table-column>
<el-table-column
label=
"处理方式"
width=
"110px"
>
<el-table-column
label=
"处理方式"
width=
"110px"
prop=
"dsp"
>
<
template
#
default=
"scope"
>
<c-select
v-model=
"scope.row.dsp"
@
change=
"dspChange(scope.$index)"
>
<c-select
v-model=
"scope.row.dsp"
@
change=
"dspChange(scope.$index)"
v-if=
"scope.row.debcdtflg=='D'"
>
<el-option
v-for=
"item in codes.setgll_dsp2"
:key=
"item.value"
:label=
"item.value"
:value=
"item.value"
>
<span
style=
"float: left"
>
{{
item
.
value
}}
</span>
<span
style=
"float: left; margin-left: 20px"
>
{{
item
.
label
}}
</span>
</el-option>
</c-select>
<c-select
v-model=
"scope.row.dsp"
@
change=
"dspChange(scope.$index)"
v-if=
"scope.row.debcdtflg=='C'"
>
<el-option
v-for=
"item in codes.setgll_dsp1"
:key=
"item.value"
...
...
@@ -544,6 +557,7 @@
</
template
>
</el-table-column>
<el-table-column
label=
"借/贷"
prop=
"debcdtflg"
width=
"70px"
>
</el-table-column>
<el-table-column
label=
"原始币种"
prop=
"cur"
width=
"70px"
>
</el-table-column>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment