Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_admin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_admin
Commits
46da79c1
Commit
46da79c1
authored
Dec 15, 2023
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: UI优化
parent
656dad29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
src/views/consign/consignDetail.vue
src/views/consign/consignDetail.vue
+10
-1
src/views/consign/consignList.vue
src/views/consign/consignList.vue
+5
-1
No files found.
src/views/consign/consignDetail.vue
View file @
46da79c1
...
...
@@ -39,7 +39,7 @@
</div>
<div
class=
"consign_content_item"
>
<div
style=
"font-weight: bold"
>
货品信息
</div>
<div
class=
"consign_content_item__text"
>
{{
`藏品类目:${consignDetail.c
idName
|| '-'
}
`
}}
<
/div
>
<div
class=
"consign_content_item__text"
>
{{
`藏品类目:${consignDetail.c
ategoryNamesStr
|| '-'
}
`
}}
<
/div
>
<
div
class
=
"
consign_content_item__text
"
>
{{
`藏品名称:${consignDetail.name || '-'
}
`
}}
<
/div
>
<
div
class
=
"
consign_content_item__text
"
>
{{
`详细介绍:${consignDetail.detail || '-'
}
`
}}
<
/div
>
<
div
class
=
"
consign_content_item__text
"
>
{{
`\u2003入手价:${consignDetail.price ? '¥' + consignDetail.price : '-'
}
`
}}
<
/div
>
...
...
@@ -312,6 +312,15 @@ export default {
this
.
consignDetail
.
videosImageUrl
=
list
[
1
]
}
}
if
(
this
.
consignDetail
.
categoryNames
&&
this
.
consignDetail
.
categoryNames
.
length
>
0
)
{
let
categoryStr
=
''
this
.
consignDetail
.
categoryNames
.
map
((
item
,
index
)
=>
{
const
tip
=
this
.
consignDetail
.
categoryNames
.
length
!==
index
+
1
?
'
/
'
:
''
categoryStr
=
categoryStr
.
concat
(
item
+
tip
)
}
)
this
.
consignDetail
.
categoryNamesStr
=
categoryStr
}
this
.
systemStateName
=
response
.
data
.
data
.
systemStateName
this
.
systemState
=
response
.
data
.
data
.
systemState
if
(
response
.
data
.
data
.
consignSaleRecordVoList
)
{
...
...
src/views/consign/consignList.vue
View file @
46da79c1
...
...
@@ -36,6 +36,8 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"状态"
prop=
"systemStateName"
/>
<el-table-column
v-if=
"listQuery.systemState === '30'"
align=
"center"
label=
"取消类型"
prop=
"cancelType"
/>
<el-table-column
v-if=
"listQuery.systemState === '30'"
align=
"center"
label=
"取消原因"
prop=
"remark"
/>
<el-table-column
align=
"center"
label=
"下单时间"
prop=
"saleTime"
/>
<el-table-column
align=
"center"
label=
"操作"
width=
"300"
>
...
...
@@ -184,6 +186,7 @@
</template>
<
script
>
import
Line2Hidden
from
'
@/components/line2Hidden
'
import
Pagination
from
'
@/components/Pagination
'
import
{
findConsignList
,
imgValuate
,
identifyImage
,
finishValue
,
cancelValue
}
from
'
@/api/business/consign
'
import
{
MessageBox
}
from
'
element-ui
'
...
...
@@ -191,7 +194,8 @@ import { MessageBox } from 'element-ui'
export
default
{
name
:
'
ConsignList
'
,
components
:
{
Pagination
Pagination
,
Line2Hidden
},
data
()
{
return
{
...
...
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