123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <!-- 修改驳船作业 -->
- <div class="shipTransport">
- <page-title>返回</page-title>
- <div class="form">
- <div class="form_box">
- <dil-form :formId="133" v-model="form1" ref="from1"></dil-form>
- </div>
- </div>
- <!-- 确定和取消 -->
- <div class="button_box">
- <el-button type="primary" @click="onClickConfirm">确认</el-button>
- <el-button @click="onClickCancel">返回</el-button>
- </div>
- </div>
- </template>
- <script>
- import PageTitle from "@/components/Page/Title";
- import { sjTime } from "@/utils/sharedJsFile";
- export default {
- components: { PageTitle },
- data(){
- return {
- form1: {},
- }
- },
- mounted() {
- this.information();
- },
- methods: {
- information() {
- //编辑驳船作业
- this.axios
- .post("/api/v1/tms/getBargeOperation/" + this.$route.params.bargeOperationId)
- .then((res) => {
- res.data.data.forEach((e) => {
- this.form1 = e;
- // console.log(e);
- // console.log(this.form1);
- // console.log(this.$route.params.loadingId);
- });
- });
- },
- handleCheckedCitiesChange(value) {
- console.log(value);
- },
- // 返回
- onClickCancel() {
- this.$router.go(-1);
- },
- currentRadioChange(row) {
- this.aaaa = row;
- },
- // 确认
- onClickConfirm() {
- let bagerShipMap = {
- bargeOperationId: this.$route.params.bargeOperationId,
- smallCapacityId: this.form1.smallCapacityId,
- bargeSmallshipLoadWeight: this.form1.bargeSmallshipLoadWeight,
- bargeRefuteDate: sjTime(
- this.form1.bargeRefuteDate
- ),
- bargeRefuteLocation: this.form1.bargeRefuteLocation,
- bargeBackDate: sjTime(
- this.form1.bargeBackDate
- ),
- bargeBackLocation: this.form1.bargeBackLocation,
- };
- console.log(bagerShipMap);
- this.axios
- .post(
- "/api/v1/tms/updateBargeOperation",
- bagerShipMap
- )
- .then((res) => {
- if (res.data.code == 200) {
- this.$message({
- type: "success",
- message: "修改成功!",
- });
- // this.$refs.table.refreshData();
- this.$router.go(-1);
- } else {
- this.$message.error("修改失败!");
- }
- this.$refs['table'].resetField();
- });
- },
- },
- };
- </script>
- <style lang="scss">
- .shipTransport{
- .form{
- display: flex;
- .form_box{
- width: 320px;
- margin-left: 35%;
- margin-top: 30px;
- margin-right: 20px;
- .el-form{
- .preview-group{
- .el-form-item{
- .el-form-item__label{
- display: inline-block;
- width: 70px !important;
- }
- .el-form-item__content{
- .el-select{
- width: 250px;
- }
- .el-input{
- width: 250px;
- }
- }
- }
- }
- }
- }
- }
- .button_box{
- margin-left: 45%;
- }
- }
- </style>
|