...
|
...
|
@@ -279,15 +279,17 @@ |
|
|
</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center" width="410" fixed="right">
|
|
|
<el-table-column label="操作" align="center" width="200" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-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="success" @click="editTrn(scope.$index,scope.row)">编  辑</el-button>
|
|
|
<el-button type="danger" :disabled="scope.row.customResponseText && scope.row.customResponseText !== undefined && scope.row.customResponseText.length>0" @click="delTrn(scope.row)">
|
|
|
删除
|
|
|
删  除
|
|
|
</el-button>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<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="info" @click="statusTrn(scope.row)">
|
|
|
修改状态
|
...
|
...
|
@@ -623,7 +625,7 @@ |
|
|
autoid:'',
|
|
|
seqno:'',
|
|
|
ieflag:'E',
|
|
|
customscode:'',
|
|
|
customscode:'4604',
|
|
|
inputopid: '',
|
|
|
inputopname:'',
|
|
|
applyname:'',
|
...
|
...
|
@@ -638,7 +640,7 @@ |
|
|
trafway:'5',
|
|
|
packno:'',
|
|
|
grosswt:'',
|
|
|
unloadcode:'',
|
|
|
unloadcode:'460043',
|
|
|
arrivetime: '',
|
|
|
contatype:'',
|
|
|
trnmode:'2',
|
...
|
...
|
@@ -823,6 +825,8 @@ |
|
|
this.form.trnmode = '2'
|
|
|
this.form.trafmode= '5'
|
|
|
this.form.trafway = '5'
|
|
|
this.form.unloadcode = '460043'
|
|
|
this.form.customscode = '4604'
|
|
|
},
|
|
|
|
|
|
// 新增功能
|
...
|
...
|
|