Commit bf251d8d by jianglong

调整登陆界面,去除英文标题,修改LITAME ,LITOPN当事人UI界面,修改表外记账页面列表宽度

parent b3bd68fd
<template> <template>
<div class="clearfix"> <div class="clearfix">
<c-col :span="isAdd ? 21 : 22" style="margin-bottom: 18px" :offset="1"> <c-col :span="isAdd ? 24 : 24" style="margin-bottom: 18px" >
<c-table <c-table
style="text-align: center" style="text-align: center"
:ref="urls" :ref="urls"
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
:row-class-name="tableRowClassName" :row-class-name="tableRowClassName"
@row-click="handleClick" @row-click="handleClick"
> >
<el-table-column v-if="isIndex" type="index" width="50"> <el-table-column v-if="isIndex" type="index" width="50">
</el-table-column> </el-table-column>
<template v-for="item in columns"> <template v-for="item in columns">
<el-table-column <el-table-column
...@@ -44,14 +44,48 @@ ...@@ -44,14 +44,48 @@
</el-table-column> </el-table-column>
</template> </template>
<slot></slot> <slot></slot>
</c-table> <el-table-column v-if="isAdd" :span="1" :offset="1" label="" prop="det" width="150px" fixed="right">
</c-col> <template slot-scope="scope" slot="header">
<c-col v-if="isAdd" :span="1" :offset="1"> <c-button
<div class="button_contains" > circle
style="padding: 4px"
class="el-icon-plus"
size="mini"
@click="handleAdd(scope)"
>
</c-button>
<c-button
style="padding: 4px"
circle
class="el-icon-minus"
size="mini"
@click="handleDelete(scope)"
>
</c-button>
</template>
<template slot-scope="scoped">
<c-button
style="margin-left: 0"
size="small"
type="primary"
icon="el-icon-info"
@click="detail1(scoped.$index, scoped.row)"
></c-button>
</template>
</el-table-column>
<!--div class="button_contains" >
<span class="add_del_button add_button" @click="handleAdd" >+</span> <span class="add_del_button add_button" @click="handleAdd" >+</span>
<span class="add_del_button" @click="handleDelete" >-</span> <span class="add_del_button" @click="handleDelete" >-</span>
</div> </div-->
</c-table>
</c-col> </c-col>
</div> </div>
</template> </template>
<script> <script>
......
...@@ -117,10 +117,10 @@ ...@@ -117,10 +117,10 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="" prop="trnmod.swiadd.ameamt"> <el-form-item label="" prop="trnmod.swiadd.ameamt">
<c-input <c-input-currency
v-model="model.trnmod.swiadd.ameamt" v-model="model.trnmod.swiadd.ameamt"
placeholder="请输入增减金额." placeholder="请输入增减金额."
></c-input> ></c-input-currency>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
......
...@@ -254,70 +254,26 @@ ...@@ -254,70 +254,26 @@
<c-col :span="24">
<c-col :span="23"> <el-form-item label="附加当事人" >
<div class="e-table-wrapper"> <c-edit-table :model="model" v-bind="ptsaddg">
<c-table <el-table-column label="操作" align="center">
:data="model.litp.ptsaddp.ptsaddg" <template slot-scope="scope">
style="width: 100%" <el-button
size="mini"
@click="handleEdit(scope.$index, scope.row)"
type="primary"
icon="el-icon-info"
></el-button
> >
<c-table-column </template>
prop="rol" </el-table-column>
label="角色" </c-edit-table>
sortable </el-form-item>
width="300"> </c-col>
</c-table-column>
<c-table-column
prop="当事人"
label="Party"
sortable
width="300">
</c-table-column>
<c-table-column
prop="nam"
label="当事人名称"
sortable
width="300">
</c-table-column>
<c-table-column
prop="ref"
label="名称地址"
sortable
width="300">
</c-table-column>
<el-table-column label="" prop="det" width="100px" fixed="right">
<template slot-scope="scope" slot="header">
<el-button
circle
style="padding:4px"
class="el-icon-plus"
size="mini"
@click="addRow(scope)"
>
</el-button>
<el-button
style="padding:4px"
circle
class="el-icon-minus"
size="mini"
@click="removeRow(scope)"
>
</el-button>
</template>
<template slot-scope="scoped">
<el-button
style="margin-left:0"
size="small"
type="primary"
@click="detail1(scoped.$index, scoped.row)"
>详情</el-button
>
</template>
</el-table-column>
</c-table>
</div>
</c-col>
</div> </div>
</template> </template>
<script> <script>
...@@ -332,7 +288,33 @@ export default { ...@@ -332,7 +288,33 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
ptsaddg: {
columns: [
{
title: "角色",
width: "120px",
dataIndex: "rol",
show: "select",
},
{
title: "当事人",
width: "180px",
dataIndex: "ptyextkey",
show: "input",
},
{
title: "名称",
width: "250px",
dataIndex: "nam",
},
{
title: "参考号",
width: "250px",
dataIndex: "ref",
},
],
urls: "litp.ptsaddp.ptsaddg",
},
} }
}, },
methods:{...Event}, methods:{...Event},
......
...@@ -448,21 +448,21 @@ ...@@ -448,21 +448,21 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="附加当事人" > <el-form-item label="附加当事人" >
<c-edit-table :model="model" v-bind="ptsaddg">
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button
size="mini"
@click="handleEdit(scope.$index, scope.row)"
type="primary"
icon="el-icon-info"
></el-button
>
</template>
</el-table-column>
</c-edit-table>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-edit-table :model="model" v-bind="ptsaddg">
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button
size="mini"
@click="handleEdit(scope.$index, scope.row)"
type="primary"
icon="el-icon-info"
></el-button
>
</template>
</el-table-column>
</c-edit-table>
<!-- <!--
<c-col :span="12"> <c-col :span="12">
<span v-text="model.litp.avblab" data-path=".litp.avblab" > </span> <span v-text="model.litp.avblab" data-path=".litp.avblab" > </span>
......
...@@ -111,4 +111,10 @@ export default { ...@@ -111,4 +111,10 @@ export default {
display: block; display: block;
clear: both; clear: both;
} }
.eibs{
margin-top: 20px;
}
</style> </style>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
</div> </div>
<div class="self_header_label"> <div class="self_header_label">
<h2>国际结算系统</h2> <h2>国际结算系统</h2>
<h2 style="margin-left: 15px;">International Settlement</h2> <!--h2 style="margin-left: 15px;">International Settlement</h2-->
</div> </div>
<div class="header-tool"> <div class="header-tool">
<div class="header-subInstName"> <div class="header-subInstName">
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<h2>国际结算系统</h2> <h2>国际结算系统</h2>
</div> </div>
<div id="loginForm"> <div id="loginForm">
<h2>International Settlement</h2> <!--div class="en-title">International Trade Financing</div-->
<el-form <el-form
:model="loginForm" :model="loginForm"
status-icon status-icon
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
size="small" size="small"
:hide-required-asterisk="true" :hide-required-asterisk="true"
> >
<el-form-item prop="username" label="用户名"> <el-form-item prop="username" label="用户名" style="margin-top: 50px;">
<el-input prefix-icon="el-icon-user" :placeholder="$t('login.namePlaceholder')" v-model="loginForm.username"></el-input> <el-input prefix-icon="el-icon-user" :placeholder="$t('login.namePlaceholder')" v-model="loginForm.username"></el-input>
</el-form-item> </el-form-item>
...@@ -26,15 +26,17 @@ ...@@ -26,15 +26,17 @@
</el-form-item> </el-form-item>
<el-button style="width: 100%;height: 40px; margin: 20px 0 0" type="primary" @click="submitForm('loginForm')" > <el-button style="width: 100%;height: 40px; margin: 20px 0 0" type="primary" @click="submitForm('loginForm')" >
{{ $t("login.loginBtn") }} 登陆<!--{{ $t("login.loginBtn") }}-->
</el-button> </el-button>
</el-form> </el-form>
</div> </div>
<div class="copy-right"> <div class="copy-right">
<p>新晨科技 版权所有</p> <span>
<p>COPYRIGHT BRILLIANCE</p> <span class="copyright-icon">©</span>
<p style="margin-bottom: 15%;">2022</p> 2022 新晨公司版权所有
</span>
</div> </div>
</div> </div>
</div> </div>
...@@ -90,6 +92,16 @@ export default { ...@@ -90,6 +92,16 @@ export default {
background-image: url("../../assets/login_bg.png"); background-image: url("../../assets/login_bg.png");
background-size: cover; background-size: cover;
} }
.loginContainer .en-title {
font-weight: 600;
font-size: 0.4em;
text-align: center;
margin: 10px 0px 20px;
color: #0000005e;
}
#loginForamWrapper { #loginForamWrapper {
width: 20%; width: 20%;
margin-left: 15%; margin-left: 15%;
...@@ -139,7 +151,7 @@ export default { ...@@ -139,7 +151,7 @@ export default {
flex-direction: column; flex-direction: column;
justify-content: flex-end; justify-content: flex-end;
text-align: center; text-align: center;
font-size: 14px; font-size: 0.4em;
color: #858585; color: #858585;
} }
...@@ -147,3 +159,4 @@ export default { ...@@ -147,3 +159,4 @@ export default {
margin: 3px 0; margin: 3px 0;
} }
</style> </style>
\ No newline at end of file
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="tenpct" label="%" width="70px"> <el-table-column prop="tenpct" label="%" width="70px">
</el-table-column> </el-table-column>
<el-table-column prop="acc" label="核心账号" width="160px"> <el-table-column prop="acc" label="核心账号" width="170px">
<!-- check,需用el-form-item标签包起来 --> <!-- check,需用el-form-item标签包起来 -->
<template slot-scope="scope"> <template slot-scope="scope">
<el-form-item <el-form-item
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
</el-form-item> </el-form-item>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="valdat" label="起息日" width="auto"> <el-table-column prop="valdat" label="起息日" width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ dateFormat(scope.row.valdat) }} {{ dateFormat(scope.row.valdat) }}
</template> </template>
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
</el-form-item> </el-form-item>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="款人" width="110px"> <el-table-column label="款人" width="110px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-form-item <el-form-item
label-width="0" label-width="0"
......
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