Commit e9237e88 authored by 李晓兵's avatar 李晓兵

'修改法人绑定必输'

parents 5b827c93 9b741a20
......@@ -2,7 +2,7 @@
* @Description: 合同详情
* @Author: your name
* @Date: 2019-09-25 15:38:21
* @LastEditTime: 2019-09-27 10:54:43
* @LastEditTime: 2019-09-27 11:13:31
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -64,6 +64,8 @@
</div>
</item>
</list-item>
<!-- 联系人 -->
<div class="bottom-call">
<div class="left">
<img src="@/assets/distributorSign/call.png" alt="">
......@@ -320,6 +322,7 @@ export default {
font-size: 15px;
margin-left: 16px;
position: relative;
margin-top: -10px;
}
.equipment-list::before {
content: "";
......@@ -330,6 +333,9 @@ export default {
position: absolute;
left: -15px;
top: 10px;
}
.equipment-list:nth-of-type(3) {
margin-top: 0
}
// .left {
// width: 60px;
......
<!--
* @Description: In User Settings Edit
* @Description: 签约单列表
* @Author: your name
* @Date: 2019-09-25 10:30:46/>: your name
-->
......@@ -166,8 +166,8 @@ export default {
height: 86px;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 4px 0;
justify-content: space-evenly;
.option {
width: 100%;
height: 18px;
......
<!--
* @Description: In User Settings Edit
* @Description: 详情tab
* @Author: your name
* @Date: 2019-09-25 19:47:59
* @LastEditTime: 2019-09-26 14:08:08
* @LastEditTime: 2019-09-27 13:33:08
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -40,21 +40,15 @@ export default {
</script>
<style lang="less" scoped>
.tab-style{
/* display:flex;
position: relative;
z-index: 50;
background-color: #fff;
display:flex;
justify-content: center;
padding-top:12px;
padding-bottom: 8px;
align-items: center;
box-shadow:0 2px 3px 0 rgba(220,220,221,0.50);*/
position: relative;
z-index: 50;
background-color: #fff;
display:flex;
justify-content: center;
padding-top:12px;
padding-bottom: 8px;
align-items: center;
box-shadow:0 2px 3px 0 rgba(220,220,221,0.50);
box-shadow:0 2px 3px 0 rgba(220,220,221,0.50);
span{
display: block;
width:112px;
......
<!--
* @Description: In User Settings Edit
* @Description: 法人信息
* @Author: your name
* @Date: 2019-09-26 15:09:24
* @LastEditTime: 2019-09-26 16:06:50
* @LastEditTime: 2019-09-27 11:00:25
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -39,6 +39,8 @@
</item>
</list-item>
<div class="equipment-list">{{ text }}</div>
<!-- 授权人 -->
<list-item v-show="auth_flag" :item-height="44" class="second-part">
<item>
<div slot="name" class="font-color">姓名</div>
......@@ -58,6 +60,7 @@
</item>
</list-item>
<!-- 法定代表人 -->
<list-item v-show="!auth_flag" :item-height="44" class="second-part">
<item>
<div slot="name" class="font-color">姓名</div>
......@@ -123,6 +126,7 @@ export default {
font-size: 15px;
margin-left: 16px;
position: relative;
margin-top: -10px;
}
.equipment-list::before {
content: "";
......
<!--
* @Descrip""/>User Settings Edit
* @Descrip:个人信息
* @Author: your name
* @Date: 2019-09-26 15:47:45
* @LastEditTime: 2019-09-26 16:03:54
* @LastEditTime: 2019-09-27 13:21:47
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -89,6 +89,7 @@ export default {
font-size: 15px;
margin-left: 16px;
position: relative;
margin-top: -10px;
}
.equipment-list::before {
content: "";
......
......@@ -2,7 +2,7 @@
* @Description: In User Settings Edit
* @Author: liuxin
* @Date: 2019-09-19 09:18:14
* @LastEditTime: 2019-09-26 19:54:05
* @LastEditTime: 2019-09-27 13:21:31
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -348,13 +348,13 @@ export default {
vm.hlsPopup.showLongCenter('学历不能为空!')
} else if (!vm.baseInfo.marital_status) {
vm.hlsPopup.showLongCenter('婚姻状况不能为空!')
} else if ((vm.marital_status_n == '已婚') && !vm.baseInfo.bp_name_sp) {
} else if ((vm.marital_status_n === '已婚') && !vm.baseInfo.bp_name_sp) {
vm.hlsPopup.showLongCenter('配偶姓名不能为空!')
} else if ((vm.marital_status_n == '已婚') && !vm.baseInfo.spouse_phone) {
} else if ((vm.marital_status_n === '已婚') && !vm.baseInfo.spouse_phone) {
vm.hlsPopup.showLongCenter('配偶手机号不能为空!')
} else if ((vm.marital_status_n == '已婚') && !vm.baseInfo.working_place_sp) {
} else if ((vm.marital_status_n === '已婚') && !vm.baseInfo.working_place_sp) {
vm.hlsPopup.showLongCenter('配偶工作单位不能为空!')
} else if ((vm.marital_status_n == '已婚') && !vm.baseInfo.address_sp) {
} else if ((vm.marital_status_n === '已婚') && !vm.baseInfo.address_sp) {
vm.hlsPopup.showLongCenter('配偶居住地址不能为空!')
} else if (!vm.hlsUtil.phoneNumber(vm.baseInfo.phone)) {
vm.hlsPopup.showLongCenter('手机号码有误!')
......
......@@ -2,7 +2,7 @@
* @Description: In User Settings Edit
* @Author: your name
* @Date: 2019-09-19 09:31:19
* @LastEditTime: 2019-09-27 10:33:31
* @LastEditTime: 2019-09-27 12:41:35
* @LastEditors: Please set LastEditors
-->
<template>
......@@ -65,7 +65,7 @@
</item>
<item>
<div slot="name" class="font-color required">注册资本</div>
<input slot="content" v-model="baseInfo.registered_capital" placeholder="上传营业执照自动填充" >
<input slot="content" v-model="baseInfo.registered_capital" type="number" placeholder="上传营业执照自动填充" >
</item>
<item>
<div slot="name" class="font-color required">法定代表人</div>
......
This diff is collapsed.
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