切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
xudada
4 months ago
提交
d58f079f8600c1e5385538ceae99e200a199c1c4
1 个父辈
73eb1403
申报,取消,BUG修复
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
23 行增加
和
4 行删除
src/views/airtransport/yqdeclare.vue
src/views/airtransport/yqdeclare.vue
查看文件 @
d58f079
...
...
@@ -378,7 +378,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="sendpre">确 定</el-button>
<el-button type="primary" @click="
cancle
sendpre">确 定</el-button>
</div>
</el-dialog>
</el-row>
...
...
@@ -390,7 +390,7 @@
selectBycustomcode,
selectPreList,
insertSelectivePre,
updateByPrimaryKeySelectivePre, selectReturnMsgList, canclePre
updateByPrimaryKeySelectivePre, selectReturnMsgList, canclePre
,sendPrediction
} from "../../api/transport/transport2.0";
export default {
...
...
@@ -437,7 +437,8 @@
messageid: '', // 消息ID
yqtype: 'Y', // 不知道具体含义,根据业务需求填充
costomcode:'',
aircrafttype:'1'
aircrafttype:'1',
content:''
},
tableData:[],
total:0,
...
...
@@ -532,7 +533,7 @@
this.row2=row;
},
sendpre(
){
canclesendpre(row,FunctionCode
){
this.row2.content=this.cancleForm.content;
const params = {
row: this.row2,
...
...
@@ -549,6 +550,24 @@
}
});
},
sendpre(row,FunctionCode){
//this.row2.content=this.cancleForm.content;
const params = {
row: row,
FunctionCode: FunctionCode
};
sendPrediction(params).then(res =>{
let response=res.data;
if(response.code=='200'){
this.dialogFormVisible=false;
this.selectList();
this.$message.success(response.msg)
}else{
this.$message.error(response.msg)
}
});
},
handleClose() {
this.returnVisible=false;
},
...
...
请
注册
或
登录
后发表评论