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
1ba2fc7a
Commit
1ba2fc7a
authored
Feb 26, 2024
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/release' into release
parents
a7509486
dbfd3267
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
156 additions
and
101 deletions
+156
-101
user.js
src/api/system/user.js
+8
-0
utils.js
src/views/ecw/box/shippingAir/utils.js
+1
-1
index.vue
src/views/ecw/box/shippingSea/nodePage/unloading/index.vue
+0
-3
utils.js
src/views/ecw/box/shippingSea/utils.js
+1
-1
index.vue
src/views/ecw/zhongPao/index.vue
+9
-1
index.vue
src/views/system/user/index.vue
+137
-95
No files found.
src/api/system/user.js
View file @
1ba2fc7a
...
...
@@ -159,3 +159,11 @@ export function importTemplate() {
responseType
:
'
blob
'
})
}
//新客户变老客户
export
function
customerUpdateCustomerToOld
(
data
){
return
request
({
url
:
'
/ecw/customer/update-customer-to-old
'
,
method
:
'
put
'
,
params
:
data
})
}
src/views/ecw/box/shippingAir/utils.js
View file @
1ba2fc7a
...
...
@@ -1158,7 +1158,7 @@ function getColmnMapping() {
type
:
"
date
"
,
},
{
title
:
i18n
.
$t
(
"
卸货
时间
"
),
title
:
i18n
.
$t
(
"
到仓通过
时间
"
),
key
:
"
ulBoxTime
"
,
type
:
"
date
"
,
},
...
...
src/views/ecw/box/shippingSea/nodePage/unloading/index.vue
View file @
1ba2fc7a
...
...
@@ -9,9 +9,6 @@
<el-form-item
:label=
"$t('到仓时间')"
>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"unloadingObj.ulWarehouseTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-form-item>
<el-form-item
:label=
"$t('卸柜时间')"
prop=
"ulBoxTime"
:rules=
"[
{ required: true, message: this.$t('必填'), trigger: 'blue' }]">
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"unloadingObj.ulBoxTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-form-item>
</el-form>
<el-row
class=
"operate-button"
>
...
...
src/views/ecw/box/shippingSea/utils.js
View file @
1ba2fc7a
...
...
@@ -1151,7 +1151,7 @@ function getColmnMapping() {
type
:
"
date
"
,
},
{
title
:
i18n
.
$t
(
"
卸
货
时间
"
),
title
:
i18n
.
$t
(
"
卸
柜通过
时间
"
),
key
:
"
ulBoxTime
"
,
type
:
"
date
"
,
},
...
...
src/views/ecw/zhongPao/index.vue
View file @
1ba2fc7a
...
...
@@ -60,11 +60,19 @@
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('创建人')"
prop=
"creatorName"
></el-table-column>
<el-table-column
:label=
"$t('更新人')"
prop=
"updaterName"
></el-table-column>
<el-table-column
:label=
"$t('更新时间')"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
updateTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('状态')"
align=
"center"
prop=
"transportTypes"
>
<
template
v-slot=
"scope"
>
<el-switch
v-model=
"scope.row.status"
@
change=
"handleStatusChange(scope.row)"
:active-value=
"0"
:inactive-value=
"1"
></el-switch>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
...
...
@@ -297,7 +305,7 @@ export default {
}
// 添加的提交
// console.log(this.form);
createZhongPao
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
新增成功
"
);
this
.
open
=
false
;
...
...
src/views/system/user/index.vue
View file @
1ba2fc7a
This diff is collapsed.
Click to expand it.
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