Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
client
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a46ccc81
authored
Aug 22, 2025
by
孙美琪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
相关提交
parent
990b4b29
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
23 deletions
+28
-23
src/api/computility/order.js
+1
-1
src/views/console/myOrder.vue
+0
-0
src/views/console/overview.vue
+26
-21
src/views/index.vue
+1
-1
No files found.
src/api/computility/order.js
View file @
a46ccc81
...
...
@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询订单管理-需求单管理列表
export
function
listOrder
(
query
)
{
return
request
({
url
:
'/
computility/order/list
'
,
url
:
'/
trade/order/page
'
,
method
:
'get'
,
params
:
query
})
...
...
src/views/console/myOrder.vue
View file @
a46ccc81
This diff is collapsed.
Click to expand it.
src/views/console/overview.vue
View file @
a46ccc81
...
...
@@ -21,21 +21,22 @@
</
template
>
<div
class=
"flex base-info"
>
<div
class=
"left"
>
<el-image
:src=
"
baseUrl +
infoData.avatar"
fit=
"cover"
></el-image>
<el-image
:src=
"infoData.avatar"
fit=
"cover"
></el-image>
<el-tag
v-if=
"infoData.status === '审核通过'"
type=
"success"
>
已认证
</el-tag>
<el-tag
v-else
type=
"warning"
>
未认证
</el-tag>
</div>
<el-form
label-width=
"110px"
label-position=
"left"
>
<el-form-item
label=
"账号昵称:"
>
<div>
{{ infoData.nickName }}
</div>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=0')"
class=
"ml20"
>
修改
</el-button>
<div>
{{ infoData.nickname }}
</div>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=0')"
class=
"ml20"
>
修改
</el-button>
</el-form-item>
<el-form-item
label=
"注册时间:"
>
<div>
{{ infoData.createUserTime }}
</div>
</el-form-item>
<el-form-item
label=
"最后登录时间:"
>
<div>
{{ infoData.endLoginUserTime }}
</div>
<div>
{{ parseTime(infoData.createTime, '{y}-{m}-{d}') }}
</div>
</el-form-item>
<!-- <el-form-item label="最后登录时间:">-->
<!-- <div>{{ parseTime(infoData.enterpriseName, '{y}-{m}-{d}') || '-' }}</div>-->
<!-- </el-form-item>-->
</el-form>
</div>
</el-card>
...
...
@@ -51,11 +52,13 @@
<el-form
label-width=
"96px"
label-position=
"left"
>
<el-form-item
label=
"我的手机号:"
>
<div>
{{ infoData.mobile }}
</div>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=1')"
class=
"ml20"
>
换绑
</el-button>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=1')"
class=
"ml20"
>
换绑
</el-button>
</el-form-item>
<el-form-item
label=
"我的密码:"
>
<div>
********
</div>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=2')"
class=
"ml20"
>
修改密码
</el-button>
<el-button
type=
"primary"
link
@
click=
"$router.push('/user/profile?tab=2')"
class=
"ml20"
>
修改密码
</el-button>
</el-form-item>
</el-form>
</div>
...
...
@@ -71,23 +74,23 @@
<div>
<el-form
label-width=
"110px"
label-position=
"left"
>
<el-form-item
label=
"企业认证:"
>
<el-tag
v-if=
"infoData.
s
tatus === '审核通过'"
type=
"success"
>
已认证
</el-tag>
<el-tag
v-if=
"infoData.
checkS
tatus === '审核通过'"
type=
"success"
>
已认证
</el-tag>
<el-tag
v-else
class=
"mr5"
type=
"warning"
>
未认证
</el-tag>
<el-button
v-if=
"!infoData.
status || infoData.s
tatus === '驳回'"
<el-button
v-if=
"!infoData.
check_status || infoData.checkS
tatus === '驳回'"
@
click=
"$router.push('/console/authentication')"
type=
"primary"
link
class=
"ml20"
>
去申请
</el-button>
</el-form-item>
<
el-form-item
label=
"最后提交时间:"
>
{{ infoData.submitTime }}
<
/el-form-item
>
<
!-- <el-form-item label="最后提交时间:">--
>
<!-- {{ infoData.submitTime }}-->
<
!-- </el-form-item>--
>
<el-form-item
label=
"最后审核结果:"
>
<el-tag
v-if=
"infoData.status === '驳回'"
type=
"danger"
class=
"mr5"
>
未通过
</el-tag>
<el-tag
v-if=
"infoData.status === '待审核'"
type=
"primary"
class=
"mr5"
>
待审核
</el-tag>
<el-tag
v-if=
"infoData.status === '审核通过'"
type=
"primary"
class=
"mr5"
>
审核通过
</el-tag>
<el-tag
v-if=
"infoData.
check_
status === '驳回'"
type=
"danger"
class=
"mr5"
>
未通过
</el-tag>
<el-tag
v-if=
"infoData.
check_
status === '待审核'"
type=
"primary"
class=
"mr5"
>
待审核
</el-tag>
<el-tag
v-if=
"infoData.
check_
status === '审核通过'"
type=
"primary"
class=
"mr5"
>
审核通过
</el-tag>
<el-button
v-if=
"infoData.status === '驳回'"
type=
"primary"
link
@
click=
"handleViewReason"
>
<el-button
v-if=
"infoData.
check_
status === '驳回'"
type=
"primary"
link
@
click=
"handleViewReason"
>
查看驳回理由
</el-button>
</el-form-item>
...
...
@@ -121,15 +124,17 @@
import
{
auditInfo
}
from
'@/api/console.js'
import
{
ref
}
from
'vue'
import
{
ElMessageBox
}
from
'element-plus'
import
{
parseTime
}
from
"../../utils/ruoyi.js"
;
import
{
useDict
}
from
"@/utils/dict.js"
;
import
{
listData
}
from
"@/api/system/dict/data.js"
;
const
baseUrl
=
import
.
meta
.
env
.
VITE_APP_BASE_API
const
{
proxy
}
=
getCurrentInstance
();
const
{
check_status
}
=
proxy
.
useDict
(
"check_status"
);
const
infoData
=
ref
({})
const
handleOpenDialog
=
ref
(
false
)
function
getAuditInfo
()
{
auditInfo
().
then
(
res
=>
{
console
.
log
(
res
,
'auditInfo'
)
infoData
.
value
=
res
.
data
})
}
...
...
src/views/index.vue
View file @
a46ccc81
...
...
@@ -60,7 +60,7 @@
<div
class=
"swiper-box"
>
<div
class=
"swiper-list"
>
<div
class=
"swiper-item"
:style=
"
{ background: 'url(' + i.homeImage
s[0]
+ ')',backgroundSize: 'cover' }">
:style=
"
{ background: 'url(' + i.homeImage + ')',backgroundSize: 'cover' }">
<div
class=
"item"
><h3
class=
"title"
>
{{
i
.
title
}}
</h3>
<p
class=
"desc"
v-html=
"i.description"
></p>
<p
class=
"info flex-justify-end"
@
click=
"openAssembly(i)"
><span
class=
"btn"
>
{{
...
...
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