Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-customer-new-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-customer-new-master
Commits
e5503480
Commit
e5503480
authored
Nov 13, 2024
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复订单bug
parent
e851949e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
11 deletions
+17
-11
drawee.vue
src/pages/create_order/components/drawee.vue
+1
-1
create_order.vue
src/pages/create_order/create_order.vue
+12
-8
orderInfo.vue
src/pages/orderInfo/orderInfo.vue
+4
-2
addicon.png
src/static/img/addicon.png
+0
-0
No files found.
src/pages/create_order/components/drawee.vue
View file @
e5503480
...
...
@@ -5,7 +5,7 @@ export default {
props
:{
value
:{
type
:
Array
,
default
:[]
default
:
()
=>
[]
},
readonly
:{
type
:
Boolean
,
...
...
src/pages/create_order/create_order.vue
View file @
e5503480
...
...
@@ -14,7 +14,7 @@
<image
src=
"../../static/img/corder-1.png"
mode=
""
></image>
<view
class=
"flex items-center flex-1"
>
<view
class=
"title"
>
{{
$lang
.
lang
.
create
.
consignee
}}
</view>
<radio-group
@
change=
"changeHasConsignee"
class=
"flex items-center"
>
<radio-group
@
change=
"changeHasConsignee"
class=
"flex items-center"
v-if=
"noConsignee"
>
<label
class=
"radio"
>
<radio
value=
"1"
:checked=
"hasConsignee"
/><text>
有
</text>
</label>
...
...
@@ -23,12 +23,12 @@
</label>
</radio-group>
</view>
<view
class=
"flex items-center"
style=
"width: 30px"
>
<view
class=
"flex items-center"
style=
"width: 30px"
v-if=
"hasConsignee"
>
<image
src=
"../../static/img/add.png"
class=
"icon"
v-if=
"!showFullConsignee"
@
click=
"showFullConsignee=true"
></image>
<image
src=
"../../static/img/sub.png"
class=
"icon"
v-else
@
click=
"showFullConsignee=false"
></image>
</view>
</view>
<view
class=
"corder-tab1-item corder-picker"
>
<view
class=
"corder-tab1-item corder-picker"
v-if=
"hasConsignee"
>
<image
src=
"../../static/img/order-user.png"
mode=
""
></image>
<text><span
class=
"redcolor"
>
*
</span>
{{
$lang
.
lang
.
create
.
name
}}
</text>
<view
class=
"addname"
>
...
...
@@ -40,7 +40,7 @@
<view
v-if=
"hasConsignee"
class=
"choiceBtn"
@
click=
"tochoice"
>
{{
$lang
.
lang
.
create
.
choiceConsignee
}}
</view>
</view>
</view>
<view
class=
"corder-tab1-item"
>
<view
class=
"corder-tab1-item"
v-if=
"hasConsignee"
>
<image
src=
"../../static/img/order-tel.png"
mode=
""
></image>
<text><span
class=
"redcolor"
>
*
</span>
{{
$lang
.
lang
.
create
.
phone
}}
</text>
<!--
<input
v-model=
"params.consigneePhone"
type=
"text"
:placeholder=
"请输入电话"
/>
-->
...
...
@@ -66,7 +66,7 @@
:placeholder="$lang.lang.notices.phone" />
</view>
</view>
<template
v-if=
"showFullConsignee"
>
<template
v-if=
"showFullConsignee
&& hasConsignee
"
>
<!-- v1.7新增 -->
<view
class=
"corder-tab1-item corder-picker"
>
<image
src=
"../../static/img/order-user.png"
mode=
""
></image>
...
...
@@ -175,12 +175,12 @@
</picker>
<image
class=
"rgt"
src=
"../../static/img/rgt.png"
mode=
""
></image>
</view>
<view
class=
"corder-tab1-item corder-picker"
v-if=
"
lineMethod
"
>
<view
class=
"corder-tab1-item corder-picker"
v-if=
"
otherService.indexOf('1') > -1 || otherService.indexOf('4') > -1
"
>
<image
src=
"../../static/img/corder-1-2.png"
mode=
""
></image>
<text>
{{$lang.lang.create.type}}
</text>
<view
class=
"order_type"
>
<checkbox-group
@
change=
"changeType"
>
<view
v-for=
"item in items"
:key=
"item.value"
v-if=
"
item.show
"
>
<view
v-for=
"item in items"
:key=
"item.value"
v-if=
"
otherService.indexOf(item.value) > -1
"
>
<checkbox
style=
"transform:scale(0.8)"
:value=
"item.value"
:checked=
"item.checked"
/>
{{item.name}}
</view>
</checkbox-group>
...
...
@@ -1269,7 +1269,11 @@
},
harvestRangeKey
(){
return
this
.
$lang
.
locale
==
'
zh
'
?
'
label
'
:
'
labelEn
'
}
},
otherService
(){
const
currentRoute
=
this
.
currentRouteIndex
!==
null
?
this
.
routerList
[
this
.
currentRouteIndex
]
:
null
return
currentRoute
?.
otherService
?.
split
(
"
,
"
)
||
[]
},
},
watch
:{
'
params.countryCode
'
(){
...
...
src/pages/orderInfo/orderInfo.vue
View file @
e5503480
...
...
@@ -180,7 +180,8 @@
</view>
</view>
<view
class=
"addicon"
@
click=
"basicShowMore=!basicShowMore"
>
<image
src=
"/static/img/addicon.png"
></image>
<image
src=
"/static/img/add.png"
v-if=
"!basicShowMore"
></image>
<image
src=
"/static/img/sub.png"
v-else
></image>
</view>
<view
:class=
"basicShowMore?'showInfoClass':'hideInfoClass'"
>
<view
class=
"order-info-line"
>
...
...
@@ -263,7 +264,8 @@
</view>
</view>
<view
class=
"addicon"
@
click=
"shopShowMore=!shopShowMore"
>
<image
src=
"/static/img/addicon.png"
></image>
<image
src=
"/static/img/add.png"
v-if=
"!shopShowMore"
></image>
<image
src=
"/static/img/sub.png"
v-else
></image>
</view>
<view
:class=
"shopShowMore?'showInfoClass':'hideInfoClass'"
>
<view
class=
"order-info-line"
>
...
...
src/static/img/addicon.png
deleted
100644 → 0
View file @
e851949e
532 Bytes
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