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
fe9ac33c
Commit
fe9ac33c
authored
Oct 15, 2022
by
Wuyuqiu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
litdck交易ui美化
parent
ca569afd
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
159 additions
and
69 deletions
+159
-69
common.css
src/assets/css/common.css
+16
-0
index.vue
src/views/Business/Litame/index.vue
+2
-1
Docpre.vue
src/views/Business/Litdck/Docpre.vue
+1
-1
Litdckp.vue
src/views/Business/Litdck/Litdckp.vue
+0
-0
Ovwp.vue
src/views/Business/Litdck/Ovwp.vue
+44
-0
Srmp.vue
src/views/Business/Litdck/Srmp.vue
+1
-1
index.vue
src/views/Business/Litdck/index.vue
+74
-43
Dogp.vue
src/views/Business/Litopn/Dogp.vue
+1
-1
Spcbenp.vue
src/views/Business/Litopn/Spcbenp.vue
+3
-4
Spcrcvp.vue
src/views/Business/Litopn/Spcrcvp.vue
+4
-4
index.vue
src/views/Business/Litopn/index.vue
+5
-7
index.vue
src/views/Business/index.vue
+2
-1
BlkTextarea.vue
src/views/Public/BlkTextarea.vue
+1
-1
Doctre.vue
src/views/Public/Doctre.vue
+2
-2
Engp.vue
src/views/Public/Engp.vue
+1
-1
Limitbody.vue
src/views/Public/Limitbody.vue
+1
-1
Setpan.vue
src/views/Public/Setpan.vue
+1
-1
No files found.
src/assets/css/common.css
View file @
fe9ac33c
...
@@ -61,6 +61,7 @@
...
@@ -61,6 +61,7 @@
} */
} */
.m-app-main
{
.m-app-main
{
/* background-color: var(--bgcolor); */
/* background-color: var(--bgcolor); */
box-shadow
:
0
1px
15px
0
rgb
(
0
0
0
/
12%
),
0
0
3px
0
rgb
(
0
0
0
/
4%
);
}
}
.m-app
{
.m-app
{
...
@@ -527,3 +528,18 @@
...
@@ -527,3 +528,18 @@
float
:
left
;
float
:
left
;
margin-left
:
120px
;
margin-left
:
120px
;
}
}
/* 去除工具条默认圆角 */
.toolbar-core
{
border-radius
:
0px
;
}
/* 改变折叠面板箭头样式 */
.el-icon-arrow-right
:before
{
content
:
"\e791"
;
}
.el-collapse-item__arrow
{
color
:
var
(
--themecolor
);
}
src/views/Business/Litame/index.vue
View file @
fe9ac33c
...
@@ -299,7 +299,7 @@ export default {
...
@@ -299,7 +299,7 @@ export default {
computed
:
{},
computed
:
{},
data
()
{
data
()
{
return
{
return
{
tabVal
:
"
ame
p"
,
tabVal
:
"
ovw
p"
,
trnName
:
"litame"
,
trnName
:
"litame"
,
model
:
new
Litame
().
data
,
model
:
new
Litame
().
data
,
checkRules
:
Check
,
checkRules
:
Check
,
...
@@ -307,6 +307,7 @@ export default {
...
@@ -307,6 +307,7 @@ export default {
pattern
:
Pattern
,
pattern
:
Pattern
,
rules
:
null
,
rules
:
null
,
codes
:
{
...
CodeTable
},
codes
:
{
...
CodeTable
},
activeNames
:
[
"engp"
],
};
};
},
},
methods
:
{
methods
:
{
...
...
src/views/Business/Litdck/Docpre.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eibs
-tab
"
>
<div
class=
"eibs"
>
<el-col
:span=
"12"
style=
"padding-right: 20px;"
>
<el-col
:span=
"12"
style=
"padding-right: 20px;"
>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"不符点"
prop=
"brdgrp.blk.docdis"
>
<el-form-item
label=
"不符点"
prop=
"brdgrp.blk.docdis"
>
...
...
src/views/Business/Litdck/Litdckp.vue
View file @
fe9ac33c
This diff is collapsed.
Click to expand it.
src/views/Business/Litdck/Ovwp.vue
0 → 100644
View file @
fe9ac33c
<
template
>
<div
class=
"eibs-tab"
>
<el-collapse
v-model=
"activeNames"
>
<el-collapse-item
title=
"单据信息"
name=
"litdckp"
>
<m-litdckp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"不符点/说明"
name=
"docpre"
v-if=
"this.model.brdgrp.rec.dscinsflg"
>
<m-docpre
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"货权单据"
name=
"srmp"
>
<m-srmp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
</el-collapse>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Litdck/Event"
;
import
Litdckp
from
"./Litdckp"
;
import
Docpre
from
"./Docpre"
;
import
Srmp
from
"./Srmp"
;
export
default
{
components
:{
"m-litdckp"
:
Litdckp
,
"m-docpre"
:
Docpre
,
"m-srmp"
:
Srmp
,
},
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
()
{
return
{
activeNames
:
[
"litdckp"
],
};
},
methods
:
{
...
Event
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
src/views/Business/Litdck/Srmp.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eibs
-tab
"
>
<div
class=
"eibs"
>
<el-col
:span=
"12"
style=
"padding-right: 20px;"
>
<el-col
:span=
"12"
style=
"padding-right: 20px;"
>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"单据类型"
prop=
"brdgrp.srm.djutyp"
>
<el-form-item
label=
"单据类型"
prop=
"brdgrp.srm.djutyp"
>
...
...
src/views/Business/Litdck/index.vue
View file @
fe9ac33c
<
template
>
<
template
>
<c-page
title=
"进口信用证到单"
>
<div
class=
"eContainer"
>
<div
class=
"eContainer"
>
<c-page
title=
"进口信用证到单"
>
<el-form
<el-form
:model=
"model"
:model=
"model"
:rules=
"rules"
:rules=
"rules"
...
@@ -16,72 +16,100 @@
...
@@ -16,72 +16,100 @@
type=
"card"
type=
"card"
@
tab-click=
"myTabClick"
@
tab-click=
"myTabClick"
>
>
<!--PD000047 -->
<el-tab-pane
label=
"单据信息"
name=
"litdckp"
>
<c-content>
<m-litdckp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000062 -->
<el-tab-pane
label=
"业务信息"
name=
"ovwp"
>
<el-tab-pane
v-if=
"this.model.brdgrp.rec.dscinsflg"
label=
"不符点/说明"
name=
"docpre"
>
<c-content>
<c-content>
<m-docpre
:model=
"model"
:codes=
"codes"
/>
<m-ovwp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD0000
27
-->
<!--PD0000
01
-->
<el-tab-pane
label=
"
表外记账"
name=
"engp
"
>
<el-tab-pane
label=
"
统一授信"
name=
"limitbody
"
>
<c-content>
<c-content>
<m-engp
:model=
"model"
:codes=
"codes"
/>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD000000 -->
<el-tab-pane
label=
"费用/账务"
name=
"engp,setpan"
>
<el-tab-pane
label=
"结算"
name=
"setpan"
>
<c-content>
<c-content>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
<div
class=
"eibs-tab"
>
<el-collapse
v-model=
"activeNames"
>
<el-collapse-item
title=
"表外记账"
name=
"engp"
>
<!-- 表外记账 -->
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"结算"
name=
"setpan"
>
<!-- 结算 -->
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
</el-collapse>
</div>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD000000 -->
<!--PD000000 -->
<el-tab-pane
label=
"
提示信息
"
name=
"coninfp"
>
<el-tab-pane
label=
"
附言
"
name=
"coninfp"
>
<c-content>
<c-content>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD000529 -->
<!--PD000529 -->
<el-tab-pane
label=
"
面函/报文
"
name=
"docpan"
>
<el-tab-pane
label=
"
报文/面函
"
name=
"docpan"
>
<c-content>
<c-content>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD000546 -->
<!--PD000546 -->
<el-tab-pane
label=
"附件"
name=
"doctre"
>
<el-tab-pane
label=
"附件
信息
"
name=
"doctre"
>
<c-content>
<c-content>
<m-doctre
:model=
"model"
:codes=
"codes"
/>
<m-doctre
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<!--PD0000
01
-->
<!--PD0000
47
-->
<
el-tab-pane
label=
"货权单据"
name=
"srm
p"
>
<
!--
<el-tab-pane
label=
"单据信息"
name=
"litdck
p"
>
<c-content>
<c-content>
<m-srmp
:model=
"model"
:codes=
"codes"
/>
<m-litdckp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
-->
<!--PD000062 -->
<!--
<el-tab-pane
v-if=
"this.model.brdgrp.rec.dscinsflg"
label=
"不符点/说明"
name=
"docpre"
>
<c-content>
<m-docpre
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
-->
<!--PD000027 -->
<!--
<el-tab-pane
label=
"表外记账"
name=
"engp"
>
<c-content>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
-->
<!--PD000000 -->
<!--
<el-tab-pane
label=
"结算"
name=
"setpan"
>
<c-content>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
-->
<!--PD000001 -->
<!--PD000001 -->
<
el-tab-pane
label=
"统一授信"
name=
"limitbody
"
>
<
!--
<el-tab-pane
label=
"货权单据"
name=
"srmp
"
>
<c-content>
<c-content>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
<m-srmp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
-->
</c-tabs>
</c-tabs>
</el-form>
</el-form>
<c-function-btn
<c-function-btn
...
@@ -103,12 +131,13 @@
...
@@ -103,12 +131,13 @@
@
select-ety=
"selectMsg"
@
select-ety=
"selectMsg"
>
>
</c-grid-ety-prompt-dialog>
</c-grid-ety-prompt-dialog>
</div>
</c-page>
</c-page>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
Api
from
"~/service/Api"
;
import
Api
from
"~/service/Api"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Ovwp
from
"./Ovwp"
;
import
Litdck
from
"~/model/Litdck"
;
import
Litdck
from
"~/model/Litdck"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonFuncs
from
"~/mixin/commonFuncs"
;
import
commonFuncs
from
"~/mixin/commonFuncs"
;
...
@@ -123,19 +152,20 @@ import Docpre from "./Docpre";
...
@@ -123,19 +152,20 @@ import Docpre from "./Docpre";
// import Coninfp from "./Coninfp"
// import Coninfp from "./Coninfp"
// import Docpan from "./Docpan"
// import Docpan from "./Docpan"
// import Doctre from "./Doctre"
// import Doctre from "./Doctre"
import
Limitbody
from
"./Limitbody"
import
Limitbody
from
"./Limitbody"
;
import
Srmp
from
"./Srmp"
import
Srmp
from
"./Srmp"
;
import
Engp
from
"~/views/Public/Engp"
import
Engp
from
"~/views/Public/Engp"
;
import
Setpan
from
"~/views/Public/Setpan"
import
Setpan
from
"~/views/Public/Setpan"
;
import
Coninfp
from
"~/views/Public/Coninfp"
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Docpan
from
"~/views/Public/Docpan"
import
Docpan
from
"~/views/Public/Docpan"
;
import
Doctre
from
"~/views/Public/Doctre"
import
Doctre
from
"~/views/Public/Doctre"
;
// import Limitbody from "~/views/Public/Limitbody"
// import Limitbody from "~/views/Public/Limitbody"
export
default
{
export
default
{
name
:
"Litdck"
,
name
:
"Litdck"
,
components
:
{
components
:
{
"m-ovwp"
:
Ovwp
,
"m-litdckp"
:
Litdckp
,
"m-litdckp"
:
Litdckp
,
"m-docpre"
:
Docpre
,
"m-docpre"
:
Docpre
,
"m-engp"
:
Engp
,
"m-engp"
:
Engp
,
...
@@ -154,7 +184,7 @@ export default {
...
@@ -154,7 +184,7 @@ export default {
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
data
()
{
data
()
{
return
{
return
{
tabVal
:
"
litdck
p"
,
tabVal
:
"
ovw
p"
,
trnName
:
"litdck"
,
trnName
:
"litdck"
,
model
:
new
Litdck
().
data
,
model
:
new
Litdck
().
data
,
checkRules
:
Check
,
checkRules
:
Check
,
...
@@ -162,6 +192,7 @@ export default {
...
@@ -162,6 +192,7 @@ export default {
pattern
:
Pattern
,
pattern
:
Pattern
,
rules
:
null
,
rules
:
null
,
codes
:
{
...
CodeTable
},
codes
:
{
...
CodeTable
},
activeNames
:
[
"engp"
],
};
};
},
},
methods
:
{
methods
:
{
...
...
src/views/Business/Litopn/Dogp.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eibs"
>
<div
class=
"eibs"
>
<c-col
:span=
"2
0
"
>
<c-col
:span=
"2
2
"
>
<el-form-item
label=
"货物/服务描述"
prop=
"lidgrp.blk.lcrgod"
>
<el-form-item
label=
"货物/服务描述"
prop=
"lidgrp.blk.lcrgod"
>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.lcrgod"
maxlength=
"52000"
:rows=
"30"
show-word-limit
placeholder=
"请输入货物或服务描述"
></c-input>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.lcrgod"
maxlength=
"52000"
:rows=
"30"
show-word-limit
placeholder=
"请输入货物或服务描述"
></c-input>
</el-form-item>
</el-form-item>
...
...
src/views/Business/Litopn/Spcbenp.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eibs"
>
<div
class=
"eibs"
>
<c-col
:span=
"
18
"
>
<c-col
:span=
"
22
"
>
<el-form-item
label=
"受益人特殊付款条款"
prop=
"lidgrp.blk.spcben"
>
<el-form-item
label=
"受益人特殊付款条款"
prop=
"lidgrp.blk.spcben"
>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.spcben"
maxlength=
"65"
:rows=
"30"
show-word-limit
placeholder=
"请输入Special Payment Conditions"
></c-input>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.spcben"
maxlength=
"65"
:rows=
"30"
show-word-limit
placeholder=
"请输入Special Payment Conditions"
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"3"
>
<c-col
:span=
"2"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onSpcbenButtxmsel"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-more"
@
click=
"onSpcbenButtxmsel"
>
...
</c-button>
</c-button>
</c-col>
</c-col>
</div>
</div>
...
...
src/views/Business/Litopn/Spcrcvp.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eibs"
>
<div
class=
"eibs"
>
<c-col
:span=
"
18
"
>
<c-col
:span=
"
22
"
>
<el-form-item
label=
"仅适用于指定银行的特殊付款条款"
prop=
"lidgrp.blk.spcrcb"
>
<el-form-item
label=
"仅适用于指定银行的特殊付款条款"
prop=
"lidgrp.blk.spcrcb"
>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.spcrcb"
maxlength=
"65"
:rows=
"30"
show-word-limit
placeholder=
"请输入Special Payment "
></c-input>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.spcrcb"
maxlength=
"65"
:rows=
"30"
show-word-limit
placeholder=
"请输入Special Payment "
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"
3
"
>
<c-col
:span=
"
2
"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onSpcrcbButtxmsel"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onSpcrcbButtxmsel"
...
icon=
"el-icon-more"
>
</c-button>
</c-button>
</c-col>
</c-col>
</div>
</div>
...
...
src/views/Business/Litopn/index.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div
class=
"eContainer"
>
<c-page
title=
"进口信用证开立"
>
<c-page
title=
"进口信用证开立"
>
<div
class=
"eContainer"
>
<div
class=
"fast-button"
>
<div
class=
"fast-button"
>
<el-button
size=
"small"
>
备忘录
</el-button>
<el-button
size=
"small"
>
备忘录
</el-button>
<el-button
size=
"small"
@
click=
"setDraggableContent('cms', '影像信息')"
>
影像信息
</el-button>
<el-button
size=
"small"
@
click=
"setDraggableContent('cms', '影像信息')"
>
影像信息
</el-button
>
<!--
<el-button
size=
"small"
>
保存模板
</el-button>
-->
<!--
<el-button
size=
"small"
>
保存模板
</el-button>
-->
<!--
<el-button
size=
"small"
>
使用模板
</el-button>
-->
<!--
<el-button
size=
"small"
>
使用模板
</el-button>
-->
<el-button
size=
"small"
>
制裁信息
</el-button>
<el-button
size=
"small"
>
制裁信息
</el-button>
...
@@ -241,8 +239,8 @@
...
@@ -241,8 +239,8 @@
:handleStash=
"handleStash"
:handleStash=
"handleStash"
>
>
</c-function-btn>
</c-function-btn>
</c-page>
</div>
</div>
</c-page>
</
template
>
</
template
>
<
script
>
<
script
>
import
Api
from
"~/service/Api"
;
import
Api
from
"~/service/Api"
;
...
...
src/views/Business/index.vue
View file @
fe9ac33c
...
@@ -37,6 +37,7 @@ export default {
...
@@ -37,6 +37,7 @@ export default {
<
style
>
<
style
>
#business_container
{
#business_container
{
flex
:
1
;
flex
:
1
;
box-shadow
:
0
1px
15px
0
rgb
(
0
0
0
/
12%
),
0
0
3px
0
rgb
(
0
0
0
/
4%
);
}
}
#business_container
.eContainer
,
#business_container
.eContainer-search
{
#business_container
.eContainer
,
#business_container
.eContainer-search
{
box-sizing
:
border-box
;
box-sizing
:
border-box
;
...
@@ -47,7 +48,7 @@ export default {
...
@@ -47,7 +48,7 @@ export default {
}
}
#business_container
.eContainer
{
#business_container
.eContainer
{
background-color
:
#ffffff
;
background-color
:
#ffffff
;
box-shadow
:
0
1px
3
px
0
rgb
(
0
0
0
/
12%
),
0
0
3px
0
rgb
(
0
0
0
/
4%
);
box-shadow
:
0
1px
15
px
0
rgb
(
0
0
0
/
12%
),
0
0
3px
0
rgb
(
0
0
0
/
4%
);
}
}
#business_container
.eContainer
.eContainer
,
#business_container
.eContainer
.eContainer
,
#business_container
.eContainer
.eContainer-search
,
#business_container
.eContainer
.eContainer-search
,
...
...
src/views/Public/BlkTextarea.vue
View file @
fe9ac33c
<
template
>
<
template
>
<div>
<div>
<!-- Description of Goods -->
<!-- Description of Goods -->
<c-col
:span=
"
19
"
>
<c-col
:span=
"
22
"
>
<el-form-item
:label=
"blkMsg.title"
:prop=
"blkMsg.dataUrl"
>
<el-form-item
:label=
"blkMsg.title"
:prop=
"blkMsg.dataUrl"
>
<c-input
<c-input
type=
"textarea"
type=
"textarea"
...
...
src/views/Public/Doctre.vue
View file @
fe9ac33c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"eibs-tab"
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"24"
style=
"height: 24px;margin-bottom: 20px;"
>
<c-col
:span=
"24"
style=
"height: 24px;margin-bottom: 20px;"
>
<el-form-item
label=
"发出面函/报文"
class=
"messageLabel"
></el-form-item>
<el-form-item
label=
"发出面函/报文"
class=
"messageLabel"
style=
"width: 96px;"
></el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
style=
"height: 0px"
>
<c-col
:span=
"24"
style=
"height: 0px"
>
<el-divider></el-divider>
<el-divider></el-divider>
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
</c-col>
</c-col>
<c-col
:span=
"24"
style=
"height: 24px;margin-top: 20px;;margin-bottom: 20px;"
>
<c-col
:span=
"24"
style=
"height: 24px;margin-top: 20px;;margin-bottom: 20px;"
>
<el-form-item
label=
"前置面函/报文"
class=
"messageLabel"
></el-form-item>
<el-form-item
label=
"前置面函/报文"
class=
"messageLabel"
style=
"width: 96px;"
></el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
style=
"height: 0px"
>
<c-col
:span=
"24"
style=
"height: 0px"
>
<el-divider></el-divider>
<el-divider></el-divider>
...
...
src/views/Public/Engp.vue
View file @
fe9ac33c
...
@@ -159,7 +159,7 @@
...
@@ -159,7 +159,7 @@
placeholder=
""
placeholder=
""
></c-input>
></c-input>
<c-input
<c-input
style=
"width: 40%"
style=
"width: 40%
;margin-left:5px;
"
disabled
disabled
v-model=
"model.liaall.misamt"
v-model=
"model.liaall.misamt"
placeholder=
"请输入金额"
placeholder=
"请输入金额"
...
...
src/views/Public/Limitbody.vue
View file @
fe9ac33c
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
></c-input>
></c-input>
<template
slot=
"footer"
>
<template
slot=
"footer"
>
<c-button
<c-button
style=
"margin
: 0 5px 0
10px; padding: 0 12px"
style=
"margin
-right:
10px; padding: 0 12px"
size=
"small"
size=
"small"
type=
"primary"
type=
"primary"
icon=
"el-icon-search"
icon=
"el-icon-search"
...
...
src/views/Public/Setpan.vue
View file @
fe9ac33c
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
v-model=
"model.setmod.docamt"
v-model=
"model.setmod.docamt"
placeholder=
"0"
placeholder=
"0"
disabled
disabled
style=
"margin-left:
20
px"
style=
"margin-left:
5
px"
></c-input-currency>
></c-input-currency>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
...
...
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