Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
soss
Overview
Overview
Details
Activity
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
hooloo
web
soss
Commits
7b8b7636
Commit
7b8b7636
authored
May 30, 2022
by
lixiaomin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改页面
parent
9af822a8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
8 deletions
+16
-8
src/components/order/orderDetial.vue
+2
-2
src/views/customer/index.vue
+10
-1
src/views/shop/shop/components/recommend.vue
+1
-1
src/views/system/user/index.vue
+3
-4
No files found.
src/components/order/orderDetial.vue
View file @
7b8b7636
...
@@ -85,8 +85,8 @@
...
@@ -85,8 +85,8 @@
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"商品分类"
align=
"center"
prop=
"categoryName"
/>
<el-table-column
label=
"商品分类"
align=
"center"
prop=
"categoryName"
/>
<el-table-column
label=
"原售价"
align=
"center"
prop=
"
price
"
/>
<el-table-column
label=
"原售价"
align=
"center"
prop=
"
amount
"
/>
<el-table-column
label=
"折扣价"
align=
"center"
prop=
"
disc
ount"
/>
<el-table-column
label=
"折扣价"
align=
"center"
prop=
"
realAm
ount"
/>
<el-table-column
label=
"实付"
align=
"center"
prop=
"realAmount"
/>
<el-table-column
label=
"实付"
align=
"center"
prop=
"realAmount"
/>
<el-table-column
label=
"数量"
align=
"center"
prop=
"num"
/>
<el-table-column
label=
"数量"
align=
"center"
prop=
"num"
/>
</el-table>
</el-table>
...
...
src/views/customer/index.vue
View file @
7b8b7636
...
@@ -40,7 +40,12 @@
...
@@ -40,7 +40,12 @@
<el-table-column
label=
"退款金额"
align=
"center"
prop=
"refundAmount"
/>
<el-table-column
label=
"退款金额"
align=
"center"
prop=
"refundAmount"
/>
<el-table-column
label=
"最近订单时间"
align=
"center"
prop=
"lastOrderDate"
/>
<el-table-column
label=
"最近订单时间"
align=
"center"
prop=
"lastOrderDate"
/>
<el-table-column
label=
"注册时间"
align=
"center"
prop=
"createDate"
/>
<el-table-column
label=
"注册时间"
align=
"center"
prop=
"createDate"
/>
<el-table-column
label=
"来源"
align=
"center"
prop=
"source"
/>
<el-table-column
label=
"来源"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.source=='3'"
>
小程序
</span>
<span
v-if=
"scope.row.source=='12'"
>
点单屏
</span>
</
template
>
</el-table-column>
</el-table>
</el-table>
<pagination
<pagination
v-show=
"total > 0"
v-show=
"total > 0"
...
@@ -203,6 +208,10 @@ export default {
...
@@ -203,6 +208,10 @@ export default {
},
},
/** 搜索按钮操作 */
/** 搜索按钮操作 */
handleQuery
()
{
handleQuery
()
{
if
(
this
.
createdTime
.
length
>
0
){
this
.
queryParams
.
createAtStart
=
this
.
createdTime
[
0
];
this
.
queryParams
.
createAtEnd
=
this
.
createdTime
[
1
];
}
this
.
queryParams
.
pageNum
=
1
;
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
this
.
getList
();
},
},
...
...
src/views/shop/shop/components/recommend.vue
View file @
7b8b7636
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<el-table-column
label=
"折扣价"
align=
"center"
prop=
"discount"
/>
<el-table-column
label=
"折扣价"
align=
"center"
prop=
"discount"
/>
<el-table-column
label=
"原价"
align=
"center"
prop=
"price"
/>
<el-table-column
label=
"原价"
align=
"center"
prop=
"price"
/>
<el-table-column
label=
"总销售"
align=
"center"
prop=
"salesVolume"
/>
<el-table-column
label=
"总销售"
align=
"center"
prop=
"salesVolume"
/>
<el-table-column
label=
"推荐时间"
align=
"center"
prop=
"recDate"
/>
<el-table-column
label=
"推荐时间"
align=
"center"
prop=
"rec
ommend
Date"
/>
<el-table-column
label=
"推荐排序"
>
<el-table-column
label=
"推荐排序"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
style=
"display: flex;"
>
<div
style=
"display: flex;"
>
...
...
src/views/system/user/index.vue
View file @
7b8b7636
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
>
>
<el-form-item
label=
"人员名称"
prop=
"userName"
>
<el-form-item
label=
"人员名称"
prop=
"userName"
>
<el-input
<el-input
v-model=
"queryParams.user
Name
"
v-model=
"queryParams.user
Info
"
placeholder=
"请输入姓名、手机号"
placeholder=
"请输入姓名、手机号"
clearable
clearable
style=
"width: 240px"
style=
"width: 240px"
...
@@ -180,9 +180,8 @@ export default {
...
@@ -180,9 +180,8 @@ export default {
queryParams
:
{
queryParams
:
{
pageNum
:
1
,
pageNum
:
1
,
pageSize
:
10
,
pageSize
:
10
,
userName
:
undefined
,
userInfo
:
null
,
phonenumber
:
undefined
,
status
:
null
status
:
undefined
},
},
// 表单校验
// 表单校验
rules
:
{
rules
:
{
...
...
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