Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
丽
丽人贷管理后台
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
百灵美选
丽人贷管理后台
Commits
11ca6f30
Commit
11ca6f30
authored
Sep 13, 2023
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
准备交付代码
parent
32e7cc41
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
14 additions
and
101 deletions
+14
-101
build_staging.run.xml
.run/build_staging.run.xml
+0
-12
serve.run.xml
.run/serve.run.xml
+0
-12
README.md
README.md
+2
-2
index.js
src/minix/index.js
+2
-1
BaseInfo.vue
src/views/client/componments/BaseInfo.vue
+1
-9
BillList.vue
src/views/client/componments/BillList.vue
+2
-9
LoanInfo.vue
src/views/client/componments/LoanInfo.vue
+2
-2
Messages.vue
src/views/client/componments/Messages.vue
+1
-9
OperateLog.vue
src/views/client/componments/OperateLog.vue
+1
-9
OwnerBankBind.vue
src/views/client/componments/OwnerBankBind.vue
+1
-1
RePayList.vue
src/views/client/componments/RePayList.vue
+0
-8
ReliefList.vue
src/views/client/componments/ReliefList.vue
+0
-8
detail.vue
src/views/client/detail.vue
+0
-9
list.vue
src/views/client/list.vue
+0
-9
base.vue
src/views/merchant/com/base.vue
+2
-1
No files found.
.run/build_staging.run.xml
deleted
100644 → 0
View file @
32e7cc41
<component
name=
"ProjectRunConfigurationManager"
>
<configuration
default=
"false"
name=
"build:staging"
type=
"js.build_tools.npm"
nameIsGenerated=
"true"
>
<package-json
value=
"$PROJECT_DIR$/package.json"
/>
<command
value=
"run"
/>
<scripts>
<script
value=
"build:staging"
/>
</scripts>
<node-interpreter
value=
"project"
/>
<envs
/>
<method
v=
"2"
/>
</configuration>
</component>
\ No newline at end of file
.run/serve.run.xml
deleted
100644 → 0
View file @
32e7cc41
<component
name=
"ProjectRunConfigurationManager"
>
<configuration
default=
"false"
name=
"serve"
type=
"js.build_tools.npm"
nameIsGenerated=
"true"
>
<package-json
value=
"$PROJECT_DIR$/package.json"
/>
<command
value=
"run"
/>
<scripts>
<script
value=
"serve"
/>
</scripts>
<node-interpreter
value=
"project"
/>
<envs
/>
<method
v=
"2"
/>
</configuration>
</component>
\ No newline at end of file
README.md
View file @
11ca6f30
...
@@ -10,6 +10,8 @@
...
@@ -10,6 +10,8 @@
是不同用户看到的菜单不一样。
是不同用户看到的菜单不一样。
### 测试账号
### 测试账号
-
账号:mr
-
账号:mr
-
密码:123456
-
密码:123456
...
@@ -30,5 +32,3 @@
...
@@ -30,5 +32,3 @@
-
接口地址:https://apimanager.feiyiyc.com
-
接口地址:https://apimanager.feiyiyc.com
-
访问地址:https://manage.feiyiyc.com
-
访问地址:https://manage.feiyiyc.com
### 如果配置新菜单
src/minix/index.js
View file @
11ca6f30
...
@@ -129,7 +129,8 @@ export default {
...
@@ -129,7 +129,8 @@ export default {
return
this
.
$enumUtils
.
toMsg
(
'UserStatusEnum'
,
status
);
return
this
.
$enumUtils
.
toMsg
(
'UserStatusEnum'
,
status
);
},
},
// 格式化时间
// 格式化时间
dateFormat
:
function
(
row
,
column
)
{
// dateFormat
transDateFormat
:
function
(
row
,
column
)
{
const
date
=
row
[
column
.
property
];
const
date
=
row
[
column
.
property
];
if
(
date
===
undefined
)
return
""
;
if
(
date
===
undefined
)
return
""
;
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
);
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
);
...
...
src/views/client/componments/BaseInfo.vue
View file @
11ca6f30
...
@@ -117,7 +117,7 @@
...
@@ -117,7 +117,7 @@
align=
"center"
align=
"center"
prop=
"gmtCreated"
prop=
"gmtCreated"
label=
"绑定时间"
label=
"绑定时间"
:formatter=
"
d
ateFormat"
:formatter=
"
transD
ateFormat"
></el-table-column>
></el-table-column>
<el-table-column
align=
"center"
label=
"操作"
>
<el-table-column
align=
"center"
label=
"操作"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
...
@@ -226,14 +226,6 @@ export default {
...
@@ -226,14 +226,6 @@ export default {
headerStyle
()
{
headerStyle
()
{
return
"tableHeaderStyle"
;
return
"tableHeaderStyle"
;
},
},
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
];
if
(
date
===
undefined
)
{
return
""
;
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
);
},
// 查看绑卡记录
// 查看绑卡记录
ownerBankBind
(
row
,
com
,
title
)
{
ownerBankBind
(
row
,
com
,
title
)
{
this
.
activeComponents
=
com
;
this
.
activeComponents
=
com
;
...
...
src/views/client/componments/BillList.vue
View file @
11ca6f30
...
@@ -109,7 +109,7 @@
...
@@ -109,7 +109,7 @@
prop=
"planDate"
prop=
"planDate"
width=
"120"
width=
"120"
label=
"计划还款时间"
label=
"计划还款时间"
:formatter=
"
dateFormats
"
:formatter=
"
transDateFormat
"
></el-table-column>
></el-table-column>
<el-table-column
<el-table-column
align=
"center"
align=
"center"
...
@@ -137,7 +137,7 @@
...
@@ -137,7 +137,7 @@
prop=
"gmtModified"
prop=
"gmtModified"
width=
"120"
width=
"120"
label=
"结清时间"
label=
"结清时间"
:formatter=
"
dateFormats
"
:formatter=
"
transDateFormat
"
></el-table-column>
></el-table-column>
<el-table-column
fixed=
"right"
align=
"center"
width=
"120"
label=
"操作"
>
<el-table-column
fixed=
"right"
align=
"center"
width=
"120"
label=
"操作"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
...
@@ -510,13 +510,6 @@ export default {
...
@@ -510,13 +510,6 @@ export default {
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
},
},
/*日期*/
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
];
if
(
date
===
undefined
)
{
return
""
;
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
);
},
/*日期*/
/*日期*/
dateFormats
:
function
(
row
,
column
)
{
dateFormats
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
];
let
date
=
row
[
column
.
property
];
...
...
src/views/client/componments/LoanInfo.vue
View file @
11ca6f30
...
@@ -9,8 +9,8 @@
...
@@ -9,8 +9,8 @@
:header-row-class-name=
"headerStyle"
:header-row-class-name=
"headerStyle"
:data=
"data"
stripe
style=
"width: 100%;"
>
:data=
"data"
stripe
style=
"width: 100%;"
>
<el-table-column
align=
"center"
width=
"140"
prop=
"loanNo"
label=
"借款编号"
></el-table-column>
<el-table-column
align=
"center"
width=
"140"
prop=
"loanNo"
label=
"借款编号"
></el-table-column>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"申请日期"
:formatter=
"
dateFormats
"
></el-table-column>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"申请日期"
:formatter=
"
transDateFormat
"
></el-table-column>
<el-table-column
align=
"center"
prop=
"startDate"
label=
"放款日期"
:formatter=
"
dateFormats
"
></el-table-column>
<el-table-column
align=
"center"
prop=
"startDate"
label=
"放款日期"
:formatter=
"
transDateFormat
"
></el-table-column>
<el-table-column
align=
"center"
prop=
"raiseAmt"
label=
"放款本金"
></el-table-column>
<el-table-column
align=
"center"
prop=
"raiseAmt"
label=
"放款本金"
></el-table-column>
<el-table-column
align=
"center"
prop=
"productNameStr"
label=
"产品名称"
></el-table-column>
<el-table-column
align=
"center"
prop=
"productNameStr"
label=
"产品名称"
></el-table-column>
...
...
src/views/client/componments/Messages.vue
View file @
11ca6f30
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
align=
"center"
align=
"center"
prop=
"sendTime"
prop=
"sendTime"
width=
"150"
width=
"150"
:formatter=
"
d
ateFormat"
:formatter=
"
transD
ateFormat"
label=
"发送时间"
label=
"发送时间"
></el-table-column>
></el-table-column>
</el-table>
</el-table>
...
@@ -115,14 +115,6 @@ export default {
...
@@ -115,14 +115,6 @@ export default {
console
.
log
(
err
.
message
)
console
.
log
(
err
.
message
)
}
}
},
},
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
)
},
handleClose
()
{
handleClose
()
{
this
.
$emit
(
"handleClose"
);
this
.
$emit
(
"handleClose"
);
},
},
...
...
src/views/client/componments/OperateLog.vue
View file @
11ca6f30
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
style=
"width: 100%;"
>
style=
"width: 100%;"
>
<el-table-column
align=
"center"
prop=
"typeStr"
label=
"操作类型"
></el-table-column>
<el-table-column
align=
"center"
prop=
"typeStr"
label=
"操作类型"
></el-table-column>
<el-table-column
align=
"center"
prop=
"memo"
label=
"备注"
></el-table-column>
<el-table-column
align=
"center"
prop=
"memo"
label=
"备注"
></el-table-column>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"操作时间"
:formatter=
"
d
ateFormat"
></el-table-column>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"操作时间"
:formatter=
"
transD
ateFormat"
></el-table-column>
</el-table>
</el-table>
</div>
</div>
<div
class=
"pages"
>
<div
class=
"pages"
>
...
@@ -80,14 +80,6 @@ export default {
...
@@ -80,14 +80,6 @@ export default {
}
}
},
},
/*日期*/
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
)
},
/*日期*/
dateFormats
:
function
(
row
,
column
)
{
dateFormats
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
if
(
date
===
undefined
)
{
...
...
src/views/client/componments/OwnerBankBind.vue
View file @
11ca6f30
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
:data=
"records"
:data=
"records"
stripe
stripe
style=
"width: 100%;"
>
style=
"width: 100%;"
>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"签约时间"
:formatter=
"
d
ateFormat"
></el-table-column>
<el-table-column
align=
"center"
prop=
"gmtCreated"
label=
"签约时间"
:formatter=
"
transD
ateFormat"
></el-table-column>
<el-table-column
align=
"center"
prop=
"operaterDesc"
label=
"备注"
></el-table-column>
<el-table-column
align=
"center"
prop=
"operaterDesc"
label=
"备注"
></el-table-column>
</el-table>
</el-table>
</div>
</div>
...
...
src/views/client/componments/RePayList.vue
View file @
11ca6f30
...
@@ -129,14 +129,6 @@ export default {
...
@@ -129,14 +129,6 @@ export default {
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
},
},
/*日期*/
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
)
},
/*日期*/
dateFormats
:
function
(
row
,
column
)
{
dateFormats
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
if
(
date
===
undefined
)
{
...
...
src/views/client/componments/ReliefList.vue
View file @
11ca6f30
...
@@ -129,14 +129,6 @@ export default {
...
@@ -129,14 +129,6 @@ export default {
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
return
row
.
cardBankAccount
+
"("
+
row
.
cardBankName
+
")"
;
},
},
/*日期*/
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
)
},
/*日期*/
dateFormats
:
function
(
row
,
column
)
{
dateFormats
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
let
date
=
row
[
column
.
property
]
if
(
date
===
undefined
)
{
if
(
date
===
undefined
)
{
...
...
src/views/client/detail.vue
View file @
11ca6f30
...
@@ -396,15 +396,6 @@ export default {
...
@@ -396,15 +396,6 @@ export default {
return
moment
(
date
).
format
(
"YYYY-MM-DD "
)
+
row
.
backedTime
return
moment
(
date
).
format
(
"YYYY-MM-DD "
)
+
row
.
backedTime
},
},
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
let
date
=
row
[
column
.
property
]
if
(
date
==
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD HH:mm:ss"
)
},
/*日期*/
/*日期*/
collectDateFormat
:
function
(
row
,
column
)
{
collectDateFormat
:
function
(
row
,
column
)
{
let
date
=
row
.
collectContact
.
created
;
let
date
=
row
.
collectContact
.
created
;
...
...
src/views/client/list.vue
View file @
11ca6f30
...
@@ -254,15 +254,6 @@ export default {
...
@@ -254,15 +254,6 @@ export default {
return
array
;
return
array
;
},
},
/*日期*/
dateFormat
:
function
(
row
,
column
)
{
var
date
=
row
[
column
.
property
]
if
(
date
==
undefined
)
{
return
''
}
return
moment
(
date
).
format
(
"YYYY-MM-DD"
)
},
//产品名称
//产品名称
productNameFormat
:
function
(
row
,
column
)
{
productNameFormat
:
function
(
row
,
column
)
{
var
status
=
row
[
'productName'
];
var
status
=
row
[
'productName'
];
...
...
src/views/merchant/com/base.vue
View file @
11ca6f30
...
@@ -657,6 +657,7 @@
...
@@ -657,6 +657,7 @@
}).
then
(
async
(
res
)
=>
{
}).
then
(
async
(
res
)
=>
{
console
.
log
(
res
,
'我哈哈'
)
console
.
log
(
res
,
'我哈哈'
)
const
uploadFileUrl
=
host
+
dir
const
uploadFileUrl
=
host
+
dir
console
.
log
(
uploadFileUrl
,
'==='
)
this
.
annexRequestList
[
index
][
'imgData'
].
push
({
this
.
annexRequestList
[
index
][
'imgData'
].
push
({
name
:
file
.
name
,
name
:
file
.
name
,
uid
:
file
.
name
,
uid
:
file
.
name
,
...
@@ -719,7 +720,7 @@
...
@@ -719,7 +720,7 @@
const
obj
=
{
const
obj
=
{
name
:
img
,
name
:
img
,
uid
:
`
${
index
}
`
,
uid
:
img
,
type
:
fileType
,
type
:
fileType
,
url
:
img
url
:
img
}
}
...
...
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