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
ac21c9c7
Commit
ac21c9c7
authored
Nov 22, 2019
by
786817560
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ren' into develop
parents
16ace966
d25969af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
13 deletions
+14
-13
contract-signing.vue
src/pages/contractSigning/contract-signing.vue
+10
-9
contract-list.vue
src/pages/distributorSign/contract-list.vue
+4
-4
No files found.
src/pages/contractSigning/contract-signing.vue
View file @
ac21c9c7
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-11-22 15:
02:02
* @LastEditTime: 2019-11-22 15:
39:10
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
...
...
@@ -23,7 +23,7 @@
</div>
<scroll
v-
if
=
"num === 1"
v-
show
=
"num === 1"
ref=
"scroll"
:updateData=
"[submitLists]"
:pullUp=
"true"
...
...
@@ -49,7 +49,7 @@
</scroll>
<scroll
v-
if
=
"num === 2"
v-
show
=
"num === 2"
ref=
"scrolls"
:updateData=
"[approvedLists]"
:pullUp=
"true"
...
...
@@ -144,7 +144,7 @@ export default {
vm
.
searchInput
=
''
vm
.
user_bp_type
=
vm
.
$route
.
params
.
user_bp_type
}
vm
.
contractList
()
//
vm.contractList()
})
// next()
},
...
...
@@ -160,7 +160,7 @@ export default {
let
param
=
{
user_phone
:
window
.
localStorage
.
user_phone
,
pagesize
:
10
,
pagenum
:
vm
.
p
agenum
,
pagenum
:
vm
.
submitP
agenum
,
confirm_status
:
'SUBMIT'
,
searchInput
:
vm
.
searchInput
,
}
...
...
@@ -168,7 +168,7 @@ export default {
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
s
how
Lists
=
res
.
lists
vm
.
s
ubmit
Lists
=
res
.
lists
vm
.
submitFlag
=
true
if
(
res
.
lists
.
length
>
0
&&
res
.
lists
.
length
<
10
)
{
vm
.
$refs
.
scroll
.
update
(
true
)
...
...
@@ -288,9 +288,9 @@ export default {
confirm_status
:
'SUBMIT'
,
searchInput
:
vm
.
searchInput
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
//
vm.hlsPopup.showLoading('数据加载中')
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
//
vm.hlsPopup.hideLoading()
// console.log(res.lists)
vm
.
submitLists
=
res
.
lists
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
...
...
@@ -311,8 +311,9 @@ export default {
confirm_status
:
'APPROVED'
,
searchInput
:
vm
.
searchInput
,
}
//
vm.hlsPopup.showLoading('数据加载中')
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
vm
.
approvedLists
=
res
.
lists
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
vm
.
$refs
.
scrolls
.
update
(
true
)
...
...
src/pages/distributorSign/contract-list.vue
View file @
ac21c9c7
...
...
@@ -259,9 +259,9 @@ export default {
confirm_status
:
'SUBMIT'
,
searchInput
:
vm
.
searchInput
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
//
vm.hlsPopup.showLoading('数据加载中')
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
//
vm.hlsPopup.hideLoading()
// console.log(res.lists)
vm
.
submitLists
=
res
.
lists
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
...
...
@@ -282,9 +282,9 @@ export default {
confirm_status
:
'APPROVED'
,
searchInput
:
vm
.
searchInput
,
}
//
vm.hlsPopup.showLoading('数据加载中')
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
//
vm.hlsPopup.hideLoading()
vm
.
hlsPopup
.
hideLoading
()
// console.log(res.lists)
vm
.
approvedLists
=
res
.
lists
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
...
...
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