切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
朱兆平
5 years ago
提交
7bdea75d08de5dfbcf3a88341a884c8d0ef77833
2 个父辈
8a5b4b4f
45e73669
Merge remote-tracking branch 'origin/master'
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
22 行增加
和
6 行删除
src/views/excel/excel.xls
src/views/nmms/ExitLoading.vue
src/views/nmms/ExitPre.vue
src/views/excel/excel.xls
0 → 100644
查看文件 @
7bdea75
不能预览此文件类型
src/views/nmms/ExitLoading.vue
查看文件 @
7bdea75
...
...
@@ -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()
})
...
...
src/views/nmms/ExitPre.vue
查看文件 @
7bdea75
...
...
@@ -23,7 +23,7 @@
<el-col :span="24">
<div class="grid-content content">预配舱单查询</div>
</el-col>
<el-col :span="2
4
">
<el-col :span="2
2
">
<div class="grid-content co">
<el-col :span="1">
<div class="grid-content"></div>
...
...
@@ -1627,6 +1627,7 @@
uploadFile (item) {
const form = new FormData()
form.append('file', item.file)
form.append("username", JSON.parse(sessionStorage.getItem('user')).username);
uploadFileExcel(form).then(res =>{
if(res.data.count >0){
Message.success(res.data.respMessage)
...
...
@@ -1635,7 +1636,7 @@
Message.error(res.data.respMessage)
}
})
}
}
,
}
}
...
...
请
注册
或
登录
后发表评论