Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
a85c3efd
Commit
a85c3efd
authored
May 19, 2026
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
faat: 收款账户支持线下收款 #1005780
parent
06e185ca
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
5 deletions
+52
-5
src/common/api/user/user.js
+24
-0
src/common/components/element-ui.js
+6
-2
src/components/wangeditor/index.vue
+22
-3
src/views/user/baseProceedsAccount.vue
+0
-0
src/views/user/rechargeRecord.vue
+0
-0
No files found.
src/common/api/user/user.js
View file @
a85c3efd
...
...
@@ -7,6 +7,30 @@ export function getSubjectListApi(params) {
return
axios
.
get
(
'/pay/businessPayRecord/subjectList'
,
params
)
}
// 线下充值 列表
export
function
getOfflineRechargeRecordListApi
(
params
)
{
return
axios
.
post
(
'/offline-recharge/list_page'
,
params
)
}
// 线下充值 收款账户列表
export
function
getOfflineBaseProceedsAccountListApi
()
{
return
axios
.
get
(
'/manage/rest/base-proceeds-account/list'
)
}
// 线下充值 充值方式列表
export
function
getRechargeTypeListApi
()
{
return
axios
.
get
(
'/manage/rest/base-proceeds-account/pay-type-list'
)
}
// 线下充值 账户类型列表
export
function
getOfflineAccountTypeListApi
()
{
return
axios
.
get
(
'/manage/rest/base-proceeds-account/business-type-list'
)
}
// 线下充值 日志
export
function
getOfflineRechargeLogListApi
(
params
)
{
return
axios
.
get
(
'/offline-recharge/log?id='
+
params
.
id
)
}
// 收款账户管理 获取账户类型
export
function
getAccountTypeListApi
()
{
return
axios
.
get
(
'/baseProceedsAccount/accountTypeList'
)
...
...
src/common/components/element-ui.js
View file @
a85c3efd
...
...
@@ -18,6 +18,7 @@ import {
Switch
,
Select
,
Option
,
OptionGroup
,
Cascader
,
Radio
,
RadioGroup
,
...
...
@@ -42,7 +43,8 @@ import {
Descriptions
,
DescriptionsItem
,
InputNumber
,
Link
Link
,
Image
}
from
'element-ui'
const
components
=
[
...
...
@@ -58,6 +60,7 @@ const components = [
Switch
,
Select
,
Option
,
OptionGroup
,
Cascader
,
Radio
,
RadioGroup
,
...
...
@@ -84,7 +87,8 @@ const components = [
Descriptions
,
DescriptionsItem
,
InputNumber
,
Link
Link
,
Image
]
export
default
{
...
...
src/components/wangeditor/index.vue
View file @
a85c3efd
<
template
>
<div
style=
"border: 1px solid #ccc; z-index: 9999"
>
<Toolbar
v-if=
"editable"
class=
"editor_toolbar"
style=
"border-bottom: 1px solid #ccc"
:editor=
"editor"
...
...
@@ -41,6 +42,10 @@ export default {
type
:
String
,
default
:
''
},
editable
:
{
type
:
Boolean
,
default
:
true
},
isInsert
:
{
type
:
Boolean
,
default
:
false
...
...
@@ -83,6 +88,7 @@ export default {
const
_this
=
this
return
{
placeholder
:
this
.
placeholder
||
'请输入内容...'
,
readOnly
:
!
this
.
editable
,
MENU_CONF
:
{
uploadImage
:
{
allowedFileTypes
:
[
'jpg'
,
'jpeg'
,
'png'
,
'gif'
,
'bmp'
],
...
...
@@ -108,12 +114,25 @@ export default {
}
}
},
watch
:
{},
watch
:
{
editable
(
val
)
{
this
.
syncEditorEditable
(
val
)
}
},
methods
:
{
onCreated
(
editor
)
{
this
.
editor
=
Object
.
seal
(
editor
)
// 一定要用 Object.seal() ,否则会报错
console
.
log
(
editor
.
getConfig
())
this
.
editor
.
getAllMenuKeys
()
this
.
$nextTick
(()
=>
{
this
.
syncEditorEditable
(
this
.
editable
)
})
},
syncEditorEditable
(
editable
)
{
if
(
!
this
.
editor
)
return
if
(
editable
)
{
this
.
editor
.
enable
()
}
else
{
this
.
editor
.
disable
()
}
}
},
mounted
()
{
...
...
src/views/user/baseProceedsAccount.vue
View file @
a85c3efd
This diff is collapsed.
Click to expand it.
src/views/user/rechargeRecord.vue
View file @
a85c3efd
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