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
93598537
Commit
93598537
authored
Mar 04, 2023
by
chenjiuping
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into dev1.6
parents
fbc5ab1f
884f9bc4
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
3629 additions
and
3610 deletions
+3629
-3610
en_US.json
src/i18n/languages/en_US.json
+3590
-3589
zh_CN.json
src/i18n/languages/zh_CN.json
+1
-0
todo.vue
src/views/bpm/task/todo.vue
+3
-3
makeLadingBill.vue
src/views/ecw/box/ladingBill/makeLadingBill.vue
+4
-2
index.vue
src/views/ecw/customerToBeAssigned/index.vue
+1
-1
index.vue
src/views/ecw/deptTarget/index.vue
+1
-1
index.vue
src/views/ecw/myCustomerService/index.vue
+1
-1
edit.vue
src/views/ecw/offer/edit.vue
+16
-7
edit.vue
src/views/ecw/order/edit.vue
+7
-1
index.vue
src/views/system/internalMessage/index.vue
+3
-3
index.vue
src/views/system/myInternalMessage/index.vue
+2
-2
No files found.
src/i18n/languages/en_US.json
View file @
93598537
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/i18n/languages/zh_CN.json
View file @
93598537
{
"编号"
:
"编号"
,
"登录"
:
"登录"
,
"上传附件"
:
"上传附件"
,
"不需要"
:
"不需要"
,
...
...
src/views/bpm/task/todo.vue
View file @
93598537
...
...
@@ -33,8 +33,8 @@
<!-- 列表 -->
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
:label=
"$t('流程编号')"
align=
"center"
prop=
"processInstance.id"
width=
"
3
20"
/>
<el-table-column
:label=
"$t('流程名称')"
align=
"center"
prop=
"processInstance.name"
width=
"
3
20"
/>
<el-table-column
:label=
"$t('流程编号')"
align=
"center"
prop=
"processInstance.id"
width=
"
2
20"
/>
<el-table-column
:label=
"$t('流程名称')"
align=
"center"
prop=
"processInstance.name"
width=
"
2
20"
/>
<el-table-column
:label=
"$t('流程分类')"
align=
"center"
prop=
"category"
>
<template
slot-scope=
"scope"
>
...
...
@@ -66,7 +66,7 @@
<span>{{ parseTime(scope.row.endTime) }}</span>
</template>
</el-table-column> -->
<el-table-column
:label=
"$t('操作')"
align=
"center"
fixed=
"right"
class-name=
"small-padding fixed-width"
>
<el-table-column
:label=
"$t('操作')"
align=
"center"
fixed=
"right"
class-name=
"small-padding fixed-width"
width=
"150"
>
<
template
slot-scope=
"scope"
>
<!--
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleCancel(scope.row)"
v-hasPermi=
"['bpm:task:update']"
>
{{
$t
(
'
取消
'
)
}}
...
...
src/views/ecw/box/ladingBill/makeLadingBill.vue
View file @
93598537
...
...
@@ -182,6 +182,7 @@ export default {
const
imgWidth
=
canvas
.
width
const
imgHeight
=
canvas
.
height
console
.
log
(
imgHeight
,
imgWidth
)
let
_w
=
595.28
;
let
_h
=
595.28
/
imgWidth
*
imgHeight
;
if
(
_h
>
841.89
){
...
...
@@ -194,12 +195,13 @@ export default {
return Promise.reject() */
let
form
=
new
FormData
()
let
file
=
this
.
selfNo
+
'
-
'
+
this
.
currRow
.
tidanNo
+
'
.pdf
'
form
.
append
(
'
file
'
,
new
File
([
doc
.
output
(
'
arraybuffer
'
)],
file
,
{
type
:
'
application/pdf
'
}))
form
.
append
(
'
path
'
,
`admin/shipment/
${
this
.
selfNo
}
/pdf/
${
file
}
`
)
// 最前面不能有/,否则返回的url会有两个/
/* let blob = new Blob([doc.output('arraybuffer')], {type: "application/pdf"})
FileSaver.saveAs(blob, file);
return
*/
FileSaver.saveAs(blob, file);
return
*/
return
uploadFile
(
form
)
}).
then
(
res
=>
{
return
this
.
submit
(
res
.
data
)
...
...
src/views/ecw/customerToBeAssigned/index.vue
View file @
93598537
...
...
@@ -398,7 +398,7 @@ export default {
/** 移交按钮操作 */
handleDelete
(
row
)
{
const
id
=
row
.
id
;
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除客户编号为"
'
)
+
id
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除客户编号为"
'
)
+
row
.
number
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
return
deleteCustomer
(
id
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/ecw/deptTarget/index.vue
View file @
93598537
...
...
@@ -229,7 +229,7 @@ import { parseTime } from '@/utils/ruoyi';
for
(
let
index
in
this
.
channelList
)
{
let
channelItem
=
this
.
channelList
[
index
];
if
(
channelItem
.
channelId
==
shippingChannelId
)
{
return
$l
(
channelItem
,
'
name
'
);
return
this
.
$l
(
channelItem
,
'
name
'
);
}
}
return
'
/
'
...
...
src/views/ecw/myCustomerService/index.vue
View file @
93598537
...
...
@@ -388,7 +388,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
id
=
row
.
id
;
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除客户编号为"
'
)
+
id
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除客户编号为"
'
)
+
row
.
number
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
return
deleteCustomer
(
id
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/ecw/offer/edit.vue
View file @
93598537
...
...
@@ -750,6 +750,21 @@ export default {
arr
.
push
(
it
)
})
// 没有累加保价费(没有美元计价)但是有保价费则需要加上去
if
(
!
withInsuranceFee
&&
this
.
fee
&&
this
.
fee
.
insuranceFee
){
let
fee
=
Decimal
(
this
.
fee
.
insuranceFee
)
// 如果没有美元费用,且保价费和其他费用币种相同(都是美元)
if
(
this
.
form
.
otherFeeCurrencyId
==
1
&&
this
.
form
.
otherFee
){
withOtherFee
=
true
fee
=
fee
.
plus
(
new
Decimal
(
this
.
form
.
otherFee
||
0
))
}
arr
.
push
({
currencyId
:
1
,
amount
:
fee
})
}
// 如果没有累加其他费用,则另外增加货币
if
(
!
withOtherFee
&&
this
.
form
.
otherFee
){
let
fee
=
{
...
...
@@ -765,13 +780,7 @@ export default {
arr
.
push
(
fee
)
}
// 没有累加保价费(没有美元计价)但是有保价费则需要加上去
if
(
!
withInsuranceFee
&&
this
.
fee
&&
this
.
fee
.
insuranceFee
){
arr
.
push
({
currencyId
:
1
,
amount
:
Decimal
(
this
.
fee
.
insuranceFee
)
})
}
return
arr
},
...
...
src/views/ecw/order/edit.vue
View file @
93598537
...
...
@@ -835,7 +835,7 @@ export default {
'
form.isCargoControl
'
(
isCargoControl
){
console
.
log
(
'
form.isCargoControl
'
,
this
.
form
.
isCargoControl
,
this
.
initing
)
if
(
!
this
.
initing
){
this
.
$set
(
this
.
form
,
'
drawee
'
,
isCargoControl
?
1
:
2
)
this
.
$set
(
this
.
form
,
'
drawee
'
,
isCargoControl
?
2
:
2
)
}
},
/* 'form.orderItemVOList'(){
...
...
@@ -852,6 +852,12 @@ export default {
}
})
},
// 送货上门变化后需要判断当前选择的收货方式,如果选择了送货上门但是当前不支持送货上门则需要重置
homeDeliveryService
(
enable
){
if
(
!
enable
&&
this
.
form
.
harvestMethod
!=
1
){
this
.
form
.
harvestMethod
=
1
}
}
},
activated
(){
...
...
src/views/system/internalMessage/index.vue
View file @
93598537
...
...
@@ -35,16 +35,16 @@
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['ecw:internal-message:create']"
>
{{
$t
(
'
新增
'
)
}}
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<!--
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
:loading=
"exportLoading"
v-hasPermi=
"['ecw:internal-message:export']"
>
{{
$t
(
'
导出
'
)
}}
</el-button>
</el-col>
</el-col>
-->
<right-toolbar
:showSearch.sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<!-- 列表 -->
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
label=
""
align=
"center"
prop=
"id"
/>
<el-table-column
label=
"
$t('编号')
"
align=
"center"
prop=
"id"
/>
<el-table-column
:label=
"$t('来源')"
align=
"center"
prop=
"fromId"
/>
<el-table-column
:label=
"$t('发送时间')"
align=
"center"
prop=
"sendTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
...
...
src/views/system/myInternalMessage/index.vue
View file @
93598537
...
...
@@ -38,7 +38,7 @@
<!-- 列表 -->
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
label=
""
align=
"center"
prop=
"id"
/>
<el-table-column
label=
"
$t('编号')
"
align=
"center"
prop=
"id"
/>
<!--
<el-table-column
:label=
"$t('来源')"
align=
"center"
prop=
"fromId"
/>
-->
<el-table-column
:label=
"$t('发送时间')"
align=
"center"
prop=
"sendTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
...
...
@@ -209,7 +209,7 @@ export default {
})
},
deleteFn
(
row
){
this
.
$confirm
(
`是否要删除
id:[
${
row
.
id
}
]
的站内信?`
,
this
.
$t
(
'
提示
'
),
{
this
.
$confirm
(
`是否要删除
编号为“
${
row
.
id
}
”
的站内信?`
,
this
.
$t
(
'
提示
'
),
{
confirmButtonText
:
this
.
$t
(
'
确定
'
),
cancelButtonText
:
this
.
$t
(
'
取消
'
),
type
:
'
warning
'
...
...
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