Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-shop-manage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
李奇
2017-05-24 11:30:52 +0800
Commit
7ef117144fb27f4ed88cc6b831af7edd8fdb6192
1 parent
2e370973
fixed:采购价添加
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
app/pages/trade/allot/components/cell-prd-info.vue
app/pages/trade/allot/store/done.js
app/pages/trade/allot/store/undone.js
app/pages/trade/allot/components/cell-prd-info.vue
View file @
7ef1171
...
...
@@ -7,6 +7,7 @@
<p>名称:{{name}}</p>
<p>品牌:{{brand}}</p>
<p>销售价:{{price}}</p>
<p>采购价:{{purchasePrice}}</p>
</div>
</div>
</template>
...
...
@@ -33,6 +34,9 @@
price: {
type: [String, Number]
},
purchasePrice: {
type: [String, Number]
},
name: {
type: String
}
...
...
app/pages/trade/allot/store/done.js
View file @
7ef1171
...
...
@@ -101,6 +101,7 @@ export default () => {
:
name
=
"row.productName"
:
brand
=
"row.brandName"
:
price
=
"row.salesPrice"
:
purchase
-
price
=
"row.purchasePrice"
:
size
=
"row.sizeName"
><
/cell-prd-info>`
;
}
...
...
app/pages/trade/allot/store/undone.js
View file @
7ef1171
...
...
@@ -93,6 +93,7 @@ export default () => {
:
name
=
"row.productName"
:
brand
=
"row.brandName"
:
price
=
"row.salesPrice"
:
purchase
-
price
=
"row.purchasePrice"
:
size
=
"row.sizeName"
><
/cell-prd-info>`
;
}
...
...
Please
register
or
login
to post a comment