Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
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
李俊赕
self-support
Commits
8d52613a
Commit
8d52613a
authored
May 08, 2021
by
Morson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面样式微调
parent
0e74b5fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
feedback.vue
src/pages/order/feedback.vue
+2
-1
search.vue
src/pages/order/search.vue
+7
-2
No files found.
src/pages/order/feedback.vue
View file @
8d52613a
...
...
@@ -62,7 +62,7 @@
</view>
</view>
<view
class=
"bottom-view"
>
<button
class=
"btn, bottom-btn"
@
click=
"
submitForm
"
:loading=
"submiting"
:disabled=
"disabledSubmit"
><text
class=
"button-text"
>
确定
</text></button>
<button
class=
"btn, bottom-btn"
@
click=
"
$u.throttle(submitForm, 500)
"
:loading=
"submiting"
:disabled=
"disabledSubmit"
><text
class=
"button-text"
>
确定
</text></button>
</view>
</view>
</
template
>
...
...
@@ -342,6 +342,7 @@ export default {
self
.
submiting
=
false
;
if
(
res
&&
res
.
code
==
200
)
{
self
.
$u
.
route
({
type
:
'redirect'
,
url
:
'pages/order/detail'
,
params
:
{
id
:
self
.
orderId
...
...
src/pages/order/search.vue
View file @
8d52613a
...
...
@@ -5,7 +5,7 @@
<u-search
v-model=
"search.keyword"
bg-color=
"#FFFFFF"
placeholder=
"搜
订单
"
placeholder=
"搜
索:工单号·用户姓名·手机号·地址
"
search-icon-color=
"#999999"
color=
"#333333"
placeholder-color=
"#999999"
...
...
@@ -18,6 +18,7 @@
'font-weight': 500,
'color': '#2272FF'
}"
:focus="true"
@search="searchOrder"
@custom="searchOrder"
>
</u-search>
...
...
@@ -77,8 +78,12 @@
},
// 页面数据
getOrderList
()
{
let
self
=
this
;
if
(
!
self
.
search
.
keyword
)
{
return
false
}
// 状态处理
var
self
=
this
;
self
.
search
.
pageNumber
+=
1
self
.
$u
.
api
.
listOrder
(
self
.
search
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
...
...
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