切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
3 years ago
提交
a0655dddddef1799dc8978547c99aca96ed4f5b1
1 个父辈
5cb0073f
转关运抵界面优化
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
17 行增加
和
11 行删除
src/views/transit/transit.vue
src/views/transit/transit.vue
查看文件 @
a0655dd
...
...
@@ -93,7 +93,9 @@
</el-input>
</el-form-item>
</el-col>
<el-col :span="6"style="margin-top: -28px">
</el-row>
<el-row style="margin-top:0">
<el-col :span="6">
<el-form-item>
<div style="display: inline-block;background-color: #6F8294;color: white;
border-top-left-radius: 4px;margin-right: -4px;padding-right: 14px;font-size: 12px;
...
...
@@ -106,7 +108,7 @@
</el-select>
</el-form-item>
</el-col>
<el-col :span="10"
style="margin-top: -28px"
>
<el-col :span="10">
<el-form-item>
<div style="display: inline-block;background-color: #6F8294;color: white;
border-top-left-radius: 4px;margin-right: -4px;padding-right: 14px;font-size: 12px;
...
...
@@ -125,7 +127,7 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="8"
style="margin-top: -28px"
>
<el-col :span="8" >
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="trnList">查 询</el-button>
</el-form-item>
...
...
@@ -277,17 +279,17 @@
<el-table-column label="操作" align="center" width="410" fixed="right">
<template slot-scope="scope">
<el-row>
<el-button type="success" size="mini" @click="editTrn(scope.$index,scope.row)">编辑</el-button>
<el-button type="warning" size="mini" :disabled="scope.row.customResponseText && scope.row.customResponseText !== undefined && scope.row.customResponseText.length>0" @click="declareTrn(scope.row)">
<el-button type="success" @click="editTrn(scope.$index,scope.row)">编辑</el-button>
<el-button type="warning" :disabled="scope.row.customResponseText && scope.row.customResponseText !== undefined && scope.row.customResponseText.length>0" @click="declareTrn(scope.row)">
申报
</el-button>
<el-button type="danger"
size="mini"
:disabled="scope.row.customResponseText && scope.row.customResponseText !== undefined && scope.row.customResponseText.length>0" @click="delTrn(scope.row)">
<el-button type="danger" :disabled="scope.row.customResponseText && scope.row.customResponseText !== undefined && scope.row.customResponseText.length>0" @click="delTrn(scope.row)">
删除
</el-button>
<el-button type="primary"
size="mini"
@click="check(scope.row)">
<el-button type="primary" @click="check(scope.row)">
回执明细
</el-button>
<el-button type="info"
size="mini"
@click="statusTrn(scope.row)">
<el-button type="info" @click="statusTrn(scope.row)">
修改状态
</el-button>
</el-row>
...
...
@@ -317,7 +319,7 @@
width="85%"
@close="trn_addDialogClosed"
>
<el-form ref="form" :inline="true" :model="form" class="demo-form-inline" label-width="1
1
0px" style="margin-top: -20px;" label-position="right" :rules="rules" >
<el-form ref="form" :inline="true" :model="form" class="demo-form-inline" label-width="1
2
0px" style="margin-top: -20px;" label-position="right" :rules="rules" >
<el-divider></el-divider>
<el-row>
<el-col :span="24">
...
...
@@ -487,7 +489,7 @@
</el-col>
<el-col :span="8">
<el-form-item label="到达卸货地时间" prop="arrivetime"
label-width="110px"
>
<el-form-item label="到达卸货地时间" prop="arrivetime">
<!-- <el-input v-model="form.arrivetime" size="mini" placeholder="" />-->
<el-date-picker
v-model="form.arrivetime"
...
...
@@ -641,7 +643,7 @@
trnmode:'2',
notes:'',
opertype:'A',
sign:'
qwer
',
sign:'',
signdate:'',
clientseqno:'',
hostid:'',
...
...
@@ -820,6 +822,9 @@
this.form.arrivetime = new Date().format('yyyyMMddHHmmss')
this.form.username = this.username
this.form.ieflag = 'E'
this.form.trnmode = '2'
this.form.trafmode= '5'
this.form.trafway = '5'
},
// 新增功能
...
...
@@ -877,6 +882,7 @@
},
// 申报
declareTrn(row) {
row.customResponseText = '已申报'
row.opertype= "C"
send(row).then((response) => {
const res = response.data
...
...
请
注册
或
登录
后发表评论