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
468c41ae
Commit
468c41ae
authored
May 28, 2026
by
sunyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into 'master'
Dev See merge request
!63
parents
6f131109
5a05dd17
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
6 deletions
+58
-6
src/common/api/user/user.js
+24
-0
src/common/components/element-ui.js
+6
-2
src/components/wangeditor/index.vue
+28
-4
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 @
468c41ae
...
...
@@ -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 @
468c41ae
...
...
@@ -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 @
468c41ae
<
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"
:defaultConfig=
"toolbarConfig"
:mode=
"mode"
/>
<Editor
style=
"height: 300px; overflow-y: hidden
"
:style=
"
{ height: height, overflowY: 'hidden' }
"
v-model="html"
:defaultConfig="editorConfig"
:mode="mode"
...
...
@@ -41,6 +42,15 @@ export default {
type
:
String
,
default
:
''
},
editable
:
{
type
:
Boolean
,
default
:
true
},
/** 编辑区高度(px) */
height
:
{
type
:
String
,
default
:
'300px'
},
isInsert
:
{
type
:
Boolean
,
default
:
false
...
...
@@ -83,6 +93,7 @@ export default {
const
_this
=
this
return
{
placeholder
:
this
.
placeholder
||
'请输入内容...'
,
readOnly
:
!
this
.
editable
,
MENU_CONF
:
{
uploadImage
:
{
allowedFileTypes
:
[
'jpg'
,
'jpeg'
,
'png'
,
'gif'
,
'bmp'
],
...
...
@@ -108,12 +119,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 @
468c41ae
This diff is collapsed.
Click to expand it.
src/views/user/rechargeRecord.vue
View file @
468c41ae
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