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
zhanhai
贷超管理后台
Commits
d085cad4
Commit
d085cad4
authored
Nov 24, 2021
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改一些问题
parent
8d11165d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
50 additions
and
34 deletions
+50
-34
index.vue
src/views/login/index.vue
+2
-0
list.vue
src/views/merchant/list.vue
+6
-6
list.vue
src/views/notice/list.vue
+24
-12
edit.vue
src/views/prod/edit.vue
+1
-0
list.vue
src/views/prod/list.vue
+2
-2
new.vue
src/views/prod/new.vue
+13
-13
vue.config.js
vue.config.js
+2
-1
No files found.
src/views/login/index.vue
View file @
d085cad4
...
...
@@ -290,6 +290,8 @@ export default {
const
result
=
await
this
.
send_msg_code
(
this
.
form
);
if
(
result
.
success
){
this
.
countDown
();
}
else
{
this
.
$baseMessage
(
result
.
message
,
'error'
);
}
}
else
{
this
.
$baseMessage
(
'请输入用户名和密码'
,
'error'
);
...
...
src/views/merchant/list.vue
View file @
d085cad4
...
...
@@ -15,11 +15,11 @@
placeholder=
"请输入机构编号"
/>
</el-form-item>
<el-form-item
label=
"机构
名
称"
>
<el-form-item
label=
"机构
简
称"
>
<el-input
v-model=
"queryForm.tenantName"
clearable
placeholder=
"请输入机构
名
称"
placeholder=
"请输入机构
简
称"
/>
</el-form-item>
<el-form-item
label=
"机构状态"
>
...
...
@@ -119,9 +119,9 @@
</el-table>
<el-pagination
:current-page=
"queryForm.
pageNo
"
:current-page=
"queryForm.
current
"
:layout=
"layout"
:page-size=
"queryForm.
pageS
ize"
:page-size=
"queryForm.
s
ize"
:total=
"total"
background
@
current-change=
"handleCurrentChange"
...
...
@@ -187,10 +187,10 @@ export default {
list
:
[],
listLoading
:
true
,
layout
:
"total, sizes, prev, pager, next, jumper"
,
total
:
0
,
total
:
1
,
queryForm
:
{
current
:
1
,
size
:
8
,
size
:
9
,
status
:
""
,
tenantName
:
""
,
tenantNo
:
""
...
...
src/views/notice/list.vue
View file @
d085cad4
...
...
@@ -53,6 +53,20 @@
fit=
"fit"
/>
</div>
<div
v-else-if=
"item.label==='公告状态'"
>
<el-tag
v-if=
"row[item.prop]===0"
type=
"success"
>
已上架
</el-tag>
<el-tag
v-else
type=
"info"
>
已下架
</el-tag>
</div>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
</
template
>
</el-table-column>
...
...
@@ -65,18 +79,19 @@
<
template
#
default=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handle
View
(row)"
@
click=
"handle
ChangeStatus
(row)"
>
上架
<span
v-if=
"row.prop===0"
>
下架
</span>
<span
v-else
>
下架
</span>
</el-button>
</
template
>
</el-table-column>
</el-table>
<el-pagination
:current-page=
"queryForm.
pageNo
"
:current-page=
"queryForm.
current
"
:layout=
"layout"
:page-size=
"queryForm.
pageS
ize"
:page-size=
"queryForm.
s
ize"
:total=
"total"
background
@
current-change=
"handleCurrentChange"
...
...
@@ -120,12 +135,12 @@ export default {
{
order
:
5
,
label
:
"公告状态"
,
prop
:
"
status
"
prop
:
"
isDelete
"
},
{
order
:
6
,
label
:
"创建时间"
,
prop
:
"
appLogo
"
prop
:
"
gmtCreate
"
}
],
list
:
[],
...
...
@@ -161,12 +176,9 @@ export default {
onSubmit
()
{
this
.
fetchData
();
},
handleView
(
row
)
{
const
{
appNo
}
=
row
;
this
.
$router
.
push
({
path
:
'/prod/edit'
,
query
:
{
appNo
}
})
handleChangeStatus
(
row
)
{
//const {appNo} = row;
},
handleSizeChange
(
val
)
{
this
.
queryForm
.
size
=
val
;
...
...
src/views/prod/edit.vue
View file @
d085cad4
...
...
@@ -31,6 +31,7 @@
>
<el-select
v-model=
"form.abutmentWay"
:disabled=
"!!appNo"
placeholder=
"请选择"
>
<el-option
...
...
src/views/prod/list.vue
View file @
d085cad4
...
...
@@ -118,9 +118,9 @@
</el-table>
<el-pagination
:current-page=
"queryForm.
pageNo
"
:current-page=
"queryForm.
current
"
:layout=
"layout"
:page-size=
"queryForm.
pageS
ize"
:page-size=
"queryForm.
s
ize"
:total=
"total"
background
@
current-change=
"handleCurrentChange"
...
...
src/views/prod/new.vue
View file @
d085cad4
...
...
@@ -324,20 +324,20 @@ export default {
form
:
{
tenantNo
:
""
,
abutmentWay
:
""
,
gradeSort
:
"
3
"
,
gradeSort
:
""
,
appLogo
:
""
,
appName
:
"
MC产品
"
,
appInfo
:
"
产品介绍
"
,
abstratInfo
:
"
产品摘要
"
,
applyAmtMin
:
"
300
"
,
applyAmtMax
:
"
500
"
,
withdrawSpan
:
"
1000
"
,
incomeCount
:
"
1000
"
,
approvalTime
:
"
1000
"
,
raiseTimeMax
:
"
7
"
,
raiseTimeMin
:
"
5
"
,
memo
:
"
1000
"
,
customerNumbers
:
"
400
"
,
// 客服电话
appName
:
""
,
appInfo
:
""
,
abstratInfo
:
""
,
applyAmtMin
:
""
,
applyAmtMax
:
""
,
withdrawSpan
:
""
,
incomeCount
:
""
,
approvalTime
:
""
,
raiseTimeMax
:
""
,
raiseTimeMin
:
""
,
memo
:
""
,
customerNumbers
:
""
,
// 客服电话
creditWay
:
1
// 授信方式
},
rules
:
{
...
...
vue.config.js
View file @
d085cad4
...
...
@@ -69,7 +69,8 @@ module.exports = {
// }
//},
"/api"
:
{
target
:
`http://192.168.0.199:8221`
,
//target: `http://192.168.0.199:8221`,
target
:
`http://192.168.0.75:8080`
,
ws
:
true
,
changeOrigin
:
true
,
pathRewrite
:
{
...
...
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