Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
Project
Project
Details
Activity
Releases
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
xugong
hls-xcmg-vue-app
Commits
5b827c93
Commit
5b827c93
authored
Sep 27, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改法人绑定必输'
parent
345b5940
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
41 deletions
+95
-41
naturePerson.vue
src/pages/userBind/np/naturePerson.vue
+3
-2
enterprise.vue
src/pages/userBind/org/enterprise.vue
+20
-19
mixin.less
src/styles/mixin.less
+48
-0
yarn.lock
yarn.lock
+24
-20
No files found.
src/pages/userBind/np/naturePerson.vue
View file @
5b827c93
...
...
@@ -161,7 +161,7 @@
</bottom-tab>
<h-modal
ref=
"modal"
v-model=
"showModalValue"
position=
"bottom"
cus-class=
"sign-modal"
>
<h-view>
<
h-content
class=
"modal-content"
>
<
div
class=
"modal-content"
>
<notify
v-model=
"show1"
content=
"请输入本人的银行卡"
type=
"warning"
class=
"notice"
/>
<notify
v-model=
"show2"
content=
"请输入完整字段"
type=
"warning"
class=
"notice"
/>
<notify
v-model=
"show3"
content=
"添加成功"
type=
"success"
class=
"notice"
/>
...
...
@@ -188,7 +188,7 @@
<input
slot=
"content"
v-model=
"bank.bank_branch_name"
placeholder=
"请输入支行名称"
>
</item>
</list-item>
</
h-content
>
</
div
>
</h-view>
<bottom-tab
class=
"add-box"
>
<tab-button
class=
"add-card"
@
click
.
native=
"addBankInfo"
>
添加
</tab-button>
...
...
@@ -812,6 +812,7 @@ export default {
display: none;
}
.modal-content {
width: 100%;
height: 75%;
position: absolute;
top: 25%;
...
...
src/pages/userBind/org/enterprise.vue
View file @
5b827c93
...
...
@@ -18,7 +18,7 @@
<div
v-show=
"tabNum==0"
>
<list-item
:item-height=
"44"
>
<item
:showArrow=
"true"
>
<div
slot=
"name"
class=
"font-color"
>
客户类型
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
客户类型
</div>
<input
slot=
"content"
v-model=
"bp_type_n"
...
...
@@ -47,11 +47,11 @@
<list-item
:item-height=
"44"
class=
"second-part"
>
<item>
<div
slot=
"name"
class=
"font-color"
>
公司名称
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
公司名称
</div>
<input
slot=
"content"
v-model=
"baseInfo.bp_name"
placeholder=
"上传营业执照自动填充"
class=
"auto"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
企业类型
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
企业类型
</div>
<input
slot=
"content"
v-model=
"baseInfo.enterprise_type"
...
...
@@ -60,27 +60,27 @@
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
统一社会信用代码
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
统一社会信用代码
</div>
<input
slot=
"content"
v-model=
"baseInfo.organization_code"
placeholder=
"上传营业执照自动填充"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
注册资本
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
注册资本
</div>
<input
slot=
"content"
v-model=
"baseInfo.registered_capital"
placeholder=
"上传营业执照自动填充"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
法定代表人
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
法定代表人
</div>
<input
slot=
"content"
v-model=
"baseInfo.legal_person"
placeholder=
"上传营业执照自动填充"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
注册地址
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
注册地址
</div>
<input
slot=
"content"
v-model=
"baseInfo.registered_place"
placeholder=
"请输入注册地址"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
经营地址
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
经营地址
</div>
<input
slot=
"content"
v-model=
"baseInfo.business_address"
placeholder=
"请输入经营地址"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
固定电话
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
固定电话
</div>
<input
slot=
"content"
v-model=
"baseInfo.phone"
placeholder=
"请输入固定电话"
>
</item>
</list-item>
...
...
@@ -113,7 +113,7 @@
<list-item
v-if=
"!flag"
:item-height=
"44"
class=
"second-part"
>
<item>
<div
slot=
"name"
class=
"font-color"
>
姓名
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
姓名
</div>
<input
slot=
"content"
v-model=
"authMsg.auth_person_name"
...
...
@@ -121,7 +121,7 @@
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
身份证号
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
身份证号
</div>
<input
slot=
"content"
v-model=
"authMsg.auth_person_id_card"
...
...
@@ -129,11 +129,11 @@
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
公司职务
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
公司职务
</div>
<input
slot=
"content"
v-model=
"authMsg.auth_person_position"
placeholder=
"请输入公司职务"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
授权事项
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
授权事项
</div>
<input
slot=
"content"
v-model=
"authMsg.auth_person_matter"
placeholder=
"请输入授权事项"
>
</item>
</list-item>
...
...
@@ -142,19 +142,19 @@
<list-item
v-if=
"flag"
:item-height=
"44"
class=
"second-part"
>
<item>
<div
slot=
"name"
class=
"font-color"
>
姓名
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
姓名
</div>
<input
slot=
"content"
v-model=
"legal_personMsg.id_card_name"
placeholder=
"上传身份证自动填充"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
身份证号
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
身份证号
</div>
<input
slot=
"content"
v-model=
"legal_personMsg.id_card_no"
placeholder=
"上传身份证自动填充"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
手机号
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
手机号
</div>
<input
slot=
"content"
v-model=
"legal_personMsg.cell_phone"
placeholder=
"请输入手机号"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
居住地址
</div>
<div
slot=
"name"
class=
"font-color
required
"
>
居住地址
</div>
<input
slot=
"content"
v-model=
"legal_personMsg.living_address"
placeholder=
"请输入居住地址"
>
</item>
</list-item>
...
...
@@ -204,7 +204,7 @@
<tab-button
class=
"save"
@
click
.
native=
"verified"
>
保存
</tab-button>
</bottom-tab>
<h-modal
ref=
"modal"
v-model=
"showModalValue"
position=
"bottom"
cus-class=
"search-modal"
>
<
h-content
class=
"modal-content"
>
<
div
class=
"modal-content"
>
<div
class=
"modal-content-add-top"
>
<span>
添加银行卡
</span>
<img
src=
"@/assets/userBind/close.png"
@
click=
"hideModal"
>
...
...
@@ -244,7 +244,7 @@
>
</item>
</list-item>
</
h-content
>
</
div
>
<bottom-tab
class=
"add-box"
>
<tab-button
class=
"add-card"
@
click
.
native=
"addBankInfo"
>
添加
</tab-button>
</bottom-tab>
...
...
@@ -879,6 +879,7 @@ export default {
}
.modal-content {
width: 100%;
height: 71%;
position: absolute;
top: 29%;
...
...
src/styles/mixin.less
0 → 100644
View file @
5b827c93
//宽高
.wh(@width,@height){
width:@width;
height: @height;
}
//flex 布局和 子元素 对其方式
.fj(@type:space-between){
display: flex;
justify-content: $type;
}
//flex 布局和子元素垂直对齐方式
.fa(@type:center){
display: flex;
align-items: @type;
}
//flex 布局和子元素水平垂直对齐方式
.fja(@jtype:center,@atype:center){
display: flex;
justify-content: @jtype;
align-items: @atype;
}
//字体大小,颜色
.sc(@size, @color){
font-size: @size;
color: @color;
}
//字体大小、行高、字体
.font(@size, @line-height, @family: 'Microsoft YaHei') {
font: #{@size}/#{@line-height} @family;
}
//字体大小,颜色
.sc(@size, @color){
font-size: @size;
color: @color;
}
//border-bottom: 1px solid rgba(245, 245, 245, 0.4);
.border-bottom{
border-bottom: 1px solid rgba(1, 17, 27, 0.1);
}
.border-top{
border-top: 1px solid rgba(1, 17, 27, 0.1);
}
.border-right{
border-right: 1px solid rgba(1, 17, 27, 0.1);
}
.border{
border: 1px solid rgba(1, 17, 27, 0.1);
}
yarn.lock
View file @
5b827c93
...
...
@@ -2799,9 +2799,9 @@ ejs@^2.5.7:
integrity sha512-kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ==
electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.30, electron-to-chromium@^1.3.47:
version "1.3.26
6
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.26
6.tgz#a33fb529c75f8d133e75ea7cbedb73a62f2158d2
"
integrity sha512-
UTuTZ4v8T0gLPHI7U75PXLQePWI65MTS3mckRrnLCkNljHvsutbYs+hn2Ua/RFul3Jt/L3Ht2rLP+dU/AlBfr
Q==
version "1.3.26
7
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.26
7.tgz#7745ff9d447fd2a9802e1c6dfa518631e0cf5357
"
integrity sha512-
9Q2ixAJC+oHjWNtJV0MQ4vJMCWSowIrC6V6vcr+bwPddTDHj2ddv9xxXCzf4jT/fy6HP7maPoW0gifXkRxCtt
Q==
elementtree@0.1.6:
version "0.1.6"
...
...
@@ -3444,10 +3444,6 @@ fastclick@^1.0.6:
version "1.0.6"
resolved "https://hel.hand-china.com/easyUI/fastclick.git#8b4d3638e307b0c8bdb2ddae52598363701161e6"
"fastclick@https://hel.hand-china.com/easyUI/fastclick.git#v1.0.7":
version "1.0.7"
resolved "https://hel.hand-china.com/easyUI/fastclick.git#3dff81ae580069fba67299217929cca4b470ae49"
fastparse@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
...
...
@@ -3971,9 +3967,9 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
"hls-easy-ui@https://hel.hand-china.com/easyUI/hls-easy-ui.git":
"hls-easy-ui@https://hel.hand-china.com/easyUI/hls-easy-ui.git
#keyboard
":
version "0.0.5"
resolved "https://hel.hand-china.com/easyUI/hls-easy-ui.git#
154e58b9ce6be0abcdbe96e762f23159fe952c05
"
resolved "https://hel.hand-china.com/easyUI/hls-easy-ui.git#
63a57615073ef1293e1854e92c45547a9dd41fb8
"
dependencies:
autosize "^3.0.20"
better-scroll "^1.10.3"
...
...
@@ -5197,9 +5193,9 @@ mime-db@1.40.0:
integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==
"mime-db@>= 1.40.0 < 2":
version "1.4
1
.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.4
1.0.tgz#9110408e1f6aa1b34aef51f2c9df3caddf46b6a0
"
integrity sha512-
B5gxBI+2K431XW8C2rcc/lhppbuji67nf9v39eH8pkWoZDxnAL0PxdpH32KYRScniF8qDHBDlI+ipgg5WrCUYw
==
version "1.4
2
.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.4
2.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac
"
integrity sha512-
UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ
==
mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.7:
version "2.1.24"
...
...
@@ -5250,7 +5246,7 @@ minimist@^1.1.3, minimist@^1.2.0:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
minipass@^2.
2.1, minipass@^2.
6.0, minipass@^2.8.6:
minipass@^2.6.0, minipass@^2.8.6:
version "2.8.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.8.6.tgz#620d889ace26356391d010ecb9458749df9b6db5"
integrity sha512-lFG7d6g3+/UaFDCOtqPiKAC9zngWWsQZl1g5q6gaONqrjq61SX2xFqXMleQiFVyDpYwa018E9hmlAFY22PCb+A==
...
...
@@ -5258,12 +5254,20 @@ minipass@^2.2.1, minipass@^2.6.0, minipass@^2.8.6:
safe-buffer "^5.1.2"
yallist "^3.0.0"
minipass@^2.9.0:
version "2.9.0"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
dependencies:
safe-buffer "^5.1.2"
yallist "^3.0.0"
minizlib@^1.2.1:
version "1.
2
.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.
2.2.tgz#6f0ccc82fa53e1bf2ff145f220d2da9fa6e3a166
"
integrity sha512-
hR3At21uSrsjjDTWrbu0IMLTpnkpv8IIMFDFaoz43Tmu4LkmAXfH44vNNzpTnf+OAQQCHrb91y/wc2J4x5XgSQ
==
version "1.
3
.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.
3.2.tgz#5d24764998f98112586f7e566bd4c0999769dad4
"
integrity sha512-
lsNFqSHdJ21EwKzCp12HHJGxSMtHkCW1EMA9cceG3MkMNARjuWotZnMe3NKNshAvFXpm4loZqmYsCmRwhS2JMw
==
dependencies:
minipass "^2.
2.1
"
minipass "^2.
9.0
"
mississippi@^2.0.0:
version "2.0.0"
...
...
@@ -8871,9 +8875,9 @@ yallist@^2.1.2:
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
yallist@^3.0.0, yallist@^3.0.3:
version "3.
0.3
"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.
0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9
"
integrity sha512-
S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A
==
version "3.
1.0
"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.
1.0.tgz#906cc2100972dc2625ae78f566a2577230a1d6f7
"
integrity sha512-
6gpP93MR+VOOehKbCPchro3wFZNSNmek8A2kbkOAZLIZAYx1KP/zAqwO0sOHi3xJEb+UBz8NaYt/17UNit1Q9w
==
yaml-loader@^0.4.0:
version "0.4.0"
...
...
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