作者 xudada

机组人员

... ... @@ -61,7 +61,7 @@
<el-button
size="mini"
type="primary"
@click="dialogTableVisibles = true">添加机组人员</el-button>
@click="showPerson(scope.$index,scope.row)">添加机组人员</el-button>
</template>
</el-table-column>
<el-table-column
... ... @@ -245,7 +245,7 @@
</style>
<script>
import {editBill,selectBill,selectReturnMsg} from "../../api/transport";
import {addBillPerson, editBill, selectBill, selectReturnMsg} from "../../api/transport";
import loginUserInfo from "../../api/base";
export default {
data(){
... ... @@ -306,6 +306,13 @@
}
},
methods: {
showPerson(index,row){
this.dialogTableVisibles=true;
this.billperson.billsId=row.uuid;
},
submitPerson(formName){
console.log(this.billperson.billsId)
},
//查询回执列表
selectDetail(index,row){
this.gridData=[];
... ...