Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-baoshen-excel
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
何远江
topsun-baoshen-excel
Commits
24950b9e
Commit
24950b9e
authored
Apr 19, 2025
by
tanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接单条码
parent
f2b9c528
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
7 deletions
+26
-7
ChooseFile.vue
src/views/comment-excel/components/ChooseFile/ChooseFile.vue
+9
-2
OrderChange.vue
src/views/order/orderChange/OrderChange.vue
+9
-5
OrderList.vue
src/views/order/orderList/OrderList.vue
+8
-0
No files found.
src/views/comment-excel/components/ChooseFile/ChooseFile.vue
View file @
24950b9e
<
template
>
<div
class=
"container m-auto pt-10"
>
<el-form
ref=
"formRef"
:model=
"formState"
label-width=
"100px"
>
<el-form-item
label=
"收单条码:"
>
<el-input
v-model=
"formState.acquiringBarcode"
></el-input>
</el-form-item>
<el-form-item
label=
"客户:"
>
<el-input
v-model=
"formState.customerName"
disabled
>
<template
#
append
>
...
...
@@ -65,7 +70,8 @@ const formRef = ref()
const
tableData
=
ref
([])
const
formState
=
reactive
({
customerName
:
''
,
customerId
:
''
customerId
:
''
,
acquiringBarcode
:
''
})
const
emit
=
defineEmits
([
'upload'
])
...
...
@@ -103,7 +109,8 @@ const submitForm = async () => {
}
const
params
=
{
filePaths
:
tableData
.
value
.
map
((
item
)
=>
item
.
url
),
customerId
:
formState
.
customerId
customerId
:
formState
.
customerId
,
acquiringBarcode
:
formState
.
acquiringBarcode
,
}
apiSaveUpload
(
params
).
then
(({
data
})
=>
{
// const { setFileInfo } = useCommentExcel()
...
...
src/views/order/orderChange/OrderChange.vue
View file @
24950b9e
...
...
@@ -18,6 +18,10 @@
</
template
>
</el-input>
</el-form-item>
<el-form-item
label=
"收单条码"
>
<el-input
v-model=
"queryParams.acquiringBarcode"
placeholder=
""
clearable
/>
</el-form-item>
<el-form-item
label=
"订单状态"
>
<el-select
v-model=
"queryParams.status"
placeholder=
""
clearable
>
...
...
@@ -90,6 +94,8 @@
}}
</el-link>
</
template
>
</vxe-column>
<vxe-column
field=
"acquiringBarcode"
title=
"收单条码"
width=
"120"
></vxe-column>
<vxe-column
field=
"status_dictText"
title=
"订单状态"
width=
"120"
></vxe-column>
<vxe-column
field=
"createTime"
title=
"创建时间"
width=
"180"
></vxe-column>
<vxe-column
field=
"createBy_dictText"
title=
"创建人"
width=
"180"
></vxe-column>
...
...
@@ -279,11 +285,6 @@
</
template
>
</vxe-modal>
<CustomerModal
v-model:visible=
"visible"
@
confirm=
"confirmCustomer"
/>
<UserModal
v-model:visible=
"visibleUserModal"
@
confirm=
"confirmUser"
/>
</template>
...
...
@@ -346,7 +347,9 @@ const queryParams = reactive({
customerId_dict
:
''
,
createBy
:
''
,
createby_dict
:
''
,
templateFileId
:
''
,
currentPage
:
1
,
acquiringBarcode
:
''
,
pageSize
:
10
,
total
:
0
,
column
:
'createTime'
,
...
...
@@ -690,6 +693,7 @@ const onReset = () => {
createBy
:
''
,
createby_dict
:
''
,
customerId_dict
:
''
,
acquiringBarcode
:
''
,
customerId
:
''
})
}
...
...
src/views/order/orderList/OrderList.vue
View file @
24950b9e
...
...
@@ -8,6 +8,10 @@
<el-form-item
label=
"模版文件ID"
>
<el-input
v-model=
"formState.templateFileId"
placeholder=
""
clearable
/>
</el-form-item>
<el-form-item
label=
"收单条码"
>
<el-input
v-model=
"formState.acquiringBarcode"
placeholder=
""
clearable
/>
</el-form-item>
<el-form-item
label=
"客户"
>
<el-input
v-model=
"formState.customerId_dict"
placeholder=
""
readonly
>
<template
#
append
>
...
...
@@ -72,6 +76,8 @@
</vxe-column>
<vxe-column
field=
"customerId_dictText"
title=
"客户名称"
width=
"120"
></vxe-column>
<vxe-column
field=
"acquiringBarcode"
title=
"收单条码"
width=
"120"
></vxe-column>
<vxe-column
title=
"原始文件地址"
min-width=
"300"
>
<
template
#
default=
"{ row }"
>
<el-link
...
...
@@ -145,6 +151,7 @@ const formState = reactive({
templateFileId
:
''
,
createBy
:
''
,
createby_dict
:
''
,
acquiringBarcode
:
''
,
createTime
:
null
,
currentPage
:
1
,
pageSize
:
10
,
...
...
@@ -190,6 +197,7 @@ const onReset = () => {
customerId
:
''
,
customerId_dict
:
''
,
createby_dict
:
''
,
acquiringBarcode
:
''
,
createTime
:
null
})
}
...
...
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