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
2e696f3b
Commit
2e696f3b
authored
Jul 25, 2022
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
7月20日发布打包上线
1. 审批打开新页面 2. 通讯录不用弹框,用页面打开 3. 添加是否首次授信字段
parent
da215ce0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
47 additions
and
23 deletions
+47
-23
.env.production
.env.production
+1
-1
common.scss
src/assets/common.scss
+1
-0
user-base-info.vue
src/components/user-base-info.vue
+14
-2
index.js
src/minix/index.js
+7
-7
index.js
src/router/index.js
+13
-10
detail.vue
src/views/approval/detail.vue
+6
-0
list.vue
src/views/approval/list.vue
+5
-3
No files found.
.env.production
View file @
2e696f3b
BASE_URL=''
VUE_APP_API_PATH=https://aphrodite.rockstect.net
VUE_APP_API_PATH=https://aphrodite
-admin
.rockstect.net
src/assets/common.scss
View file @
2e696f3b
...
...
@@ -2,6 +2,7 @@
//position: relative;
box-sizing
:
border-box
;
padding
:
20px
;
overflow-x
:auto
;
}
.labelCls
{
width
:
140px
!
important
;
...
...
src/components/user-base-info.vue
View file @
2e696f3b
...
...
@@ -75,13 +75,25 @@
methods
:
{
handleContact
()
{
const
{
creditNo
,
creditType
}
=
this
.
baseInfo
this
.
$router
.
push
({
path
:
'/credit/contact'
,
let
routeUrl
=
this
.
$router
.
resolve
({
path
:
'/contact'
,
query
:
{
creditNo
,
creditType
}
})
window
.
open
(
routeUrl
.
href
,
'_blank'
)
//this.$router.push({
// path: '/credit/contact',
// query: {
// creditNo,
// creditType
// }
//});
}
}
}
...
...
src/minix/index.js
View file @
2e696f3b
...
...
@@ -36,15 +36,15 @@ export default {
data
(){
return
{
CS
:
{
'text-align'
:
'center'
,
//文本居中
'min-width'
:
'250px'
,
//最小宽度
'word-break'
:
'break-all'
//过长时自动换行
//
'text-align': 'center', //文本居中
//
'min-width': '250px', //最小宽度
//
'word-break': 'break-all' //过长时自动换行
},
LS
:
{
'text-align'
:
'center'
,
'height'
:
'40px'
,
'min-width'
:
'110px'
,
'word-break'
:
'keep-all'
//
'text-align': 'center',
//
'height': '40px',
//
'min-width': '110px',
//
'word-break': 'keep-all'
},
datePickerOptions
:{
shortcuts
:
[
...
...
src/router/index.js
View file @
2e696f3b
...
...
@@ -38,6 +38,18 @@ export const constantRoutes = [
component
:
()
=>
import
(
'@/views/callback'
),
hidden
:
true
},
{
path
:
'/approvalDetail'
,
name
:
'approvalDetail'
,
component
:
()
=>
import
(
'@/views/approval/detail'
),
hidden
:
true
},
{
path
:
'/contact'
,
name
:
'contact'
,
component
:
()
=>
import
(
'@/views/contact/contacts'
),
hidden
:
true
},
{
path
:
'/403'
,
name
:
'403'
,
...
...
@@ -164,6 +176,7 @@ export const asyncRoutes = [
}
]
},
{
path
:
'/approval'
,
name
:
'approval'
,
...
...
@@ -184,16 +197,6 @@ export const asyncRoutes = [
noKeepAlive
:
true
,
title
:
'我的订单'
}
},
{
path
:
'detail'
,
name
:
'ApprovalDetail'
,
component
:
()
=>
import
(
'@/views/approval/detail'
),
meta
:
{
noKeepAlive
:
true
,
title
:
'审批订单详情'
},
hidden
:
true
}
]
},
...
...
src/views/approval/detail.vue
View file @
2e696f3b
...
...
@@ -57,7 +57,13 @@
await
this
.
init
()
}
},
async
mounted
()
{
await
this
.
initSearchData
()
},
methods
:
{
async
initSearchData
()
{
await
this
.
$store
.
dispatch
(
'common/GetSearchData'
)
},
async
init
()
{
const
creditNo
=
this
.
creditNo
const
result
=
await
API
.
initApproveDetail
({
...
...
src/views/approval/list.vue
View file @
2e696f3b
...
...
@@ -309,10 +309,12 @@
},
handleView
(
row
)
{
const
{
creditNo
}
=
row
this
.
$router
.
push
({
path
:
'/approval
/d
etail'
,
let
routeUrl
=
this
.
$router
.
resolve
({
path
:
'/approval
D
etail'
,
query
:
{
creditNo
}
})
window
.
open
(
routeUrl
.
href
,
'_blank'
)
},
handleCurrentChange
(
val
)
{
this
.
queryForm
.
current
=
val
...
...
@@ -350,7 +352,7 @@
handleApproval
(
row
)
{
const
{
creditNo
}
=
row
let
routeUrl
=
this
.
$router
.
resolve
({
path
:
'/approval
/d
etail'
,
path
:
'/approval
D
etail'
,
query
:
{
creditNo
,
approval
:
'approval'
...
...
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