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
39fc4430
Commit
39fc4430
authored
Sep 12, 2024
by
余金瑶
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改客户信息界面,控货和异常订单搜索
parent
41628737
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
257 additions
and
240 deletions
+257
-240
edit.vue
src/views/ecw/customer/edit.vue
+237
-236
cargoControl.vue
src/views/ecw/order/cargoControl.vue
+19
-3
index.vue
src/views/ecw/order/exception/index.vue
+1
-1
No files found.
src/views/ecw/customer/edit.vue
View file @
39fc4430
This diff is collapsed.
Click to expand it.
src/views/ecw/order/cargoControl.vue
View file @
39fc4430
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
:placeholder=
"$t('请输入订单号、唛头、提单号')"
:placeholder=
"$t('请输入订单号、唛头、提单号')"
clearable
clearable
@
keyup.enter.native=
"handleQuery"
@
keyup.enter.native=
"handleQuery"
@
input=
"noParam.value=noParam.value.replace(/\s+/g, '')"
>
>
<template
slot=
"prepend"
>
<template
slot=
"prepend"
>
<dict-selector
<dict-selector
...
@@ -129,11 +130,11 @@
...
@@ -129,11 +130,11 @@
<el-input v-model.trim="queryParams.tidanNo" :placeholder="$t('提单号')" clearable @keyup.enter.native="handleQuery" />
<el-input v-model.trim="queryParams.tidanNo" :placeholder="$t('提单号')" clearable @keyup.enter.native="handleQuery" />
</el-form-item>-->
</el-form-item>-->
<el-form-item
:label=
"$t('发货人')"
prop=
"consignorKey"
>
<el-form-item
:label=
"$t('发货人')"
prop=
"consignorKey"
>
<el-input
v-model.trim=
"queryParams.consignorKey"
:placeholder=
"$t('发货人')"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-input
v-model.trim=
"queryParams.consignorKey"
:placeholder=
"$t('发货人')"
clearable
@
keyup.enter.native=
"handleQuery"
@
input=
"queryParams.consignorKey=queryParams.consignorKey.replace(/\s+/g, '')"
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('收货人')"
prop=
"consigneeKey"
>
<el-form-item
:label=
"$t('收货人')"
prop=
"consigneeKey"
>
<el-input
v-model.trim=
"queryParams.consigneeKey"
:placeholder=
"$t('收货人')"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-input
v-model.trim=
"queryParams.consigneeKey"
:placeholder=
"$t('收货人')"
clearable
@
keyup.enter.native=
"handleQuery"
@
input=
"queryParams.consigneeKey=queryParams.consigneeKey.replace(/\s+/g, '')"
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('报关方式')"
prop=
"customsTypes"
>
<el-form-item
:label=
"$t('报关方式')"
prop=
"customsTypes"
>
...
@@ -223,6 +224,21 @@
...
@@ -223,6 +224,21 @@
<el-option
:label=
"$t('否')"
:value=
"0"
></el-option>
<el-option
:label=
"$t('否')"
:value=
"0"
></el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('特需')"
prop=
"packageType"
v-show=
"showSearch"
>
<el-select
v-model=
"queryParams.packageTypeArr"
multiple
:placeholder=
"$t('请选择')"
clearable
>
<
template
v-for=
"item in getDictDatas(DICT_TYPE.ORDER_SPECIAL_NEEDS)"
>
<el-option
:label=
"$l(item, 'label')"
:value=
"item.value"
></el-option>
</
template
>
</el-select>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{$t('搜索')}}
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{$t('搜索')}}
</el-button>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
...
@@ -406,7 +422,7 @@ export default {
...
@@ -406,7 +422,7 @@ export default {
// 导出遮罩层
// 导出遮罩层
exportLoading
:
false
,
exportLoading
:
false
,
// 显示搜索条件
// 显示搜索条件
showSearch
:
tru
e
,
showSearch
:
fals
e
,
// 总条数
// 总条数
total
:
0
,
total
:
0
,
// 订单列表
// 订单列表
...
...
src/views/ecw/order/exception/index.vue
View file @
39fc4430
...
@@ -1062,7 +1062,7 @@ export default {
...
@@ -1062,7 +1062,7 @@ export default {
this
.
destCountryId
=
null
this
.
destCountryId
=
null
this
.
destWarehouseId
=
null
this
.
destWarehouseId
=
null
this
.
objectiveId
=
null
this
.
objectiveId
=
null
this
.
queryParams
.
isHaveCustomer
=
null
this
.
queryParams
.
channelIds
=
null
this
.
queryParams
.
channelIds
=
null
this
.
getList
();
this
.
getList
();
},
},
...
...
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