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
a8de8ad0
Commit
a8de8ad0
authored
Nov 27, 2022
by
我在何方
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
8930e3b3
45865971
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
13 deletions
+16
-13
index.vue
src/views/ecw/customer/index.vue
+2
-2
query.vue
src/views/ecw/customer/query.vue
+11
-7
edit.vue
src/views/ecw/offer/edit.vue
+2
-2
index.vue
src/views/ecw/order/index.vue
+1
-2
No files found.
src/views/ecw/customer/index.vue
View file @
a8de8ad0
...
@@ -127,8 +127,8 @@
...
@@ -127,8 +127,8 @@
<el-table-column
:label=
"$t('国家')"
align=
"center"
prop=
"country"
:formatter=
"countryFormatter"
></el-table-column>
<el-table-column
:label=
"$t('国家')"
align=
"center"
prop=
"country"
:formatter=
"countryFormatter"
></el-table-column>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
v-show=
"'development' === env"
@
click=
"seasPond(scope.row)"
<!--
<el-button
size=
"mini"
type=
"text"
v-show=
"'development' === env && scope.row.isInOpenSea"
@
click=
"seasPond(scope.row)"
--
>
v-hasPermi=
"['ecw:customer:query']"
>
{{
$t
(
'
掉入公海池
'
)
}}
</el-button
>
<!-- v-hasPermi="['ecw:customer:query']">
{{
$t
(
'
掉入公海池
'
)
}}
</el-button>
--
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-view"
@
click=
"handleView(scope.row)"
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-view"
@
click=
"handleView(scope.row)"
v-hasPermi=
"['ecw:customer:query']"
>
{{
$t
(
'
查看
'
)
}}
</el-button>
v-hasPermi=
"['ecw:customer:query']"
>
{{
$t
(
'
查看
'
)
}}
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
...
...
src/views/ecw/customer/query.vue
View file @
a8de8ad0
...
@@ -116,7 +116,7 @@
...
@@ -116,7 +116,7 @@
<
el
-
form
-
item
:
label
=
"
$t('报关方式:')
"
>
<
el
-
form
-
item
:
label
=
"
$t('报关方式:')
"
>
<
dict
-
selector
<
dict
-
selector
:
type
=
"
DICT_TYPE.ECW_CUSTOMS_TYPE
"
:
type
=
"
DICT_TYPE.ECW_CUSTOMS_TYPE
"
v
-
model
=
"
queryParams.custom
er
Type
"
v
-
model
=
"
queryParams.custom
s
Type
"
/>
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
:
label
=
"
$t('控货')
"
>
<
el
-
form
-
item
:
label
=
"
$t('控货')
"
>
...
@@ -207,6 +207,9 @@
...
@@ -207,6 +207,9 @@
prop
=
"
consignorName
"
prop
=
"
consignorName
"
:
label
=
"
$t('客户名称')
"
:
label
=
"
$t('客户名称')
"
>
>
<
template
v
-
slot
>
{{
customer
.
name
}}
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
<
el
-
table
-
column
prop
=
"
objectiveName
"
prop
=
"
objectiveName
"
...
@@ -489,7 +492,8 @@ export default {
...
@@ -489,7 +492,8 @@ export default {
3
:
this
.
$t
(
'
跟进中
'
),
3
:
this
.
$t
(
'
跟进中
'
),
4
:
this
.
$t
(
'
赢单
'
),
4
:
this
.
$t
(
'
赢单
'
),
5
:
this
.
$t
(
'
输单
'
),
5
:
this
.
$t
(
'
输单
'
),
6
:
this
.
$t
(
'
报价完成
'
)
6
:
this
.
$t
(
'
报价完成
'
),
7
:
this
.
$t
(
'
跟进中
'
)
}
,
}
,
dialogVisible
:
false
,
dialogVisible
:
false
,
DICT_TYPE
,
DICT_TYPE
,
...
@@ -623,11 +627,11 @@ export default {
...
@@ -623,11 +627,11 @@ export default {
}
,
}
,
changeDate
(
val
){
changeDate
(
val
){
if
(
val
){
if
(
val
){
this
.
queryParams
.
houseStartDat
e
=
val
[
0
];
this
.
queryParams
.
beginRucangTim
e
=
val
[
0
];
this
.
queryParams
.
houseEndDat
e
=
val
[
1
];
this
.
queryParams
.
endRucangTim
e
=
val
[
1
];
}
else
{
}
else
{
this
.
queryParams
.
houseStartDat
e
=
undefined
;
this
.
queryParams
.
beginRucangTim
e
=
undefined
;
this
.
queryParams
.
houseEndDat
e
=
undefined
;
this
.
queryParams
.
endRucangTim
e
=
undefined
;
}
}
}
,
}
,
//品牌授权
//品牌授权
...
@@ -655,7 +659,7 @@ export default {
...
@@ -655,7 +659,7 @@ export default {
}
,
}
,
//订单
//订单
getorderList
(){
getorderList
(){
infoListOrderPage
({
customer
I
d
:
this
.
id
,...
this
.
queryParams
}
).
then
(
r
=>
{
infoListOrderPage
({
customer
Detaill
d
:
this
.
id
,...
this
.
queryParams
}
).
then
(
r
=>
{
console
.
log
(
r
)
console
.
log
(
r
)
if
(
r
.
code
===
0
){
if
(
r
.
code
===
0
){
this
.
orderList
=
r
.
data
.
list
this
.
orderList
=
r
.
data
.
list
...
...
src/views/ecw/offer/edit.vue
View file @
a8de8ad0
...
@@ -221,8 +221,8 @@
...
@@ -221,8 +221,8 @@
</
template
>
</
template
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-form-item
label=
""
<el-form-item
label=
""
:prop=
"`prodCreateReqVOList.$
{scope.$index}.worth`"
:prop
2
=
"`prodCreateReqVOList.$
{scope.$index}.worth`"
:rules="{
:rules
2
="{
// required: true, message: $t('货值不能为空'), trigger: 'blur'
// required: true, message: $t('货值不能为空'), trigger: 'blur'
}"
}"
class="mb-0 mr-0"
class="mb-0 mr-0"
...
...
src/views/ecw/order/index.vue
View file @
a8de8ad0
...
@@ -322,7 +322,6 @@
...
@@ -322,7 +322,6 @@
</template>
</template>
<el-divider
direction=
"vertical"
v-if=
"scope.row.status != 0"
></el-divider>
<el-divider
direction=
"vertical"
v-if=
"scope.row.status != 0"
></el-divider>
<!--打印相关的-->
<!--打印相关的-->
<el-dropdown
v-if=
"scope.row.status != 0"
>
<el-dropdown
v-if=
"scope.row.status != 0"
>
<el-button
type=
"text"
>
{{$t('打印')}}
</el-button>
<el-button
type=
"text"
>
{{$t('打印')}}
</el-button>
...
...
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