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
656dad29
Commit
656dad29
authored
Dec 15, 2023
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: bugfix
parent
c19bed40
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
9 deletions
+23
-9
config/demo.env.js
config/demo.env.js
+1
-1
src/views/consign/consignDetail.vue
src/views/consign/consignDetail.vue
+10
-5
src/views/consign/consignList.vue
src/views/consign/consignList.vue
+12
-3
No files found.
config/demo.env.js
View file @
656dad29
module
.
exports
=
{
NODE_ENV
:
'
"production"
'
,
ENV_CONFIG
:
'
"de
p
"
'
,
ENV_CONFIG
:
'
"de
v
"
'
,
BASE_API
:
'
"http://cjxc-dev.wanwudezhi.com/admin"
'
}
src/views/consign/consignDetail.vue
View file @
656dad29
...
...
@@ -42,7 +42,7 @@
<div
class=
"consign_content_item__text"
>
{{
`藏品类目:${consignDetail.cidName || '-'
}
`
}}
<
/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 ||
'-'
}
`
}}
<
/div
>
<
div
class
=
"
consign_content_item__text
"
>
{{
`\u2003入手价:
${consignDetail.price ? '¥' + consignDetail.price :
'-'
}
`
}}
<
/div
>
<
div
class
=
"
consign_content_item__image
"
>
<
div
style
=
"
width: 180px
"
>
藏品图片
/
视频:
<
/div
>
<
div
class
=
"
image_content
"
>
...
...
@@ -141,9 +141,9 @@
title
=
"
完成寄售
"
>
<
el
-
form
ref
=
"
finish
"
:
model
=
"
finishForm
"
:
rules
=
"
finishRules
"
>
<
el
-
form
-
item
label
=
"
成交金额
"
label
-
width
=
"
80px
"
prop
=
"
dealPrice
"
>
<
el
-
input
v
-
model
=
"
finishForm.dealPrice
"
style
=
"
width: 400px
"
maxlength
=
"
10
"
placeholder
=
"
请输入成交金额
"
>
<
el
-
input
-
number
v
-
model
=
"
finishForm.dealPrice
"
style
=
"
width: 400px
"
maxlength
=
"
10
"
type
=
"
number
"
placeholder
=
"
请输入成交金额
"
>
<
template
slot
=
"
append
"
>
元
<
/template
>
<
/el-input
>
<
/el-input
-number
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"
成交平台
"
label
-
width
=
"
80px
"
prop
=
"
remark
"
>
<
el
-
input
v
-
model
=
"
finishForm.remark
"
style
=
"
width: 400px
"
maxlength
=
"
10
"
placeholder
=
"
请输入成交平台
"
/>
...
...
@@ -248,7 +248,12 @@ export default {
finishDialogShow
:
false
,
finishRules
:
{
dealPrice
:
[
{
required
:
true
,
message
:
'
成交金额不能为空
'
,
trigger
:
'
blur
'
}
{
required
:
true
,
message
:
'
成交金额不能为空
'
,
trigger
:
'
blur
'
}
,
{
pattern
:
/^
[
1-9
]\d
*$/
,
message
:
'
格式不正确,请输入正整数!
'
}
],
remark
:
[
{
required
:
true
,
message
:
'
原因不能为空
'
,
trigger
:
'
blur
'
}
...
...
@@ -471,7 +476,7 @@ export default {
flex
-
direction
:
row
;
.
consign_content_item__text
{
margin
-
top
:
15
px
;
margin
-
top
:
20
px
;
}
.
consign_content_item__image
{
...
...
src/views/consign/consignList.vue
View file @
656dad29
...
...
@@ -29,7 +29,11 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"名称"
prop=
"itemName"
/>
<el-table-column
align=
"center"
label=
"名称"
prop=
"itemName"
>
<
template
slot-scope=
"scope"
>
<Line2Hidden
:text=
"scope.row.itemName"
/>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"状态"
prop=
"systemStateName"
/>
<el-table-column
align=
"center"
label=
"下单时间"
prop=
"saleTime"
/>
...
...
@@ -136,7 +140,7 @@
title=
"完成寄售"
>
<el-form
ref=
"finish"
:model=
"finishForm"
:rules=
"finishRules"
>
<el-form-item
label=
"成交金额"
label-width=
"80px"
prop=
"dealPrice"
>
<el-input
v-model=
"finishForm.dealPrice"
style=
"width: 400px"
maxlength=
"10"
placeholder=
"请输入成交金额"
><
template
slot=
"append"
>
元
</
template
></el-input>
<el-input
v-model=
"finishForm.dealPrice"
style=
"width: 400px"
maxlength=
"10"
type=
"number"
placeholder=
"请输入成交金额"
><
template
slot=
"append"
>
元
</
template
></el-input>
</el-form-item>
<el-form-item
label=
"成交平台"
label-width=
"80px"
prop=
"remark"
>
<el-input
v-model=
"finishForm.remark"
style=
"width: 400px"
maxlength=
"10"
placeholder=
"请输入成交平台"
/>
...
...
@@ -255,7 +259,12 @@ export default {
finishDialogShow
:
false
,
finishRules
:
{
dealPrice
:
[
{
required
:
true
,
message
:
'
成交金额不能为空
'
,
trigger
:
'
blur
'
}
{
required
:
true
,
message
:
'
成交金额不能为空
'
,
trigger
:
'
blur
'
},
{
pattern
:
/^
[
1-9
]\d
*$/
,
message
:
'
格式不正确,请输入正整数!
'
}
],
remark
:
[
{
required
:
true
,
message
:
'
原因不能为空
'
,
trigger
:
'
blur
'
}
...
...
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