切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
shenhailong
5 years ago
提交
172a00fd041edcdd45d8301c359de19afbd6f4d6
1 个父辈
a3b4c877
出港装载 添加回执表 用户信息
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
19 行增加
和
4 行删除
src/views/nmms/ExitLoading.vue
src/views/nmms/ExitLoading.vue
查看文件 @
172a00f
...
...
@@ -312,7 +312,7 @@
</el-table-column>
<el-table-column label="操作人" width="100">
<template slot-scope="scope">
{{scope.row.oper
user
name}}
{{scope.row.oper
system
name}}
</template>
</el-table-column>
</el-table>
...
...
@@ -465,6 +465,9 @@
contactName: undefined,
contactTel: undefined,
content: undefined,
user: {
username : JSON.parse(sessionStorage.getItem('user')).username
}
},
respModel: {
uuid: undefined,
...
...
@@ -476,7 +479,7 @@
awba: undefined,
customCode: undefined,
flightDate: undefined,
awbh: ''
awbh: ''
,
},
loadingDeleteRules: {
reason: [{required: true, message: '删除原因不能为空', trigger: 'blur'}],
...
...
@@ -618,8 +621,12 @@
},
// 更新数据
updateData() {
let _this = this;
this.$refs.loadingFormData.validate(valid => {
if (valid) {
_this.loadingModel.user= {
username : JSON.parse(sessionStorage.getItem('user')).username
}
updateMT4201(this.loadingModel).then(res => {
if (res.data.count > 0) {
this.dialogFormVisible = false
...
...
@@ -644,6 +651,9 @@
if(row.awbh === null || row.awbh === undefined){
row.awbh = ''
}
row.user = {
username : JSON.parse(sessionStorage.getItem('user')).username
}
sendCreateMt4201(row).then(res => {
if (res.data.count > 0) {
Message.success(res.data.respMessage)
...
...
@@ -669,7 +679,8 @@
awba: undefined,
customCode: undefined,
flightDate: undefined,
awbh: ''
awbh: '',
username: JSON.parse(sessionStorage.getItem('user')).username,
}
this.dialogDeleteVisible = true
this.respModel.carrier = row.carrier
...
...
@@ -783,7 +794,10 @@
loadingtime: undefined,
messageType: 'MT4201',
awbprice: undefined,
awbweight: undefined
awbweight: undefined,
user: {
username : JSON.parse(sessionStorage.getItem('user')).username,
}
}
},
// 新增出港装载 弹框
...
...
@@ -798,6 +812,7 @@
this.loadingModel.customcode = this.loadingQuery.customcode
this.dialogStatus = 'create'
this.dialogFormVisible = true
this.$nextTick(() => {
this.$refs.loadingFormData.clearValidate()
})
...
...
请
注册
或
登录
后发表评论