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
1ce42139
Commit
1ce42139
authored
Dec 13, 2022
by
邓春圆
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
f1ab53e0
e8174cbe
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
20 deletions
+34
-20
index.vue
src/components/WorkFlow/index.vue
+7
-2
previewBill.vue
src/views/ecw/box/ladingBill/previewBill.vue
+1
-0
cusDeclaration.vue
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
+10
-11
index.vue
src/views/ecw/coupon/index.vue
+16
-7
No files found.
src/components/WorkFlow/index.vue
View file @
1ce42139
<
template
>
<
template
>
<div>
<div
class=
"workflow"
>
<div
class=
"mb-10"
>
<div
class=
"mb-10"
>
<my-process-viewer
<my-process-viewer
ref=
"processViewer"
ref=
"processViewer"
...
@@ -82,4 +82,9 @@ export default {
...
@@ -82,4 +82,9 @@ export default {
}
}
}
}
</
script
>
</
script
>
\ No newline at end of file
<
style
lang=
"scss"
scoped
>
.
workflow
:
:
v-deep
.
my-process-designer
{
height
:
auto
;
}
</
style
>
\ No newline at end of file
src/views/ecw/box/ladingBill/previewBill.vue
View file @
1ce42139
...
@@ -58,6 +58,7 @@ export default {
...
@@ -58,6 +58,7 @@ export default {
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
::v-deep
.contentHtml
{
::v-deep
.contentHtml
{
word-break
:
initial
;
>
table
{
>
table
{
width
:
96%
!
important
;
width
:
96%
!
important
;
margin-left
:
2%
;
margin-left
:
2%
;
...
...
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
View file @
1ce42139
...
@@ -523,10 +523,9 @@ export default {
...
@@ -523,10 +523,9 @@ export default {
const
{
const
{
checkExamineStatus
,
checkExamineStatus
,
checkDealStatus
,
checkDealStatus
,
customsInfo
=
{}
,
customsInfo
,
}
=
this
.
shipmentObj
;
}
=
this
.
shipmentObj
;
const
{
dcCheckStatus
}
=
customsInfo
;
const
{
dcCheckStatus
}
=
customsInfo
??
{};
// 部分退场状态并且审核通过,退场不可选择
// 部分退场状态并且审核通过,退场不可选择
if
(
if
(
checkExamineStatus
===
2
&&
checkExamineStatus
===
2
&&
dcCheckStatus
===
2
&&
dcCheckStatus
===
2
&&
...
@@ -565,11 +564,11 @@ export default {
...
@@ -565,11 +564,11 @@ export default {
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcCheckStatus
"
,
""
);
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcCheckStatus
"
,
""
);
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
}
else
{
}
else
{
const
{
customsInfo
=
{}
}
=
this
.
shipmentObj
;
const
{
customsInfo
}
=
this
.
shipmentObj
;
this
.
$set
(
this
.
$set
(
this
.
cusDeclarationObj
,
this
.
cusDeclarationObj
,
"
dcCheckStatus
"
,
"
dcCheckStatus
"
,
(
customsInfo
.
dcCheckStatus
&&
String
(
customsInfo
.
dcCheckStatus
))
||
(
customsInfo
?.
dcCheckStatus
&&
String
(
customsInfo
?
.
dcCheckStatus
))
||
"
3
"
"
3
"
);
);
}
}
...
@@ -596,8 +595,8 @@ export default {
...
@@ -596,8 +595,8 @@ export default {
},
},
// 查验状态
// 查验状态
"
cusDeclarationObj.dcCheckStatus
"
(
val
)
{
"
cusDeclarationObj.dcCheckStatus
"
(
val
)
{
const
{
customsInfo
=
{}
}
=
this
.
shipmentObj
;
const
{
customsInfo
}
=
this
.
shipmentObj
;
if
(
val
!=
customsInfo
.
dcCheckStatus
)
{
if
(
val
!=
customsInfo
?
.
dcCheckStatus
)
{
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
}
}
},
},
...
@@ -608,9 +607,9 @@ export default {
...
@@ -608,9 +607,9 @@ export default {
const
{
const
{
checkExamineStatus
,
checkExamineStatus
,
checkDealStatus
,
checkDealStatus
,
customsInfo
=
{}
,
customsInfo
,
}
=
this
.
shipmentObj
;
}
=
this
.
shipmentObj
;
const
{
dcCheckStatus
}
=
customsInfo
;
const
{
dcCheckStatus
}
=
customsInfo
??
{}
;
if
(
checkExamineStatus
===
1
)
{
if
(
checkExamineStatus
===
1
)
{
return
dcCheckStatus
===
1
return
dcCheckStatus
===
1
?
this
.
$t
(
"
退场审核中
"
)
?
this
.
$t
(
"
退场审核中
"
)
...
@@ -629,9 +628,9 @@ export default {
...
@@ -629,9 +628,9 @@ export default {
const
{
const
{
checkExamineStatus
,
checkExamineStatus
,
checkDealStatus
,
checkDealStatus
,
customsInfo
=
{}
,
customsInfo
,
}
=
this
.
shipmentObj
;
}
=
this
.
shipmentObj
;
const
{
dcCheckStatus
}
=
customsInfo
;
const
{
dcCheckStatus
}
=
customsInfo
??
{}
;
// 状态
// 状态
if
(
type
===
"
status
"
)
{
if
(
type
===
"
status
"
)
{
...
...
src/views/ecw/coupon/index.vue
View file @
1ce42139
...
@@ -14,10 +14,15 @@
...
@@ -14,10 +14,15 @@
<!--
<el-select
v-model=
"queryParams.type"
placeholder=
"请选择类型 1:优惠卷 2:金额-满减 3:方数-满减 4 折扣 5优惠 6 特价 7区间价"
clearable
size=
"small"
>
<!--
<el-select
v-model=
"queryParams.type"
placeholder=
"请选择类型 1:优惠卷 2:金额-满减 3:方数-满减 4 折扣 5优惠 6 特价 7区间价"
clearable
size=
"small"
>
<el-option
label=
"请选择字典生成"
value=
""
/>
<el-option
label=
"请选择字典生成"
value=
""
/>
</el-select>
-->
</el-select>
-->
<dict-selector
:type=
'DICT_TYPE.ECW_COUPON_TYPE'
v-model=
"queryParams.type"
/>
<dict-selector
:type=
'DICT_TYPE.ECW_COUPON_TYPE'
v-model=
"queryParams.type"
clearable
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"状态"
prop=
"status"
>
<el-form-item
label=
"状态"
prop=
"status"
clearable
>
<dict-selector
:type=
"DICT_TYPE.ECW_COUPON_STATUS"
v-model=
"queryParams.status"
/>
<!--
<dict-selector
:type=
"DICT_TYPE.ECW_COUPON_STATUS"
v-model=
"queryParams.status"
/>
-->
<el-select
v-model=
"queryParams.status"
placeholder=
"请选择"
clearable
size=
"small"
>
<el-option
label=
"草稿"
value=
"0"
/>
<el-option
label=
"已发布"
value=
"1"
/>
<el-option
label=
"已过期"
value=
"2"
/>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"关键字"
prop=
"conditionCurrencyId"
>
<el-form-item
label=
"关键字"
prop=
"conditionCurrencyId"
>
<el-input
v-model=
"queryParams.searchKey"
placeholder=
"请输入关键字"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-input
v-model=
"queryParams.searchKey"
placeholder=
"请输入关键字"
clearable
@
keyup.enter.native=
"handleQuery"
/>
...
@@ -136,11 +141,11 @@
...
@@ -136,11 +141,11 @@
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"标题"
align=
"center"
prop=
"titleZh"
/>
<el-table-column
label=
"标题"
align=
"center"
prop=
"titleZh"
/>
<el-table-column
label=
"描述"
align=
"center"
prop=
"type"
>
<
!-- <
el-table-column label="描述" align="center" prop="type">
<template slot-scope="{row}">
<template slot-scope="{row}">
{{$l(row, 'content')}}
{{$l(row, 'content')}}
</template>
</template>
</el-table-column>
</el-table-column>
-->
<el-table-column
label=
"发布人/发布时间"
align=
"center"
prop=
"startTime"
width=
"180"
>
<el-table-column
label=
"发布人/发布时间"
align=
"center"
prop=
"startTime"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
creatorName
}}
</div>
<div>
{{
scope
.
row
.
creatorName
}}
</div>
...
@@ -163,12 +168,12 @@
...
@@ -163,12 +168,12 @@
<
template
slot
-
scope
=
"
scope
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
<
/span
>
<
span
>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
--
>
<
el
-
table
-
column
label
=
"
状态
"
align
=
"
center
"
prop
=
"
createTime
"
width
=
"
180
"
>
<
el
-
table
-
column
label
=
"
状态
"
align
=
"
center
"
prop
=
"
createTime
"
width
=
"
180
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.ECW_IS_DRAFT
"
:
value
=
"
row.status
"
/>
<
dict
-
tag
:
type
=
"
DICT_TYPE.ECW_IS_DRAFT
"
:
value
=
"
row.status
"
/>
<
/template
>
<
/template
>
<
/el-table-column>
--
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
操作
"
align
=
"
center
"
fixed
=
"
right
"
class
-
name
=
"
small-padding fixed-width
"
>
<
el
-
table
-
column
label
=
"
操作
"
align
=
"
center
"
fixed
=
"
right
"
class
-
name
=
"
small-padding fixed-width
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
icon
=
"
el-icon-edit
"
@
click
=
"
handleDetail(scope.row, true)
"
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
icon
=
"
el-icon-edit
"
@
click
=
"
handleDetail(scope.row, true)
"
...
@@ -261,6 +266,10 @@ export default {
...
@@ -261,6 +266,10 @@ export default {
this
.
loading
=
true
;
this
.
loading
=
true
;
// 处理查询参数
// 处理查询参数
let
params
=
{...
this
.
queryParams
}
;
let
params
=
{...
this
.
queryParams
}
;
if
(
params
.
status
==
2
){
params
.
overdueStatus
=
0
params
.
status
=
null
}
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeStartTime
,
'
startTime
'
);
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeStartTime
,
'
startTime
'
);
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeEndTime
,
'
endTime
'
);
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeEndTime
,
'
endTime
'
);
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeCreateTime
,
'
createTime
'
);
this
.
addBeginAndEndTime
(
params
,
this
.
dateRangeCreateTime
,
'
createTime
'
);
...
...
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