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
e30bc103
Commit
e30bc103
authored
Jul 10, 2024
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:拍品添加股价和供货价
parent
c014598c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
src/views/sale/auctionAdd.vue
src/views/sale/auctionAdd.vue
+7
-1
src/views/sale/auctionList.vue
src/views/sale/auctionList.vue
+10
-0
No files found.
src/views/sale/auctionAdd.vue
View file @
e30bc103
...
@@ -108,6 +108,11 @@
...
@@ -108,6 +108,11 @@
<
template
slot=
"prepend"
>
¥
</
template
>
<
template
slot=
"prepend"
>
¥
</
template
>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"供货价"
prop=
"supplyPrice"
>
<el-input
v-model=
"goods.supplyPrice"
style=
"width: 300px"
>
<
template
slot=
"prepend"
>
¥
</
template
>
</el-input>
</el-form-item>
</div>
</div>
<div
class=
"item"
>
<div
class=
"item"
>
<el-form-item
label=
"理想价"
>
<el-form-item
label=
"理想价"
>
...
@@ -162,7 +167,8 @@ export default {
...
@@ -162,7 +167,8 @@ export default {
// auctionEndTime: [{ required: true, message: '截拍时间不能为空', trigger: 'blur' }],
// auctionEndTime: [{ required: true, message: '截拍时间不能为空', trigger: 'blur' }],
startPrice
:
[{
required
:
true
,
message
:
'
起拍价不能为空
'
,
trigger
:
'
blur
'
}],
startPrice
:
[{
required
:
true
,
message
:
'
起拍价不能为空
'
,
trigger
:
'
blur
'
}],
addExtent
:
[{
required
:
true
,
message
:
'
加价幅度不能为空
'
,
trigger
:
'
blur
'
}],
addExtent
:
[{
required
:
true
,
message
:
'
加价幅度不能为空
'
,
trigger
:
'
blur
'
}],
estimatedPrice
:
[{
required
:
true
,
message
:
'
估价不能为空
'
,
trigger
:
'
blur
'
}]
estimatedPrice
:
[{
required
:
true
,
message
:
'
估价不能为空
'
,
trigger
:
'
blur
'
}],
supplyPrice
:
[{
required
:
true
,
message
:
'
供货价不能为空
'
,
trigger
:
'
blur
'
}]
},
},
editorInit
:
{
editorInit
:
{
language
:
'
zh_CN
'
,
language
:
'
zh_CN
'
,
...
...
src/views/sale/auctionList.vue
View file @
e30bc103
...
@@ -57,6 +57,16 @@
...
@@ -57,6 +57,16 @@
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.distributionPrice ? `
¥
$
{
scope
.
row
.
distributionPrice
}
` : '-'
}
`
}}
<
/span
>
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.distributionPrice ? `
¥
$
{
scope
.
row
.
distributionPrice
}
` : '-'
}
`
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"
center
"
label
=
"
估价
"
prop
=
"
estimatedPrice
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.estimatedPrice ? `
¥
$
{
scope
.
row
.
estimatedPrice
}
` : '-'
}
`
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"
center
"
label
=
"
供货价
"
prop
=
"
supplyPrice
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.supplyPrice ? `
¥
$
{
scope
.
row
.
supplyPrice
}
` : '-'
}
`
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"
center
"
label
=
"
中拍价
"
prop
=
"
salePrice
"
>
<
el
-
table
-
column
align
=
"
center
"
label
=
"
中拍价
"
prop
=
"
salePrice
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.salePrice ? `
¥
$
{
scope
.
row
.
salePrice
}
` : '-'
}
`
}}
<
/span
>
<
span
class
=
"
tooltip-span
"
>
{{
`${scope.row.salePrice ? `
¥
$
{
scope
.
row
.
salePrice
}
` : '-'
}
`
}}
<
/span
>
...
...
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