作者 xudada

机组人员

@@ -61,7 +61,7 @@ @@ -61,7 +61,7 @@
61 <el-button 61 <el-button
62 size="mini" 62 size="mini"
63 type="primary" 63 type="primary"
64 - @click="dialogTableVisibles = true">添加机组人员</el-button> 64 + @click="showPerson(scope.$index,scope.row)">添加机组人员</el-button>
65 </template> 65 </template>
66 </el-table-column> 66 </el-table-column>
67 <el-table-column 67 <el-table-column
@@ -245,7 +245,7 @@ @@ -245,7 +245,7 @@
245 245
246 </style> 246 </style>
247 <script> 247 <script>
248 - import {editBill,selectBill,selectReturnMsg} from "../../api/transport"; 248 + import {addBillPerson, editBill, selectBill, selectReturnMsg} from "../../api/transport";
249 import loginUserInfo from "../../api/base"; 249 import loginUserInfo from "../../api/base";
250 export default { 250 export default {
251 data(){ 251 data(){
@@ -306,6 +306,13 @@ @@ -306,6 +306,13 @@
306 } 306 }
307 }, 307 },
308 methods: { 308 methods: {
  309 + showPerson(index,row){
  310 + this.dialogTableVisibles=true;
  311 + this.billperson.billsId=row.uuid;
  312 + },
  313 + submitPerson(formName){
  314 + console.log(this.billperson.billsId)
  315 + },
309 //查询回执列表 316 //查询回执列表
310 selectDetail(index,row){ 317 selectDetail(index,row){
311 this.gridData=[]; 318 this.gridData=[];