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
83bd6a95
Commit
83bd6a95
authored
Sep 29, 2019
by
786817560
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ren' into develop
parents
4e20c395
ed3325fe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
5 deletions
+34
-5
contract-list.vue
src/pages/distributorSign/contract-list.vue
+15
-0
enterprise.vue
src/pages/userBind/org/enterprise.vue
+3
-2
invoiceInfo.vue
src/pages/userBind/org/invoiceInfo.vue
+16
-3
No files found.
src/pages/distributorSign/contract-list.vue
View file @
83bd6a95
...
@@ -68,6 +68,21 @@ export default {
...
@@ -68,6 +68,21 @@ export default {
],
],
}
}
},
},
created
()
{
// let url = $config.basePath + 'bp_org_bind_save'
// let param = {
// 'master': vm.saveInfo,
// }
// vm.hlsHttp.post(url, param).then(function (res) {
let
vm
=
this
let
url
=
$config
.
basePath
+
'prj_confirm_list_query'
let
param
=
{
user_phone
:
'18945220871'
,
}
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
console
.
log
(
res
.
result
)
})
},
methods
:
{
methods
:
{
getTabNum
(
i
)
{
getTabNum
(
i
)
{
this
.
tabNum
=
i
this
.
tabNum
=
i
...
...
src/pages/userBind/org/enterprise.vue
View file @
83bd6a95
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Description: In User Settings Edit
* @Description: In User Settings Edit
* @Author: your name
* @Author: your name
* @Date: 2019-09-19 09:31:19
* @Date: 2019-09-19 09:31:19
* @LastEditTime: 2019-09-2
7 19:25:20
* @LastEditTime: 2019-09-2
9 09:25:38
* @LastEditors: Please set LastEditors
* @LastEditors: Please set LastEditors
-->
-->
<
template
>
<
template
>
...
@@ -202,7 +202,7 @@
...
@@ -202,7 +202,7 @@
</div>
</div>
<!--
<BankInfo
v-show=
"tabNum==1"
:bp_id=
"bp_id"
@
getInfo=
"getInfo"
/>
-->
<!--
<BankInfo
v-show=
"tabNum==1"
:bp_id=
"bp_id"
@
getInfo=
"getInfo"
/>
-->
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
/>
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
/>
<InvoiceInfo
v-show=
"tabNum==2"
@
getinvoiceList=
"getinvoiceList"
/>
<InvoiceInfo
v-show=
"tabNum==2"
:orgCode=
"baseInfo.organization_code"
@
getinvoiceList=
"getinvoiceList"
/>
</h-content>
</h-content>
<bottom-tab
class=
"footer-button"
>
<bottom-tab
class=
"footer-button"
>
<tab-button
class=
"put"
@
click
.
native=
"handSubmit"
>
提交
</tab-button>
<tab-button
class=
"put"
@
click
.
native=
"handSubmit"
>
提交
</tab-button>
...
@@ -677,6 +677,7 @@ export default {
...
@@ -677,6 +677,7 @@ export default {
getinvoiceList
(
val
)
{
getinvoiceList
(
val
)
{
console
.
log
(
val
)
console
.
log
(
val
)
this
.
invoiceInfo
=
val
this
.
invoiceInfo
=
val
this
.
baseInfo
.
organization_code
=
val
.
organization_code
},
},
authorizeChange
()
{
authorizeChange
()
{
this
.
flag
=
!
this
.
flag
this
.
flag
=
!
this
.
flag
...
...
src/pages/userBind/org/invoiceInfo.vue
View file @
83bd6a95
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Description: In User Settings Edit
* @Description: In User Settings Edit
* @Author: your name
* @Author: your name
* @Date: 2019-09-20 09:35:11
* @Date: 2019-09-20 09:35:11
* @LastEditTime: 2019-09-2
0 10:41:24
* @LastEditTime: 2019-09-2
9 09:25:50
* @LastEditors: Please set LastEditors
* @LastEditors: Please set LastEditors
-->
-->
<
template
>
<
template
>
...
@@ -50,14 +50,21 @@
...
@@ -50,14 +50,21 @@
<div
slot=
"name"
class=
"font-color"
>
纳税人识别号
</div>
<div
slot=
"name"
class=
"font-color"
>
纳税人识别号
</div>
<input
<input
slot=
"content"
slot=
"content"
v-model=
"invoiceInfo.organization_code"
type=
"text"
placeholder=
"请输入纳税人识别号
"
v-model=
"invoiceInfo.organization_code"
:placeholder=
"orgCode"
type=
"text
"
>
>
</item>
</item>
<!--
<p>
{{
organization_code
}}
</p>
-->
</list-item>
</list-item>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
name
:
'InvoiceInfo'
,
name
:
'InvoiceInfo'
,
props
:
{
'orgCode'
:
{
type
:
String
,
default
:
''
,
},
},
data
()
{
data
()
{
return
{
return
{
invoicList
:
[],
invoicList
:
[],
...
@@ -68,13 +75,19 @@ export default {
...
@@ -68,13 +75,19 @@ export default {
invoice_kind
:
''
,
invoice_kind
:
''
,
taxpayer_type
:
''
,
taxpayer_type
:
''
,
invoice_title
:
''
,
invoice_title
:
''
,
organization_code
:
''
,
organization_code
:
this
.
orgCode
,
invoice_bp_bank_account
:
''
,
invoice_bp_bank_account
:
''
,
invoice_bp_address_phone_num
:
''
,
invoice_bp_address_phone_num
:
''
,
},
},
}
}
},
},
watch
:
{
orgCode
()
{
this
.
invoiceInfo
.
organization_code
=
this
.
orgCode
},
},
created
()
{
created
()
{
console
.
log
(
'orgCode'
,
this
.
orgCode
)
this
.
getInvoiceType
()
this
.
getInvoiceType
()
this
.
getTaxpayer
()
this
.
getTaxpayer
()
},
},
...
...
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