Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
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
pseer
gxpt_web
Commits
dd01e291
Commit
dd01e291
authored
Jul 17, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改后台管理系统页面
parent
b3870110
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
79 additions
and
53 deletions
+79
-53
index.vue
src/views/system/IntegralLog/index.vue
+2
-2
index.vue
src/views/system/balanceLog/index.vue
+3
-2
durationIndex.vue
src/views/system/coupon/durationIndex.vue
+17
-8
index.vue
src/views/system/durationLog/index.vue
+2
-2
index.vue
src/views/system/equityMembersOrder/index.vue
+1
-1
index.vue
src/views/system/memberProgressLog/index.vue
+3
-2
index.vue
src/views/system/order/index.vue
+9
-2
index.vue
src/views/system/pack/index.vue
+10
-2
index.vue
src/views/system/records/index.vue
+32
-32
No files found.
src/views/system/IntegralLog/index.vue
View file @
dd01e291
...
...
@@ -122,8 +122,8 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"会员手机号"
prop=
"phone"
/>
<el-table-column
align=
"center"
label=
"变动积分"
prop=
"variableIntegral"
/>
<el-table-column
align=
"center"
label=
"当前积分"
prop=
"currentIntegral"
/>
<el-table-column
align=
"center"
label=
"变动积分"
prop=
"variableIntegral"
/>
<!-- <el-table-column align="center" label="操作类型" prop="operationType"/>-->
<el-table-column
align=
"center"
label=
"操作类型"
prop=
"operationType"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -132,7 +132,7 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"操作时间"
prop=
"operationTime"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<!--
<
el
-
table
-
column
align
=
"center"
label
=
"是否删除"
prop
=
"isDelete"
/>-->
...
...
src/views/system/balanceLog/index.vue
View file @
dd01e291
...
...
@@ -122,8 +122,9 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"会员手机号"
prop=
"phone"
/>
<el-table-column
align=
"center"
label=
"变动金额"
prop=
"variableAmount"
/>
<el-table-column
align=
"center"
label=
"当前余额"
prop=
"currentBalance"
/>
<el-table-column
align=
"center"
label=
"变动金额"
prop=
"variableAmount"
/>
<!-- <el-table-column align="center" label="操作类型" prop="operationType"/>-->
<el-table-column
align=
"center"
label=
"操作类型"
prop=
"operationType"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -132,7 +133,7 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"操作时间"
prop=
"operationTime"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<!--
<
el
-
table
-
column
align
=
"center"
label
=
"是否删除"
prop
=
"isDelete"
/>-->
...
...
src/views/system/coupon/durationIndex.vue
View file @
dd01e291
...
...
@@ -243,14 +243,20 @@
/>
<
/el-select
>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"优惠券原始金额"
prop
=
"originalPrice"
>-->
<!--
<
el
-
input
v
-
model
=
"form.originalPrice"
placeholder
=
"请输入优惠券原始金额"
/>-->
<!--
<
/el-form-item>--
>
<
el
-
form
-
item
label
=
"优惠券原始金额"
prop
=
"originalPrice"
>
<
el
-
input
v
-
model
=
"form.originalPrice
"
placeholder
=
"请输入优惠券原始金额"
/>
<
el
-
input
-
number
v
-
model
=
"form.originalPrice"
:
max
=
"999"
:
min
=
"0
"
placeholder
=
"请输入优惠券原始金额"
/>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"优惠券售卖金额"
prop
=
"couponPayPrice"
>-->
<!--
<
el
-
input
v
-
model
=
"form.couponPayPrice"
placeholder
=
"请输入优惠券售卖金额"
/>-->
<!--
<
/el-form-item>--
>
<!--
<
el
-
form
-
item
label
=
"优惠券促销金额"
prop
=
"salePrice"
>-->
<!--
<
el
-
input
v
-
model
=
"form.salePrice"
placeholder
=
"请输入优惠券促销金额"
/>-->
<!--
<
/el-form-item>--
>
<
el
-
form
-
item
label
=
"优惠券促销金额"
prop
=
"salePrice"
>
<
el
-
input
v
-
model
=
"form.salePrice"
placeholder
=
"请输入
优惠券促销金额"
/>
<
el
-
input
-
number
v
-
model
=
"form.salePrice"
:
max
=
"999"
:
min
=
"0"
placeholder
=
"
优惠券促销金额"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"时长"
prop
=
"duration"
>
<
el
-
input
-
number
v
-
model
=
"form.duration"
:
max
=
"24"
:
min
=
"0.5"
:
step
=
"0.5"
placeholder
=
"请输入时长"
/>
...
...
@@ -395,13 +401,16 @@
/>
<
/el-select
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"门槛金额"
prop
=
"miniPrice"
>
<
el
-
input
-
number
v
-
model
=
"sumForm.miniPrice"
:
max
=
"9999"
:
min
=
"0"
label
=
"优惠卷数量"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"数量"
prop
=
"number"
>
<
el
-
input
-
number
v
-
model
=
"sumForm.number"
:
max
=
"9999"
:
min
=
"1"
label
=
"优惠卷数量"
/>
<!--
<
el
-
input
v
-
model
=
"form.number"
type
=
"textarea"
placeholder
=
"请输入数量"
/>-->
<!--
<
el
-
form
-
item
label
=
"门槛金额"
prop
=
"miniPrice"
>-->
<!--
<
el
-
input
-
number
v
-
model
=
"sumForm.miniPrice"
:
max
=
"9999"
:
min
=
"0"
label
=
"优惠卷数量"
/>-->
<!--
<
/el-form-item>--
>
<
el
-
form
-
item
label
=
"优惠券原始金额"
prop
=
"originalPrice"
>
<
el
-
input
-
number
v
-
model
=
"sumForm.originalPrice"
:
max
=
"999"
:
min
=
"0"
placeholder
=
"优惠券原始金额"
/>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"数量"
prop
=
"number"
>-->
<!--
<
el
-
input
-
number
v
-
model
=
"sumForm.number"
:
max
=
"9999"
:
min
=
"1"
label
=
"优惠卷数量"
/>-->
<!--
&
lt
;
!&
ndash
;
<
el
-
input
v
-
model
=
"form.number"
type
=
"textarea"
placeholder
=
"请输入数量"
/>&
ndash
;
&
gt
;
-->
<!--
<
/el-form-item>--
>
<
el
-
form
-
item
label
=
"平台类型"
prop
=
"platformType"
>
<
el
-
select
v
-
model
=
"sumForm.platformType"
clearable
disabled
placeholder
=
"请选择平台类型"
>
<
el
-
option
...
...
src/views/system/durationLog/index.vue
View file @
dd01e291
...
...
@@ -122,8 +122,8 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"会员手机号"
prop=
"phone"
/>
<el-table-column
align=
"center"
label=
"变动时长"
prop=
"variableDuration"
/>
<el-table-column
align=
"center"
label=
"当前时长"
prop=
"currentDuration"
/>
<el-table-column
align=
"center"
label=
"变动时长"
prop=
"variableDuration"
/>
<!-- <el-table-column align="center" label="操作类型" prop="operationType"/>-->
<el-table-column
align=
"center"
label=
"操作类型"
prop=
"operationType"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -132,7 +132,7 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"操作时间"
prop=
"operationTime"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<!--
<
el
-
table
-
column
align
=
"center"
label
=
"是否删除"
prop
=
"isDelete"
/>-->
...
...
src/views/system/equityMembersOrder/index.vue
View file @
dd01e291
...
...
@@ -114,7 +114,6 @@
<el-table
v-loading=
"loading"
:data=
"equityMembersOrderList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
align=
"center"
type=
"selection"
width=
"55"
/>
<!--
<el-table-column
align=
"center"
label=
"ID"
prop=
"id"
/>
-->
<el-table-column
align=
"center"
label=
"权益订单编号"
prop=
"equityOrderNo"
width=
"190"
/>
<el-table-column
align=
"center"
label=
"会员昵称"
prop=
"nickName"
/>
<el-table-column
align=
"center"
label=
"会员头像"
prop=
"avatar"
width=
"100"
>
<template
slot-scope=
"scope"
>
...
...
@@ -122,6 +121,7 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"会员手机号"
prop=
"phone"
/>
<el-table-column
align=
"center"
label=
"权益订单编号"
prop=
"equityOrderNo"
width=
"190"
/>
<el-table-column
align=
"center"
label=
"订单金额"
prop=
"payPrice"
/>
<!-- <el-table-column align="center" label="权益会员订单配置id" prop="equityMembersConfigId"/>-->
<el-table-column
align=
"center"
label=
"支付类型"
prop=
"payType"
>
...
...
src/views/system/memberProgressLog/index.vue
View file @
dd01e291
...
...
@@ -119,8 +119,9 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"会员手机号"
prop=
"phone"
/>
<el-table-column
align=
"center"
label=
"变动进度"
prop=
"variableProgress"
/>
<el-table-column
align=
"center"
label=
"当前进度"
prop=
"currentProgress"
/>
<el-table-column
align=
"center"
label=
"变动进度"
prop=
"variableProgress"
/>
<!-- <el-table-column align="center" label="操作类型" prop="operationType"/>-->
<el-table-column
align=
"center"
label=
"操作类型"
prop=
"operationType"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -129,7 +130,7 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"操作时间"
prop=
"operationTime"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
operationTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
npm run dev
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<!--
<
el
-
table
-
column
label
=
"是否删除"
align
=
"center"
prop
=
"isDelete"
/>-->
...
...
src/views/system/order/index.vue
View file @
dd01e291
...
...
@@ -239,10 +239,13 @@
<dict-tag
:options=
"dict.type.store_platform_type"
:value=
"scope.row.platformType"
/>
</
template
>
</el-table-column>
<
el-table-column
v-if=
"columns[10].visible"
align=
"center"
label=
"优惠券id"
prop=
"couponSkuId"
width=
"100"
/
>
<
!-- <el-table-column v-if="columns[10].visible" align="center" label="优惠券id" prop="couponSkuId" width="100"/>--
>
<el-table-column
v-if=
"columns[11].visible"
label=
"优惠券名称"
align=
"center"
prop=
"couponName"
width=
"100"
/>
<el-table-column
v-if=
"columns[12].visible"
align=
"center"
label=
"优惠券原价"
prop=
"couponPrice"
width=
"100"
/>
<el-table-column
v-if=
"columns[13].visible"
align=
"center"
label=
"优惠券促销价"
prop=
"couponPayPrice"
width=
"100"
/>
<el-table-column
v-if=
"columns[25].visible"
align=
"center"
label=
"使用时长"
prop=
"duration"
/>
<el-table-column
v-if=
"columns[26].visible"
align=
"center"
label=
"使用余额"
prop=
"balance"
/>
<el-table-column
v-if=
"columns[27].visible"
align=
"center"
label=
"优惠比例"
prop=
"discountRatio"
/>
<el-table-column
v-if=
"columns[14].visible"
align=
"center"
label=
"订单总价"
prop=
"totalPrice"
/>
<el-table-column
v-if=
"columns[15].visible"
align=
"center"
label=
"实际支付金额"
prop=
"payPrice"
width=
"100"
/>
<el-table-column
v-if=
"columns[16].visible"
align=
"center"
label=
"支付时间"
prop=
"payTime"
width=
"100"
>
...
...
@@ -710,7 +713,11 @@ export default {
{
key
:
21
,
label
:
`到店时间`
,
visible
:
false
}
,
{
key
:
22
,
label
:
`订单状态`
,
visible
:
true
}
,
{
key
:
23
,
label
:
`下单时间`
,
visible
:
false
}
,
{
key
:
24
,
label
:
`备注`
,
visible
:
false
}
{
key
:
24
,
label
:
`备注`
,
visible
:
false
}
,
{
key
:
25
,
label
:
`使用时长`
,
visible
:
false
}
,
{
key
:
26
,
label
:
`使用余额`
,
visible
:
false
}
,
{
key
:
27
,
label
:
`优惠比例`
,
visible
:
false
}
,
],
changeOpen
:
false
,
changeForm
:
{
...
...
src/views/system/pack/index.vue
View file @
dd01e291
...
...
@@ -202,11 +202,19 @@
<el-form-item
label=
"套餐名称"
prop=
"name"
>
<el-input
v-model=
"form.name"
placeholder=
"请输入套餐名称"
/>
</el-form-item>
<!-- <el-form-item label="时长" prop="duration">-->
<!-- <el-input v-model="form.duration" placeholder="请输入时长" />-->
<!-- </el-form-item>-->
<el-form-item
label=
"时长"
prop=
"duration"
>
<el-input
v-model=
"form.duration"
placeholder=
"请输入时长"
/>
<!--指定0到23范围的数字-->
<el-input-number
v-model=
"form.duration"
:max=
"24"
:min=
"0.5"
:step=
"0.5"
label=
"时长"
/>
</el-form-item>
<!-- <el-form-item label="金额" prop="price">-->
<!-- <el-input v-model="form.price" placeholder="请输入金额" />-->
<!-- </el-form-item>-->
<el-form-item
label=
"金额"
prop=
"price"
>
<el-input
v-model=
"form.price"
placeholder=
"请输入金额"
/>
<!--指定0到23范围的数字-->
<el-input-number
v-model=
"form.price"
:max=
"999"
:min=
"0"
label=
"时长"
/>
</el-form-item>
<el-form-item
label=
"套餐开始时段"
prop=
"packaStartPeriod"
>
<!--指定0到23范围的数字-->
...
...
src/views/system/records/index.vue
View file @
dd01e291
...
...
@@ -8,38 +8,38 @@
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<
el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['system:records:add']"
>
新增
</el-button
>
<
/el-col
>
<
el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['system:records:edit']"
>
修改
</el-button
>
<
/el-col
>
<
el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['system:records:remove']"
>
删除
</el-button
>
<
/el-col
>
<
!--
<el-col
:span=
"1.5"
>
--
>
<!--
<el-button-->
<!-- type="primary"-->
<!-- plain-->
<!-- icon="el-icon-plus"-->
<!-- size="mini"-->
<!-- @click="handleAdd"-->
<!-- v-hasPermi="['system:records:add']"-->
<!-- >新增
</el-button>
--
>
<
!--
</el-col>
--
>
<
!--
<el-col
:span=
"1.5"
>
--
>
<!--
<el-button-->
<!-- type="success"-->
<!-- plain-->
<!-- icon="el-icon-edit"-->
<!-- size="mini"-->
<!-- :disabled="single"-->
<!-- @click="handleUpdate"-->
<!-- v-hasPermi="['system:records:edit']"-->
<!-- >修改
</el-button>
--
>
<
!--
</el-col>
--
>
<
!--
<el-col
:span=
"1.5"
>
--
>
<!--
<el-button-->
<!-- type="danger"-->
<!-- plain-->
<!-- icon="el-icon-delete"-->
<!-- size="mini"-->
<!-- :disabled="multiple"-->
<!-- @click="handleDelete"-->
<!-- v-hasPermi="['system:records:remove']"-->
<!-- >删除
</el-button>
--
>
<
!--
</el-col>
--
>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
...
...
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