Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
f9cf0b4d
Commit
f9cf0b4d
authored
Dec 02, 2025
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Eslint 修改
parent
39315c4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
src/views/order/podUs/index.vue
+0
-4
src/views/supply/supplierManagement/index.vue
+2
-1
src/views/supply/supplierManagement/types/index.ts
+6
-1
No files found.
src/views/order/podUs/index.vue
View file @
f9cf0b4d
...
...
@@ -3223,10 +3223,6 @@ const isAuto = ref(true)
const
countryList
=
ref
([])
const
logisticsWayList
=
ref
<
{
name
:
string
;
id
:
number
}
[]
>
([])
const
employeeList
=
ref
<
{
account
:
string
;
id
:
number
}
[]
>
([])
const
craftTypeList
=
ref
<
{
name
:
string
;
code
:
string
}
[]
>
([
{
name
:
'烫画'
,
code
:
'TH'
}
])
const
currentRow
=
ref
<
AddressInfo
>
({
receiverName
:
''
,
receiverPhone
:
''
,
...
...
src/views/supply/supplierManagement/index.vue
View file @
f9cf0b4d
...
...
@@ -212,6 +212,7 @@ import {
IsizeType
,
IPropertyResponseItem
,
Iprice
,
IPropertyItem
,
}
from
'./types/index.ts'
const
[
editForm
,
resetEditForm
]
=
useValue
<
IsupplierType
>
({})
...
...
@@ -945,7 +946,7 @@ async function addPice(product: IgoodsType) {
}
// 辅助函数:创建属性映射
function
createPropertyMap
(
propertyList
:
any
[]):
Map
<
number
,
number
[]
>
{
function
createPropertyMap
(
propertyList
:
IPropertyItem
[]):
Map
<
number
,
number
[]
>
{
const
map
=
new
Map
<
number
,
number
[]
>
()
propertyList
.
forEach
((
item
)
=>
{
...
...
src/views/supply/supplierManagement/types/index.ts
View file @
f9cf0b4d
...
...
@@ -20,7 +20,7 @@ export interface IgoodsType {
customProductItemList
?:
Iprice
[]
supplierPriceItemList
?:
Iprice
[]
customProductInfo
?:
IgoodsType
propertyList
?:
[]
propertyList
?:
IPropertyItem
[]
supplyPriceRange
?:
string
}
export
interface
IsupplierType
{
...
...
@@ -57,6 +57,11 @@ export interface IPropertyResponseItem {
valueList
:
IcolorType
[]
|
IsizeType
[]
}
export
interface
IPropertyItem
{
propertyId
?:
number
valueId
?:
number
}
export
interface
Iprice
{
productItemSku
?:
string
productItemImage
?:
string
...
...
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