Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
66872202
Commit
66872202
authored
4 years ago
by
zhangjianguo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
搜索的修改
parent
aaa18271
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
9 deletions
+13
-9
wexinappmsg.vue
src/components/StoreDesign/wexinappmsg.vue
+2
-2
disWithdrawal.vue
src/components/UserMan/disWithdrawal.vue
+1
-1
afterSalesOrder.vue
src/components/orderMan/afterSalesOrder.vue
+7
-3
evaluationMan.vue
src/components/orderMan/evaluationMan.vue
+1
-1
addCoupon.vue
src/components/sallCenter/addCoupon.vue
+2
-2
No files found.
src/components/StoreDesign/wexinappmsg.vue
View file @
66872202
...
...
@@ -48,7 +48,7 @@
</
style
>
<
template
>
<div
class=
"weixinappmsg"
>
<
el-button
class=
"weixinTopBtn"
type=
"primary"
size=
"small"
>
一键添加订阅信息
</el-button
>
<
!--
<el-button
class=
"weixinTopBtn"
type=
"primary"
size=
"small"
>
一键添加订阅信息
</el-button>
--
>
<div
class=
"wexin_Header"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"商城订阅信息"
name=
"1"
></el-tab-pane>
...
...
@@ -94,7 +94,7 @@
</div>
</div>
<el-button
size=
"small"
type=
"primary"
@
click=
"UpdateMallSubscribeMsg()"
>
保 存
</el-button>
<
el-button
size=
"small"
type=
"primary"
>
生成测试二维码
</el-button
>
<
!--
<el-button
size=
"small"
type=
"primary"
>
生成测试二维码
</el-button>
--
>
</
template
>
<
template
v-else
>
<div
class=
"mimitBody"
>
...
...
This diff is collapsed.
Click to expand it.
src/components/UserMan/disWithdrawal.vue
View file @
66872202
...
...
@@ -53,7 +53,7 @@
label=
"时间"
>
<
template
slot-scope=
"scope"
>
<p
v-if=
"scope.row.CreateDate && scope.row.CreateDate!=''"
>
申请时间:
{{
scope
.
row
.
CreateDate
}}
</p>
<p
v-if=
"scope.row.AuditDate && scope.row.AuditDate!=''"
>
审核时间:
{{
scope
.
row
.
AuditDate
}}
</p>
<p
v-if=
"scope.row.AuditDate && scope.row.AuditDate!=''
&& scope.row.AuditStatus!=1
"
>
审核时间:
{{
scope
.
row
.
AuditDate
}}
</p>
</
template
>
</el-table-column>
<el-table-column
...
...
This diff is collapsed.
Click to expand it.
src/components/orderMan/afterSalesOrder.vue
View file @
66872202
...
...
@@ -27,7 +27,7 @@
:value=
"item.Id"
>
</el-option>
</el-select>
<el-input
@
clear=
"getList"
clearable
style=
"margin-left:15px;width:300px"
class=
"input-with-select"
placeholder=
"请输入内容"
v-model=
"msgVal"
size=
"small"
>
<el-input
@
clear=
"getList"
clearable
style=
"margin-left:15px;width:300px"
@
keyup
.
enter
.
native=
"getList()"
class=
"input-with-select"
placeholder=
"请输入内容"
v-model=
"msgVal"
size=
"small"
>
<el-select
class=
"pendSelect"
@
change=
"ChangeId"
v-model=
"msgId"
slot=
"prepend"
placeholder=
"请选择"
>
<el-option
v-for=
"item in option"
...
...
@@ -514,6 +514,7 @@ export default {
}
},
created
(){
this
.
getList
();
this
.
getplat
();
this
.
getDown
();
...
...
@@ -736,6 +737,7 @@ export default {
this
.
getArea
(
item
.
City
);
},
ChangeId
(
val
){
let
msgVal
=
this
.
msgVal
;
if
(
val
==
1
){
this
.
msg
.
ReOrderNo
=
msgVal
;
...
...
@@ -800,7 +802,7 @@ export default {
this
.
msg
.
Consignee
=
''
;
this
.
msg
.
Mobile
=
msgVal
;
}
this
.
getList
();
//
this.getList();
},
Export
(){
...
...
@@ -839,6 +841,7 @@ export default {
},
getList
(){
this
.
ChangeId
(
this
.
msgId
)
if
(
!
this
.
msgVal
||
this
.
msgVal
==
''
){
this
.
msg
.
ReOrderNo
=
''
;
this
.
msg
.
OrderNo
=
''
;
...
...
@@ -848,6 +851,7 @@ export default {
this
.
msg
.
Consignee
=
''
;
this
.
msg
.
Mobile
=
''
;
}
if
(
this
.
dateList
&&
this
.
dateList
.
length
>
0
){
this
.
msg
.
StartTime
=
this
.
dateList
[
0
];
this
.
msg
.
EndTime
=
this
.
dateList
[
1
];
...
...
This diff is collapsed.
Click to expand it.
src/components/orderMan/evaluationMan.vue
View file @
66872202
...
...
@@ -451,7 +451,7 @@
if
(
this
.
msgId
==
3
)
{
this
.
msg
.
UserName
=
''
;
this
.
msg
.
GoodsName
=
''
;
this
.
msg
.
Content
=
''
;
this
.
msg
.
Content
=
msgVal
;
}
if
(
!
this
.
msgVal
||
this
.
msgVal
==
''
)
{
this
.
msg
.
UserName
=
''
;
...
...
This diff is collapsed.
Click to expand it.
src/components/sallCenter/addCoupon.vue
View file @
66872202
...
...
@@ -291,8 +291,8 @@
TotalNum
:
-
1
,
Sort
:
100
,
Describe
:
''
,
OnlyMember
:
1
,
PickupCenter
:
2
,
OnlyMember
:
0
,
PickupCenter
:
0
,
MemberLevelList
:[],
ProductList
:[],
//指定商品类型的数组
StartDate
:
''
,
...
...
This diff is collapsed.
Click to expand it.
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