Commit 3434fac7 authored by 786817560's avatar 786817560

'农行代扣修改'

parent ff547fba
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-12-18 19:32:47
* @LastEditTime: 2019-12-19 10:23:09
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
......@@ -274,7 +274,7 @@ export default {
}
}
.platform-ios {
#contract-signing {
#contract-create-list {
.scrollContent {
padding-top: 3.4rem;
}
......@@ -283,7 +283,7 @@ export default {
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-signing {
#contract-create-list {
.scrollContent {
padding-top: 3.8rem;
}
......@@ -293,7 +293,7 @@ export default {
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-signing {
#contract-create-list {
.scrollContent {
padding-top: 3.8rem;
}
......
<!--
* @Author: your name
* @Date: 2019-12-18 20:15:42
* @LastEditTime: 2019-12-18 20:17:36
* @LastEditTime: 2019-12-19 10:09:43
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \hls-xcmg-vue-app\src\pages\contractCreate\pick-lessee.vue
......@@ -14,6 +14,35 @@
<span>选择承租人</span>
</div>
</h-header>
<!-- 搜索 -->
<div class="search">
<input type="text" placeholder="请输入承租人名称/证件号码">
</div>
<scroll
ref="scroll"
>
<div class="wrap">
<div v-for="(item,index) in showLists" :key="index" class="contract-lists" >
<!-- <div class="pro-code" @click="goDetails(item)">
<img src="@/assets/distributorSign/fileIcon.png" alt="" class="file-icon">
<p>
<span>合同号</span>
<span>{{ item.project_number }}</span>
</p>
</div> -->
<div class="box">
<img src="@/assets/distributorSign/fileIcon.png" alt="" class="file-icon">
<div><p>承租人名称</p><p>{{ '张三' }}</p></div>
<div><p>证件号</p><p>{{ '152104199108211334' }}</p></div>
</div>
</div>
</div>
</scroll>
<bottom-tab>
<tab-button class="footer">
确认创建
</tab-button>
</bottom-tab>
</h-view>
</template>
......@@ -22,7 +51,11 @@ export default {
name: '',
data () {
return {
showLists: [
{ project_number: '201903022001', bp_name: 'zhangsan', total_price: '1000000', confirm_start_date: '2019-12-18' },
{ project_number: '201903022001', bp_name: 'zhangsan', total_price: '1000000', confirm_start_date: '2019-12-18' },
{ project_number: '201903022001', bp_name: 'zhangsan', total_price: '1000000', confirm_start_date: '2019-12-18' },
],
}
},
computed: {},
......@@ -32,6 +65,141 @@ export default {
},
}
</script>
<style lang='less' scoped>
<style lang='less'>
#picker {
.search {
background-color: #fff;
padding: 8px 12px;
position: absolute;
width: 100%;
z-index: 100;
margin-bottom: 8px;
input {
padding-left: 12px;
border-radius: 4px;
height: 36px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888C8F;
line-height: 36px;
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
}
input::placeholder {
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888C8F;
letter-spacing: 0;
}
input:focus {
background: url("../../assets/contractStart/search2.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
border: 2px solid #bcc6ff;
}
}
.wrap {
width: 100%;
padding: 8px;
.contract-lists {
width: 100%;
background: #fff;
margin-bottom: 8px;
border-radius: 2px;
position: relative;
.box {
height: 68px;
margin-left: 50px;
margin-right: 19px;
.file-icon {
width: 30px;
height: 30px;
position: absolute;
left: 10px;
top: 8px;
}
div {
width: 100%;
height: 32px;
position: relative;
p {
height: 32px;
line-height: 32px;
position: absolute;
font-family: PingFangSC-Regular;
font-size: 14px;
letter-spacing: 0;
}
p:nth-of-type(1){
left: 0;
color: rgba(75,74,75,0.60);
}
p:nth-of-type(2){
right: 0;
color: #4B4A4B;
}
}
}
}
}
.bottom-tab-button{
background: @headerColor;
border-radius: 4px;
color:white;
height: 40px;
margin: 4px 2% 0 2%;
}
.content{
position: absolute;
top:0;
}
.scrollContent{
padding-top: 1.92rem;
padding-bottom: 20px;
}
}
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</style>
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-12-18 20:19:23
* @LastEditTime: 2019-12-19 09:35:51
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
......@@ -15,7 +15,7 @@
</h-header>
<h-content>
<list-item :item-height="44" class="second-part">
<item :showArrow="true" @click="picker">
<item :showArrow="true" @click.native="picker">
<div slot="name" class="font-color">承租人</div>
<span slot="content">{{ '请选择' }}</span>
</item>
......
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-12-18 10:43:37
* @LastEditTime: 2019-12-19 10:38:35
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
......@@ -808,10 +808,10 @@ export default {
})
},
inSure () {
if (this.bank_flag) {
this.showModalValue = true // 审批内容框显示
if (!this.bank_flag && this.abc_deduction_flag === 'Y') {
this.isshow = true // 未查到农行卡给出提示且勾选农行代扣
} else {
this.isshow = true // 未查到农行卡给出提
this.showModalValue = true // 审批内容框显
}
},
......
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