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
80d35415
Commit
80d35415
authored
Jan 16, 2023
by
Wuyuqiu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gitdla交易检核及提交成功
parent
d0203eb7
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
210 additions
and
116 deletions
+210
-116
index.js
src/config/CodeTable/index.js
+9
-0
Pattern.js
src/model/Gitdla/Pattern.js
+3
-3
Aacp.vue
src/views/Business/Gitdla/Aacp.vue
+2
-0
Accp.vue
src/views/Business/Gitdla/Accp.vue
+2
-2
Confp.vue
src/views/Business/Gitdla/Confp.vue
+5
-0
Detp.vue
src/views/Business/Gitdla/Detp.vue
+9
-3
Detpc.vue
src/views/Business/Gitdla/Detpc.vue
+5
-3
Gidtxtp.vue
src/views/Business/Gitdla/Gidtxtp.vue
+21
-13
Gidtxtpc.vue
src/views/Business/Gitdla/Gidtxtpc.vue
+33
-17
Ovwp.vue
src/views/Business/Gitdla/Ovwp.vue
+9
-14
Ovwp1.vue
src/views/Business/Gitdla/Ovwp1.vue
+1
-0
Ovwpc.vue
src/views/Business/Gitdla/Ovwpc.vue
+17
-9
Preperp.vue
src/views/Business/Gitdla/Preperp.vue
+12
-20
Preperpc.vue
src/views/Business/Gitdla/Preperpc.vue
+10
-9
Ptyp.vue
src/views/Business/Gitdla/Ptyp.vue
+30
-13
Ptypc.vue
src/views/Business/Gitdla/Ptypc.vue
+20
-10
ReviewGitdla.vue
src/views/Review/Business/ReviewGitdla.vue
+20
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+2
-0
No files found.
src/config/CodeTable/index.js
View file @
80d35415
...
...
@@ -3814,6 +3814,15 @@ const CodeTable = {
{
label
:
"Guarantee received"
,
value
:
"FR"
},
{
label
:
"Inward Assignment"
,
value
:
"FG"
},
],
hndtyp1
:
[
{
label
:
"我行直接开立保函"
,
value
:
"OL"
},
{
label
:
"我行委托他行开立保函"
,
value
:
"OC"
},
{
label
:
"通知保函"
,
value
:
"FI"
},
{
label
:
"未经确认的通知"
,
value
:
"FA"
},
{
label
:
"Guarantee received"
,
value
:
"FR"
},
{
label
:
"他行委托我行开立保函"
,
value
:
"OT"
},
{
label
:
"Inward Assignment"
,
value
:
"FG"
},
],
ictyp
:
[
{
label
:
"按年计息"
,
value
:
"3"
},
{
label
:
"分段计息"
,
value
:
"020"
},
...
...
src/model/Gitdla/Pattern.js
View file @
80d35415
...
...
@@ -12,7 +12,7 @@ export default {
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gidgrp.cbs.max.amt"
:[
{
type
:
"st
ir
ng"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"st
ri
ng"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
...
...
@@ -48,7 +48,7 @@ export default {
"ameamt"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
{
pattern
:
/
(
^-
?\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^-
?
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"amedat"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
...
...
@@ -75,7 +75,7 @@ export default {
"gidgrp.cbs.max.amt"
:[
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
...
...
src/views/Business/Gitdla/Aacp.vue
View file @
80d35415
...
...
@@ -22,6 +22,7 @@
<c-input
v-model=
"model.gidgrp.cbs.mac2.amt"
placeholder=
"请输入"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -59,6 +60,7 @@
maxlength=
"780"
show-word-limit
placeholder=
"请输入39C场"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
src/views/Business/Gitdla/Accp.vue
View file @
80d35415
...
...
@@ -39,7 +39,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"处理类型"
prop=
"gidgrp.rec.hndtyp"
>
<c-input
disabled
v-model=
"model.gidgrp.rec.hndtyp"
maxlength=
"40"
placeholder=
"请输入处理类型"
></c-input>
<c-input
disabled
v-model=
"model.gidgrp.rec.hndtyp"
maxlength=
"40"
placeholder=
"请输入处理类型"
:code=
"getValues('gidgrp.rec.hndtyp', 'hndtyp1')"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -47,7 +47,7 @@
<el-form-item
label=
"业务类型"
prop=
"gidgrp.rec.gartyp"
>
<c-select
disabled
:code=
"codes.
avbby
"
:code=
"codes.
typgar
"
v-model=
"model.gidgrp.rec.gartyp"
style=
"width:100%"
placeholder=
"请选择业务类型"
>
</c-select>
</el-form-item>
...
...
src/views/Business/Gitdla/Confp.vue
View file @
80d35415
...
...
@@ -95,6 +95,7 @@
v-model=
"model.gidgrp.rec.cnfdet"
style=
"width: 100%"
placeholder=
"请选择确认指示"
disabled
>
<el-option
v-for=
"item in codes.cnfdet"
...
...
@@ -185,6 +186,7 @@
v-model=
"model.gidgrp.rec.cnfsta"
style=
"width: 100%"
placeholder=
"请选择确认状态 "
disabled
>
<el-option
v-for=
"item in codes.cnfsta"
...
...
@@ -218,6 +220,7 @@
<c-input
v-model=
"model.gidgrp.cbs.cnf.amt"
placeholder=
"请输入"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -233,6 +236,7 @@
<c-input
v-model=
"model.gidgrp.rec.partcon"
placeholder=
"请输入"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -256,6 +260,7 @@
v-model=
"model.gidgrp.rec.cnfdat"
style=
"width: 100%"
placeholder=
"请选择确认日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
...
...
src/views/Business/Gitdla/Detp.vue
View file @
80d35415
...
...
@@ -14,6 +14,7 @@
v-model=
"model.gidgrp.rec.orcref"
maxlength=
"35"
placeholder=
"请输入合同号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -111,6 +112,7 @@
maxlength=
"350"
show-word-limit
placeholder=
"请输入合同标的"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -120,6 +122,7 @@
v-model=
"model.gitp.covgodsrvmodflg"
style=
"margin: 0 0 0 10px"
class=
"checkbox-left"
disabled
>
是否手工修改保函文本
</c-checkbox
>
<c-checkbox
...
...
@@ -127,6 +130,7 @@
v-model=
"model.gitp.covgod.chkast"
style=
"margin: 0 0 0 10px;"
class=
"checkbox-left"
disabled
>
允许
</c-checkbox
>
<c-button
...
...
@@ -251,7 +255,7 @@
prop=
"gidgrp.rec.jurlaws20"
>
<c-select
:disabled=
"model.gitp.swiftflg != 'Y'"
disabled
v-model=
"model.gidgrp.rec.jurlaws20"
style=
"width: 100%"
placeholder=
"请选择适用法律"
...
...
@@ -306,7 +310,7 @@
prop=
"gidgrp.rec.jurplc"
>
<c-input
:disabled=
"model.gidgrp.rec.jurlaws20 == ''"
disabled
v-model=
"model.gidgrp.rec.jurplc"
maxlength=
"35"
placeholder=
"请输入仲裁地"
...
...
@@ -423,6 +427,7 @@
v-model=
"model.gidgrp.gidcxm.benefi"
maxlength=
"80"
placeholder=
"请输入受益人名称"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -503,6 +508,7 @@
maxlength=
"9750"
show-word-limit
placeholder=
"请输入直接Swift添加"
disabled
></c-input-xml>
</el-form-item>
</c-col>
...
...
@@ -578,7 +584,7 @@
prop=
"gidgrp.rec.jurplc"
>
<c-input
:disabled=
"model.gidgrp.rec.jurlaws20 == ''"
disabled
v-model=
"model.gidgrp.rec.jurplc"
maxlength=
"35"
placeholder=
"请输入仲裁地"
...
...
src/views/Business/Gitdla/Detpc.vue
View file @
80d35415
...
...
@@ -65,6 +65,7 @@
show-word-limit
placeholder=
"请输入Underly. Transact. Det."
@
blur=
"atxcovgodsrvcBlur"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -74,14 +75,14 @@
v-if=
"model.gitp.swiftflg == 'Y'"
v-model=
"model.gitp.covgodsrvcmodflg"
style=
"margin: 0 0 0 10px"
@
change=
"modflgChange"
@
change=
"modflgChange"
disabled
>
是否手工修改保函文本
</c-checkbox
>
<c-checkbox
class=
"checkbox-left"
v-if=
"model.gitp.swiftflg == 'Y'"
v-model=
"model.gitp.covgodc.chkast"
style=
"margin: 0 0 0 10px"
style=
"margin: 0 0 0 10px"
disabled
>
允许
</c-checkbox
>
<c-button
...
...
@@ -183,6 +184,7 @@
v-model=
"model.gidgrp.rec.jurlawc"
style=
"width: 100%"
placeholder=
"请选择适用法律"
disabled
>
<el-option
v-for=
"item in codes.ctytxt1"
...
...
@@ -212,7 +214,7 @@
prop=
"gidgrp.rec.jurplcc"
>
<c-input
:disabled=
"model.gidgrp.rec.jurlawc == ''"
disabled
v-model=
"model.gidgrp.rec.jurplcc"
maxlength=
"35"
placeholder=
"请输入仲裁地"
...
...
src/views/Business/Gitdla/Gidtxtp.vue
View file @
80d35415
...
...
@@ -41,6 +41,7 @@
placeholder=
"请输入保函文本可变因素"
></c-input-xml>
-->
<c-xml-format-editor
style=
""
:model=
"model.gidgrp.blk.gtxgidtxt"
placeholder=
"请输入保函文本可变因素"
@
blur=
"setTxt2"
...
...
@@ -55,6 +56,7 @@
style=
"margin: 0 0 0 10px"
class=
"checkbox-left"
@
change=
"modflgChange"
disabled
>
修改保函文本
</c-checkbox
>
</c-col>
...
...
@@ -124,7 +126,7 @@
</c-col>
<c-col
:span=
"24"
>
<c-button
:disabled=
"model.gitp.gidtxtmodflg == '
'"
:disabled=
"model.gitp.gidtxtmodflg == '' || model.gidgrp.rec.giduil != 'CN
'"
size=
"small"
type=
"primary"
style=
"margin: 5px 0 0 10px; width: 50%"
...
...
@@ -137,15 +139,15 @@
</c-col>
</c-row>
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Gitdla
/Event"
;
import
InputXml
from
"~/components/InputXml"
;
</template>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Gitadd
/Event"
;
import
InputXml
from
"~/components/InputXml"
;
export
default
{
export
default
{
components
:
{
InputXml
},
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
...
...
@@ -188,7 +190,12 @@ export default {
}
},},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
};
</
script
>
<
style
scoped
>
.quill-editor
>>>
.ql-editor
{
min-height
:
250px
;
max-height
:
500px
;
}
</
style
>
\ No newline at end of file
src/views/Business/Gitdla/Gidtxtpc.vue
View file @
80d35415
...
...
@@ -7,13 +7,13 @@
<el-form-item
v-if=
"model.gitp.gidtxtmodflgc == ''"
label=
"保函文本可变因素"
prop=
"gidgrp.blk.gtxgidtxt
"
prop=
"gidgrp.blk.gidtxtc
"
>
<c-input-xml
:disabled=
"model.gitp.gidtxtmodflgc == ''"
type=
"textarea"
:maxRows=
"14"
:model=
"model.gidgrp.blk.gtx
gidtxtc"
:model=
"model.gidgrp.blk.
gidtxtc"
maxlength=
"32500"
show-word-limit
placeholder=
"请输入保函文本可变因素"
...
...
@@ -24,14 +24,22 @@
label=
"保函文本可变因素 - 抵消保函文本"
prop=
"gidgrp.blk.gtxgidtxtc"
>
<c-input-xml
<!--
<c-input-xml
type=
"textarea"
:modle=
"model.gidgrp.blk.gtxgidtxtc"
:maxRows=
"16"
maxlength=
"32500"
show-word-limit
placeholder=
"请输入保函文本可变因素 - 抵消保函文本"
></c-input-xml>
></c-input-xml>
-->
<c-xml-format-editor
:model=
"model.gidgrp.blk.gtxgidtxtc"
:maxRows=
"16"
maxlength=
"32500"
show-word-limit
placeholder=
"请输入保函文本可变因素 - 抵消保函文本"
@
blur=
"setTxt2"
></c-xml-format-editor>
</el-form-item>
</c-col>
</c-col>
...
...
@@ -49,6 +57,7 @@
</c-col>
<c-col
:span=
"24"
>
<c-button
disabled
style=
"margin: 5px 0 5px 10px"
size=
"small"
type=
"primary"
...
...
@@ -68,6 +77,7 @@
<c-checkbox
v-model=
"model.gitp.chkgidtxtc"
style=
"margin: 0 0 0 10px;float:left;"
disabled
>
允许
</c-checkbox
>
</c-col>
...
...
@@ -111,7 +121,7 @@
<c-col
:span=
"24"
>
<c-button
disabled
:disabled=
"model.gitp.gidtxtmodflg == '' || model.gidgrp.rec.giduil != 'CN'"
size=
"small"
type=
"primary"
style=
"margin: 5px 0 0 10px; width: 50%"
...
...
@@ -124,15 +134,15 @@
</c-col>
</c-row>
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
IStreamInput
from
"~/components/IStreamInput"
;
import
Event
from
"~/model/Gitdla
/Event"
;
</template>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
IStreamInput
from
"~/components/IStreamInput"
;
import
Event
from
"~/model/Gitadd
/Event"
;
export
default
{
export
default
{
components
:
{
IStreamInput
},
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
...
...
@@ -142,7 +152,12 @@ export default {
},
methods
:
{
...
Event
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
};
</
script
>
<
style
scoped
>
.quill-editor
>>>
.ql-editor
{
min-height
:
250px
;
max-height
:
500px
;
}
</
style
>
\ No newline at end of file
src/views/Business/Gitdla/Ovwp.vue
View file @
80d35415
...
...
@@ -22,6 +22,7 @@
<el-collapse-item
title=
"保函文本"
name=
"gidtxtp"
>
<m-gidtxtp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"确认详细信息"
name=
"confp"
...
...
@@ -29,48 +30,42 @@
>
<m-confp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<!--
<el-collapse-item
title=
"对外担保数据采集"
name=
"cfap"
v-if=
"model.gidgrp.rec.fingua == 'Y'"
>
<m-cfap
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"对外担保-签约信息1"
name=
"conp"
v-if=
"model.cfagit.cfaflg == '1'"
>
<m-conp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"对外担保-签约信息2"
name=
"conp1"
v-if=
"model.cfagit.cfaflg == '1'"
>
<m-conp1
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"对外担保-责任余额信息"
name=
"dclpp"
v-if=
"model.cfagit.cfaflg == '1'"
>
<m-dclpp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
-->
<el-collapse-item
title=
"Seq C : 基本信息"
name=
"ovwpc"
v-if=
"
model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO'
"
>
<m-ovwpc
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"Seq C : 当事人描述"
name=
"ptypc"
v-if=
"
model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO'
"
>
"
>
<m-ptypc
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"Seq C : 演示/交付"
name=
"preperpc"
v-if=
"
model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO'
"
>
"
>
<m-preperpc
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"Seq C : 详情"
name=
"detpc"
v-if=
"
model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO'
"
>
<m-detpc
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"Seq C : 保函文本"
name=
"gidtxtpc"
v-if=
"
model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO'
"
>
<m-gidtxtpc
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"Seq C : 附加金额"
name=
"aacp"
v-if=
"model.gitp.aacp.aacmod.addamtflg == 'X'"
>
<m-aacp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
...
...
src/views/Business/Gitdla/Ovwp1.vue
View file @
80d35415
...
...
@@ -541,6 +541,7 @@
<c-checkbox
v-model=
"model.gidgrp.rec.liaflg"
disabled
class=
"checkbox-left"
>
我行责任敞口
</c-checkbox
>
</el-form-item>
...
...
src/views/Business/Gitdla/Ovwpc.vue
View file @
80d35415
...
...
@@ -13,6 +13,7 @@
v-model=
"model.gidgrp.rec.opndatc"
style=
"width: 100%"
placeholder=
"请选择请求开证日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
...
...
@@ -25,6 +26,7 @@
v-model=
"model.gidgrp.cbs.mac.cur"
style=
"width: 100%"
placeholder=
"请选择保函币种"
disabled
>
</c-select>
</el-form-item>
...
...
@@ -35,13 +37,16 @@
v-model=
"model.gidgrp.cbs.mac.amt"
style=
"margin: 0 0 0 10px; width: 80%"
placeholder=
"请输入保函金额"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"4"
class=
"centerLable"
>
<c-checkbox
v-model=
"model.gitp.aacp.aacmod.addamtflg"
<el-form-item
label-width=
"0px"
prop=
"gitp.aacp.aacmod.addamtflg"
>
<c-checkbox
v-model=
"model.gitp.aacp.aacmod.addamtflg"
disabled
@
change=
"defaultFunction()"
>
附加金额
</c-checkbox
>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
...
...
@@ -52,6 +57,7 @@
style=
"width: 100%"
placeholder=
"请选择保函类型 "
:code=
"getValues('gidgrp.rec.gartypc','gartypc')"
disabled
>
<!-- -->
<!--
<el-option
...
...
@@ -82,6 +88,7 @@
v-model=
"model.gidgrp.rec.legfrmc"
style=
"width: 100%"
placeholder=
"请选择保函形式"
disabled
>
<el-option
v-for=
"item in codes.legfrmc1"
...
...
@@ -99,6 +106,7 @@
v-model=
"model.gidgrp.rec.demandc"
style=
"width: 100%"
placeholder=
"请选择需求指示 "
disabled
>
<el-option
v-for=
"item in codes.demandc"
...
...
@@ -119,6 +127,7 @@
v-model=
"model.gidgrp.rec.stdwrduilc"
style=
"width: 100%"
placeholder=
"请选择要求语言"
disabled
>
<el-option
v-for=
"item in codes.uiltxt"
...
...
@@ -138,6 +147,7 @@
v-model=
"model.gidgrp.rec.gtxinrc"
style=
"width: 100%"
placeholder=
"请选择保函文本格式"
disabled
>
<el-option
v-for=
"item in codes.gtxinr"
...
...
@@ -157,6 +167,7 @@
v-model=
"model.gidgrp.blk.apprulc"
style=
"width: 100%"
placeholder=
"请选择申请条款"
disabled
>
<el-option
v-for=
"item in codes.apprulc"
...
...
@@ -171,7 +182,7 @@
<c-col
:span=
"12"
>
<el-form-item
label-width=
"5px"
prop=
"gidgrp.blk.apprultxtc"
>
<c-input
:disabled=
"model.gidgrp.blk.apprulc != 'OTHR'"
disabled
style=
"width: 100%"
v-model=
"model.gidgrp.blk.apprultxtc"
maxlength=
"35"
...
...
@@ -187,6 +198,7 @@
v-model=
"model.gidgrp.rec.exptyp"
style=
"width: 100%"
placeholder=
"请选择到期类型"
disabled
>
<el-option
v-for=
"item in codes.exptyp"
...
...
@@ -201,7 +213,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"保函效期"
prop=
"gidgrp.rec.expdat"
>
<c-date-picker
:disabled=
"model.gidgrp.rec.exptyp == 'OPEN'"
disabled
type=
"date"
v-model=
"model.gidgrp.rec.expdat"
style=
"width: 100%"
...
...
@@ -219,7 +231,7 @@
<c-input
type=
"textarea"
rows=
"5"
:disabled=
"model.gitp.exptxtmodflg == ''"
disabled
v-model=
"model.gidgrp.blk.exptxt"
maxlength=
"780"
show-word-limit
...
...
@@ -230,11 +242,7 @@
<c-col
:span=
"7"
>
<c-checkbox
v-model=
"model.gitp.exptxtmodflg"
:disabled=
"
model.gidgrp.rec.exptyp == 'FIXD' ||
model.gidgrp.rec.exptyp == 'OPEN' ||
model.gidgrp.rec.exptyp == ''
"
disabled
style=
"margin: 0 0 0 10px;float:left"
>
是否手工修改保函文本
</c-checkbox
>
...
...
src/views/Business/Gitdla/Preperp.vue
View file @
80d35415
...
...
@@ -7,10 +7,7 @@
<c-col
:span=
"16"
>
<c-form-item
label=
"保函文本交付"
prop=
"gidgrp.rec.delori"
>
<c-select
:disabled=
"
model.gidgrp.rec.purpos == 'ICCO' ||
model.gidgrp.rec.purpos == 'ISCO'
"
disabled
v-model=
"model.gidgrp.rec.delori"
style=
"width: 100%"
placeholder=
"请选择保函文本交付"
...
...
@@ -28,10 +25,7 @@
<c-col
:span=
"8"
>
<el-form-item
label-width=
"5px"
prop=
"gidgrp.rec.deloritxt"
>
<c-input
:disabled=
"
model.gidgrp.rec.delori != 'COUR' &&
model.gidgrp.rec.delori != 'OTHR'
"
disabled
v-model=
"model.gidgrp.rec.deloritxt"
maxlength=
"35"
placeholder=
"请输入保函文本交付"
...
...
@@ -43,10 +37,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"发送保函文本"
prop=
"gidgrp.rec.sndto"
>
<c-select
:disabled=
"
model.gidgrp.rec.purpos == 'ICCO' ||
model.gidgrp.rec.purpos == 'ISCO'
"
disabled
v-model=
"model.gidgrp.rec.sndto"
style=
"width: 100%"
placeholder=
"请选择发送保函文本"
...
...
@@ -59,10 +50,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"交付收款人"
prop=
"gidgrp.rec.delto"
>
<c-select
:disabled=
"
model.gidgrp.rec.purpos == 'ICCO' ||
model.gidgrp.rec.purpos == 'ISCO'
"
disabled
v-model=
"model.gidgrp.rec.delto"
style=
"width: 100%"
placeholder=
"请选择交付收款人"
...
...
@@ -75,9 +63,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"交付地址"
prop=
"gidgrp.blk.deltoadr"
>
<c-input
:disabled=
"
model.gidgrp.rec.delto == '' && model.gidgrp.rec.purpos != ''
"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.blk.deltoadr"
...
...
@@ -111,6 +97,7 @@
style=
"width: 100%"
placeholder=
"请选择费用承担人"
:code=
"codes.gitopn_chato"
disabled
>
</c-select>
</el-form-item>
...
...
@@ -119,7 +106,7 @@
<el-form-item
label=
"收费"
>
<c-fullbox>
<template
slot=
"footer"
>
<c-checkbox
v-model=
"model.gitp.chargi.chkast"
class=
"checkbox-left"
>
允许
</c-checkbox>
<c-checkbox
v-model=
"model.gitp.chargi.chkast"
class=
"checkbox-left"
disabled
>
允许
</c-checkbox>
</
template
>
</c-fullbox>
</el-form-item>
...
...
@@ -133,6 +120,7 @@
maxlength=
"210"
show-word-limit
placeholder=
"请输入收费代码的附加详情"
disabled
></c-input>
<
template
slot=
"footer"
>
<!-- @click="onAcctagButtxmsel" -->
...
...
@@ -141,6 +129,7 @@
type=
"primary"
icon=
"el-icon-more"
@
click=
"onChargiButtxmsel"
disabled
>
</c-button>
</
template
>
...
...
@@ -178,6 +167,7 @@
show-word-limit
placeholder=
"请输入演示说明"
@
blur=
"atxpreperBlur"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -187,6 +177,7 @@
style=
"margin: 0 0 0 10px"
class=
"checkbox-left"
@
change=
"modflgChange"
disabled
>
是否手工修改保函文本
</c-checkbox
>
...
...
@@ -194,6 +185,7 @@
v-model=
"model.gitp.chkpreper"
class=
"checkbox-left"
style=
"margin: 0 0 0 10px"
disabled
>
允许
</c-checkbox
>
<c-button
...
...
src/views/Business/Gitdla/Preperpc.vue
View file @
80d35415
...
...
@@ -14,6 +14,7 @@
style=
"width: 100%"
placeholder=
"请选择保函文本交付"
:code=
"codes.deloric"
disabled
>
</c-select>
</el-form-item>
...
...
@@ -21,10 +22,7 @@
<c-col
:span=
"12"
>
<el-form-item
label-width=
"5px"
prop=
"gidgrp.rec.deloritxtc"
>
<c-input
:disabled=
"
model.gidgrp.rec.deloric != 'OTHR' &&
model.gidgrp.rec.deloric != 'COUR'
"
disabled
v-model=
"model.gidgrp.rec.deloritxtc"
maxlength=
"35"
placeholder=
"请输入保函文本交付"
...
...
@@ -41,6 +39,7 @@
v-model=
"model.gidgrp.rec.deltoc"
style=
"width: 100%"
placeholder=
"请选择交付收款人"
disabled
>
<el-option
v-for=
"item in codes.deltoc"
...
...
@@ -58,7 +57,7 @@
prop=
"gidgrp.blk.deltoadrc"
>
<c-input
:disabled=
"model.gidgrp.rec.deltoc != 'OTHR'"
disabled
type=
"textarea"
rows=
"4"
v-model=
"model.gidgrp.blk.deltoadrc"
...
...
@@ -100,6 +99,7 @@
maxlength=
"210"
show-word-limit
placeholder=
"请输入收费代码的附加详情"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -110,12 +110,13 @@
type=
"primary"
icon=
"el-icon-more"
@
click=
"onChargicButtxmsel"
disabled
>
</c-button>
<c-checkbox
style=
"margin: 0 0 0 10px"
v-model=
"model.gitp.chargic.chkast"
v-model=
"model.gitp.chargic.chkast"
disabled
>
允许
</c-checkbox
>
</c-col>
...
...
@@ -128,7 +129,7 @@
prop=
"gidgrp.blk.preperc"
>
<c-input
:disabled=
"model.gitp.prepercmodflg == ''"
disabled
rows=
"6"
type=
"textarea"
v-model=
"model.gidgrp.blk.preperc"
...
...
@@ -141,12 +142,12 @@
<c-col
:span=
"7"
>
<c-checkbox
v-model=
"model.gitp.prepercmodflg"
style=
"margin: 0 0 0 10px;float:left"
style=
"margin: 0 0 0 10px;float:left"
disabled
>
是否手工修改保函文本
</c-checkbox
>
<c-checkbox
v-model=
"model.gitp.chkpreperc"
style=
"margin: 0 0 0 10px;float:left"
style=
"margin: 0 0 0 10px;float:left"
disabled
>
允许
</c-checkbox
>
<c-button
...
...
src/views/Business/Gitdla/Ptyp.vue
View file @
80d35415
...
...
@@ -11,6 +11,7 @@
v-model=
"model.gidgrp.apl.pts.ref"
maxlength=
"16"
placeholder=
"请输入申请人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -24,6 +25,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
disabled
></c-input>
<template
slot=
"footer"
>
<c-button
...
...
@@ -34,7 +36,7 @@
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
:disabled=
"model.gidgrp.apl.pts.adrblk == ''"
disabled
size=
"small"
type=
"primary"
@
click=
"onAplpDet"
...
...
@@ -130,6 +132,7 @@
v-model=
"model.gidgrp.apl.pts.ref"
maxlength=
"16"
placeholder=
"请输入开证行参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -143,6 +146,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -185,6 +189,7 @@
v-model=
"model.gidgrp.ctr.pts.ref"
maxlength=
"16"
placeholder=
"请输入申请人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -198,6 +203,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ctr.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -208,7 +214,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtrpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtrpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -224,6 +230,7 @@
v-model=
"model.gidgrp.ctr.pts.adrblk"
show-word-limit
placeholder=
"请输入地址名称"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -242,6 +249,7 @@
v-model=
"model.gidgrp.apl.pts.ref"
maxlength=
"16"
placeholder=
"请输入申请人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -255,6 +263,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -298,6 +307,7 @@
v-model=
"model.gidgrp.ctr.pts.ref"
maxlength=
"16"
placeholder=
"请输入账户/对象参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -311,6 +321,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ctr.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -321,7 +332,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtrpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtrpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -331,7 +342,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.ctr.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.ctr.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.ctr.pts.adrblk"
...
...
@@ -355,6 +366,7 @@
v-model=
"model.gidgrp.ben.pts.ref"
maxlength=
"16"
placeholder=
"请输入"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -371,6 +383,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
<c-button
...
...
@@ -381,7 +394,7 @@
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
:disabled=
"model.gidgrp.rec.hndtyp == 'OT'"
disabled
size=
"small"
type=
"primary"
@
click=
"onBenpDet"
...
...
@@ -395,10 +408,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.ben.pts.adrblk"
>
<c-input
:disabled=
"
model.gidgrp.rec.hndtyp == 'OT' ||
model.gidgrp.ben.pts.adrblk != ''
"
disabled
rows=
"4"
type=
"textarea"
maxlength=
"140"
...
...
@@ -422,6 +432,7 @@
v-model=
"model.gidgrp.iss.pts.ref"
maxlength=
"16"
placeholder=
"请输入"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -442,6 +453,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.iss.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
<c-button
...
...
@@ -492,6 +504,7 @@
v-model=
"model.gidgrp.ben.pts.ref"
maxlength=
"16"
placeholder=
"请输入受益人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -505,6 +518,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -515,7 +529,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onBenpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onBenpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -525,7 +539,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.ben.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.ben.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.ben.pts.adrblk"
...
...
@@ -543,6 +557,7 @@
v-model=
"model.gidgrp.atb.pts.ref"
maxlength=
"16"
placeholder=
"请输入通知行参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -556,6 +571,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.atb.pts.extkey`)
"
disabled
></c-input>
<!-- @blur="benBlur" -->
<
template
slot=
"footer"
>
...
...
@@ -566,7 +582,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onAtbpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onAtbpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -576,7 +592,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.atb.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.atb.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.atb.pts.adrblk"
...
...
@@ -602,6 +618,7 @@
size=
"mini"
@
click=
"handleEdit(scope.$index, scope.row)"
type=
"primary"
disabled
>
详情
</el-button
>
</
template
>
...
...
src/views/Business/Gitdla/Ptypc.vue
View file @
80d35415
...
...
@@ -9,6 +9,7 @@
v-model=
"model.gidgrp.apc.pts.ref"
maxlength=
"16"
placeholder=
"请输入申请人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -22,6 +23,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.apc.pts.extkey`)
"
disabled
></c-input>
<template
slot=
"footer"
>
<c-button
...
...
@@ -31,7 +33,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onApcpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onApcpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -41,7 +43,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.apc.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.apc.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.apc.pts.adrblk"
...
...
@@ -58,6 +60,7 @@
v-model=
"model.gidgrp.ctc.pts.ref"
maxlength=
"16"
placeholder=
"请输入债务人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -71,6 +74,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ctc.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
<c-button
...
...
@@ -80,7 +84,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtcpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onCtcpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -90,7 +94,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.ctc.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.ctc.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.ctc.pts.adrblk"
...
...
@@ -110,6 +114,7 @@
v-model=
"model.gidgrp.bec.pts.ref"
maxlength=
"16"
placeholder=
"请输入国际受益人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -123,6 +128,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.bec.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
<c-button
...
...
@@ -132,7 +138,7 @@
>
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onBecpDet"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onBecpDet"
disabled
>
详情
</c-button>
</
template
>
...
...
@@ -142,7 +148,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.bec.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.bec.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.bec.pts.adrblk"
...
...
@@ -160,6 +166,7 @@
v-model=
"model.gidgrp.iss.pts.ref"
maxlength=
"16"
placeholder=
"请输入开证行参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -173,6 +180,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.iss.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
...
...
@@ -184,7 +192,7 @@
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
:disabled=
"model.gidgrp.iss.pts.adrblk == ''"
disabled
size=
"small"
type=
"primary"
@
click=
"onIsspDet"
...
...
@@ -198,7 +206,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.iss.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.iss.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.iss.pts.adrblk"
...
...
@@ -217,6 +225,7 @@
v-model=
"model.gidgrp.ben.pts.ref"
maxlength=
"16"
placeholder=
"请输入最终收款行参考号"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -233,6 +242,7 @@
@
keyup
.
enter
.
native=
"
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"
disabled
></c-input>
<
template
slot=
"footer"
>
<c-button
...
...
@@ -243,7 +253,7 @@
<i
class=
"el-icon-info"
></i>
</c-button>
<c-button
:disabled=
"model.gidgrp.ben.pts.adrblk == ''"
disabled
size=
"small"
type=
"primary"
@
click=
"onBenpDet"
...
...
@@ -257,7 +267,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地址名称"
prop=
"gidgrp.ben.pts.adrblk"
>
<c-input
:disabled=
"model.gidgrp.ben.pts.adrblk != ''"
disabled
rows=
"4"
type=
"textarea"
v-model=
"model.gidgrp.ben.pts.adrblk"
...
...
src/views/Review/Business/ReviewGitdla.vue
0 → 100644
View file @
80d35415
<
template
>
<ReviewWrapper>
<Gitdla></Gitdla>
</ReviewWrapper>
</
template
>
<
script
>
import
Gitdla
from
"~/views/Business/Gitdla"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewGitdla"
,
components
:
{
ReviewWrapper
,
Gitdla
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
\ No newline at end of file
src/views/Review/ReviewRouter.js
View file @
80d35415
...
...
@@ -123,6 +123,7 @@ import ReviewGctcan from "./Business/ReviewGctcan.vue";
import
ReviewGiteng
from
"./Business/ReviewGiteng.vue"
;
import
ReviewGitplb
from
"./Business/ReviewGitplb.vue"
;
import
ReviewGitadd
from
"./Business/ReviewGitadd.vue"
;
import
ReviewGitdla
from
"./Business/ReviewGitdla.vue"
;
import
ReviewBttrcl
from
"./Business/ReviewBttrcl.vue"
;
import
ReviewBttset
from
"./Business/ReviewBttset.vue"
;
...
...
@@ -269,6 +270,7 @@ const ReviewRouter = [
{
path
:
"gitplb"
,
component
:
ReviewGitplb
,
name
:
"ReviewGitplb"
,
meta
:
{
title
:
"复核-Gitplb"
}
},
{
path
:
"gitfre"
,
component
:
ReviewGitfre
,
name
:
"ReviewGitfre"
,
meta
:
{
title
:
"复核-Gitfre"
}
},
{
path
:
"gitadd"
,
component
:
ReviewGitadd
,
name
:
"ReviewGitadd"
,
meta
:
{
title
:
"复核-Gitadd"
}
},
{
path
:
"gitdla"
,
component
:
ReviewGitdla
,
name
:
"ReviewGitdla"
,
meta
:
{
title
:
"复核-Gitdla"
}
},
{
path
:
"bttrcl"
,
component
:
ReviewBttrcl
,
name
:
"ReviewBttrcl"
,
meta
:
{
title
:
"复核-Bttrcl"
}
},
{
path
:
"bttset"
,
component
:
ReviewBttset
,
name
:
"ReviewBttset"
,
meta
:
{
title
:
"复核-Bttset"
}
},
...
...
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