Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
0397b3f9
Commit
0397b3f9
authored
May 29, 2022
by
wanglianghe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
线路价格管理
parent
94ba1400
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
441 additions
and
94 deletions
+441
-94
currency.js
src/api/ecw/currency.js
+8
-0
unit.js
src/api/ecw/unit.js
+8
-0
dict.js
src/utils/dict.js
+1
-0
index.vue
src/views/ecw/product/index.vue
+5
-6
index.vue
src/views/ecw/productPrice/index.vue
+419
-88
No files found.
src/api/ecw/currency.js
View file @
0397b3f9
...
...
@@ -52,6 +52,14 @@ export function getCurrencyPage(query) {
})
}
// 获取所有
export
function
getCurrencyList
()
{
return
request
({
url
:
'
/ecw/currency/list
'
,
method
:
'
get
'
})
}
// 导出 Excel
export
function
exportCurrencyExcel
(
query
)
{
return
request
({
...
...
src/api/ecw/unit.js
View file @
0397b3f9
...
...
@@ -52,6 +52,14 @@ export function getUnitPage(query) {
})
}
// 获得所有计量单位
export
function
getUnitList
()
{
return
request
({
url
:
'
/ecw/unit/list
'
,
method
:
'
get
'
})
}
// 导出计量单位 Excel
export
function
exportUnitExcel
(
query
)
{
return
request
({
...
...
src/utils/dict.js
View file @
0397b3f9
...
...
@@ -9,6 +9,7 @@ export const DICT_TYPE = {
USER_TYPE
:
'
user_type
'
,
COMMON_STATUS
:
'
common_status
'
,
AUDIT_STATUS
:
'
audit_status
'
,
ADVANCE_STATUS
:
'
advance_status
'
,
// ========== SYSTEM 模块 ==========
SYSTEM_USER_SEX
:
'
system_user_sex
'
,
...
...
src/views/ecw/product/index.vue
View file @
0397b3f9
...
...
@@ -247,12 +247,11 @@ export default {
/**跳转价格管理 */
toPriceManager
(
row
)
{
this
.
$router
.
push
({
name
:
'
ProductPrice
'
,
params
:
{
product
:
row
}
})
localStorage
.
setItem
(
'
product
'
,
JSON
.
stringify
(
row
));
localStorage
.
setItem
(
'
typeList
'
,
JSON
.
stringify
(
this
.
typeList
));
this
.
$router
.
push
({
name
:
'
ProductPrice
'
})
},
handleStatusChange
(
row
,
statusType
)
{
...
...
src/views/ecw/productPrice/index.vue
View file @
0397b3f9
This diff is collapsed.
Click to expand it.
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