1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- <template>
- <view class="wrap">
- <view>
- <view style='margin-left:10px;'>任务详情</view>
- <view class="content">
- <view class="row">
- <view class="left">合同编号</view>
- <view>{{detailData.contractNo}}</view>
- </view>
- <view class="row">
- <view class="left">货名</view>
- <view>{{detailData.goodsName}}</view>
- </view>
- <view class="row">
- <view class="left">重量</view>
- <view>{{detailData.weight}}</view>
- </view>
- <view class="row">
- <view class="left">发货地址</view>
- <view>{{detailData.sendPrivate}}{{detailData.sendCity}}{{detailData.sendArea}}</view>
- </view>
- <view class="row">
- <view class="left">收货地址</view>
- <view>{{detailData.receivePrivate}}{{detailData.receiveCity}}{{detailData.receiveArea}}</view>
- </view>
- </view>
- <!-- 汽运 -->
- <view class="flex title_css">
- <view class="head_css">汽运反馈({{sendCarList? sendCarList : 0}})<image :src="carurl" class="open_css" @click="openCar">
- </image>
- </view>
- <view class="add_css">
- <view @click='add(1)' class="add" v-if="status == '执行中'">添加</view>
- </view>
- </view>
- <view class="content" v-for="(v_item,index1) in sendCar">
- <!-- 派车编号 -->
- <view class="c-row">
- <view class="title">派车编号</view>
- <view class="con-list">
- <input v-model='v_item.tranCarNo' placeholder="请输入派车编号" disabled="" name="input"></input>
- </view>
- </view>
- <!-- 车牌号 -->
- <view class="c-row">
- <view class="title">车牌号</view>
- <view class="con-list">
- <input v-model='v_item.carNo' placeholder="请输入车牌号" name="input"></input>
- </view>
- </view>
- <!-- 箱号 -->
- <view class="c-row">
- <view class="title">箱号-1</view>
- <view class="con-list">
- <input v-model='v_item.caseNo' placeholder="请输入箱号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">箱号-2</view>
- <view class="con-list">
- <input v-model='v_item.caseNoOther' placeholder="请输入箱号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <!-- 封号 -->
- <view class="c-row">
- <view class="title">封号-1</view>
- <view class="con-list">
- <input v-model='v_item.titleNo' placeholder="请输入封号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">封号-2</view>
- <view class="con-list">
- <input v-model='v_item.titleNoOther' placeholder="请输入封号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <!-- 装车净重 -->
- <view class="c-row">
- <view class="title">装车净重(吨)</view>
- <view class="con-list">
- <input v-model='v_item.loadNetWeight' placeholder="请输入净重" name="input" type="digit"></input>
- </view>
- </view>
- <!-- 装车日期 -->
- <view class="c-row">
- <view class="title">装车日期</view>
- <view @click='show=true' class="con-list">{{v_item.loadingDate?v_item.loadingDate:"请选择装车日期"}}</view>
- <u-picker v-model="show" mode="time" class="con-list" @confirm='dateChange($event,index1)' :params="params">
- </u-picker>
- </view>
- <view class="flex">
- <view class="butKey">
- <view class="del btn" @click='del(1,index1)'>删除</view>
- <view class="pass btn" @click='pass(1,index1)'>保存</view>
- </view>
- </view>
- </view>
- <view class="content" v-if="carShow" v-for="(item,index) in detailData.tranCarInfoList1">
- <!-- 派车编号 -->
- <view class="c-row">
- <view class="title">派车编号</view>
- <view class="con-list">
- <input v-model='item.tranCarNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 车牌号 -->
- <view class="c-row">
- <view class="title">车牌号</view>
- <view class="con-list">
- <input v-model='item.carNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 箱号 -->
- <view class="c-row">
- <view class="title">箱号-1</view>
- <view class="con-list">
- <input v-model='item.caseNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">箱号-2</view>
- <view class="con-list">
- <input v-model='item.caseNoOther' placeholder="暂无" name="input"></input>
- </view>
- </view>
- <!-- 封号 -->
- <view class="c-row">
- <view class="title">封号-1</view>
- <view class="con-list">
- <input v-model='item.titleNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">封号-2</view>
- <view class="con-list">
- <input v-model='item.titleNoOther' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装车净重 -->
- <view class="c-row">
- <view class="title">装车净重(吨)</view>
- <view class="con-list">
- <input v-model='item.loadNetWeight' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装车日期 -->
- <view class="c-row">
- <view class="title">装车日期</view>
- <view class="con-list">
- <input v-model='item.loadingDate' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- </view>
- <!-- 以上汽运 -->
- <!-- 火运反馈 -->
- <view class="flex title_css">
- <view class="head_css">火运反馈({{trainCarList ? trainCarList : 0}})<image :src="trainCarurl" class="open_css"
- @click="trainCar"></image>
- </view>
- <view class="add_css">
- <view @click='add(2)' class="add" v-if="status == '执行中'">添加</view>
- </view>
- </view>
- <view class="content" v-for="(item_add1,index) in huoYun">
- <!-- 车号 -->
- <view class="c-row">
- <view class="title">车号</view>
- <view class="con-list">
- <input v-model='item_add1.carNo' placeholder="请输入车号" name="input"></input>
- </view>
- </view>
- <!-- 车厢号 -->
- <view class="c-row">
- <view class="title">车厢号-1</view>
- <view class="con-list">
- <input v-model='item_add1.boxNo1' placeholder="请输入车厢号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">车厢号-2</view>
- <view class="con-list">
- <input v-model='item_add1.boxNo2' placeholder="请输入车厢号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <!-- 装车净重 -->
- <view class="c-row">
- <view class="title">装车净重(吨)</view>
- <view class="con-list">
- <input v-model='item_add1.loadNetWeight' placeholder="请输入净重" name="input" type="digit"></input>
- </view>
- </view>
- <!-- 装车日期 -->
- <view class="c-row">
- <view class="title">装车日期</view>
- <view @click='show1=true' class="con-list">{{item_add1.loadingDate?item_add1.loadingDate:"请选择装车日期"}}
- </view>
- <u-picker v-model="show1" mode="time" @confirm='dateChange1($event,index)' :params="params">
- </u-picker>
- </view>
- <view class="flex">
- <view class="butKey">
- <view class="del btn" @click='del(2,index)'>删除</view>
- <view class="pass btn" @click='pass(2,index)'>保存</view>
- </view>
- </view>
- </view>
- <view class="content" v-if="trainCarShow" v-for="(item1,index) in detailData.tranCarInfoList2">
- <!-- 车号 -->
- <view class="c-row">
- <view class="title">车号</view>
- <view class="con-list">
- <input v-model='item1.carNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 车厢号 -->
- <view class="c-row">
- <view class="title">车厢号-1</view>
- <view class="con-list">
- <input v-model='item1.boxNo1' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">车厢号-2</view>
- <view class="con-list">
- <input v-model='item1.boxNo2' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装车净重 -->
- <view class="c-row">
- <view class="title">装车净重(吨)</view>
- <view class="con-list">
- <input v-model='item1.loadNetWeight' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装车日期 -->
- <view class="c-row">
- <view class="title">装车日期</view>
- <view class="con-list">
- <input v-model='item1.loadingDate' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- </view>
- <!-- 以上火运反馈 -->
- <!-- 散船反馈 -->
- <view class="flex title_css">
- <view class="head_css">散船反馈({{shipList ? shipList : 0 }})<image :src="shipurl" class="open_css" @click="shipping">
- </image>
- </view>
- <view class="add_css">
- <view @click='add(3)' class="add" v-if="status == '执行中'">添加</view>
- </view>
- </view>
- <view class="content" v-for="(item_add3,index) in looseShip">
- <!-- 船名 -->
- <view class="c-row">
- <view class="title">船名</view>
- <view class="con-list">
- <input v-model='item_add3.shipName' placeholder="请输入船名" name="input" maxlength="20"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">航次</view>
- <view class="con-list">
- <input v-model='item_add3.shipNo' placeholder="请输入航次" name="input" maxlength="20"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船净重(吨)</view>
- <view class="con-list">
- <input v-model='item_add3.loadNetWeight' placeholder="请输入装船净重" name="input" type="digit"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船日期</view>
- <view @click='show2=true' class="con-list">{{item_add3.loadingDate?item_add3.loadingDate:"请选择装船日期"}}
- </view>
- <u-picker v-model="show2" mode="time" @confirm='dateChange2($event,index)' :params="params">
- </u-picker>
- </view>
- <view class="flex">
- <view class="butKey">
- <view class="del btn" @click='del(3,index)'>删除</view>
- <view class="pass btn" @click='pass(3,index)'>保存</view>
- </view>
- </view>
- </view>
- <view class="content" v-if="shipShow" v-for="(item2,index) in detailData.tranCarInfoList3">
- <!-- 船名 -->
- <view class="c-row">
- <view class="title">船名</view>
- <view class="con-list">
- <input v-model='item2.shipName' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">航次</view>
- <view class="con-list">
- <input v-model='item2.shipNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船净重(吨)</view>
- <view class="con-list">
- <input v-model='item2.loadNetWeight' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船日期</view>
- <view class="con-list">
- <input v-model='item2.loadingDate' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- </view>
- <!-- 以上散船反馈 -->
- <!-- 集装箱船反馈 -->
- <view class="flex title_css">
- <view class="head_css">集装箱船反馈({{containerList ? containerList : 0}})<image :src="containerUrl" class="open_css"
- @click="containerchange"></image>
- </view>
- <view class="add_css">
- <view @click='add(4)' class="add" v-if="status == '执行中'">添加</view>
- </view>
- </view>
- <view class="content" v-for="(item_add4,index) in container">
- <!-- 箱号 -->
- <view class="c-row">
- <view class="title">箱号</view>
- <view class="con-list">
- <input v-model='item_add4.caseNo' placeholder="请输入箱号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">封号</view>
- <view class="con-list">
- <input v-model='item_add4.titleNo' placeholder="请输入封号" name="input" maxlength="20" type="digit"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船净重(吨)</view>
- <view class="con-list">
- <input v-model='item_add4.loadNetWeight' placeholder="请输入装船净重" name="input" type="digit"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船日期</view>
- <view @click='show2=true' class="con-list">{{item_add4.loadingDate?item_add4.loadingDate:"请选择装船日期"}}
- </view>
- <u-picker v-model="show2" mode="time" @confirm='dateChange3($event,index)' :params="params">
- </u-picker>
- </view>
- <view class="flex">
- <view class="butKey">
- <view class="del btn" @click='del(4,index)'>删除</view>
- <view class="pass btn" @click='pass(4,index)'>保存</view>
- </view>
- </view>
- </view>
- <view class="content" v-if="containerShow" v-for="(item3,index) in detailData.tranCarInfoList4">
- <!-- 箱号 -->
- <view class="c-row">
- <view class="title">箱号</view>
- <view class="con-list">
- <input v-model='item3.caseNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <view class="c-row">
- <view class="title">封号</view>
- <view class="con-list">
- <input v-model='item3.titleNo' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船净重(吨)</view>
- <view class="con-list">
- <input v-model='item3.loadNetWeight' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- <!-- 装船日期 -->
- <view class="c-row">
- <view class="title">装船日期</view>
- <view class="con-list">
- <input v-model='item3.loadingDate' placeholder="暂无" disabled name="input"></input>
- </view>
- </view>
- </view>
- </view>
- <view style='padding:10px;' class='flex bottom-btn'>
- <!-- <u-button @click='pass' type="error" class="btn1" hover-class='none'>提交</u-button> -->
- <u-button @click='finishedgoods' type="success" class="btn2" :disabled="status != '执行中'">完货</u-button>
- </view>
- </view>
- </template>
- <script>
- import upload from '@/components/upload.vue';
- import helper from '@/common/helper.js';
- export default {
- components: {
- upload
- },
- data() {
- return {
- id: '',
- status:"",
- currentPage: 1,
- pageSize: 10,
- maxSize: 50 * 1024 * 1024,
- status: '执行中',
- params: {
- year: true,
- month: true,
- day: true,
- },
- action: this.$uploadUrl, //磅单上传地址
- detailData: {},
- show: false,
- show1: false,
- show2: false,
- val: "", //假
- carShow: false,
- carurl: "../../../static/img/authentication/up2.png",
- trainCarShow: false,
- trainCarurl: "../../../static/img/authentication/up2.png",
- shipShow: false,
- shipurl: "../../../static/img/authentication/up2.png",
- containerUrl: "../../../static/img/authentication/up2.png",
- containerShow: false,
- infoId: "",
- sendCar: [], //汽运
- huoYun: [], //火运
- looseShip: [], //散船
- container: [], //集裝箱船
- sendCarList: "",
- trainCarList: "",
- shipList: "",
- containerList: "",
- count: 0,
- }
- },
- onLoad(options) {
- this.id = options.id
- this.status = options.status
- },
- onShow() {
- this.getList()
- },
- computed: {},
- methods: {
- qiehuan(){
- this.show = !this.show
- },
- //汽运展开显示
- openCar() {
- this.carShow = !this.carShow
- if (this.carShow) {
- this.carurl = "../../../static/img/authentication/down2@2x.png"
- } else {
- this.carurl = "../../../static/img/authentication/up2.png"
- }
- },
- // 火运展开显示
- trainCar() {
- this.trainCarShow = !this.trainCarShow
- if (this.trainCarShow) {
- this.trainCarurl = "../../../static/img/authentication/down2@2x.png"
- } else {
- this.trainCarurl = "../../../static/img/authentication/up2.png"
- }
- },
- //船运展开显示
- shipping() {
- this.shipShow = !this.shipShow
- if (this.shipShow) {
- this.shipurl = "../../../static/img/authentication/down2@2x.png"
- } else {
- this.shipurl = "../../../static/img/authentication/up2.png"
- }
- },
- //集装箱船展开显示
- containerchange() {
- this.containerShow = !this.containerShow
- if (this.containerShow) {
- this.containerUrl = "../../../static/img/authentication/down2@2x.png"
- } else {
- this.containerUrl = "../../../static/img/authentication/up2.png"
- }
- },
- dateChange(e, num) {
- this.sendCar[num].loadingDate = e.year + "-" + e.month + "-" + e.day
- },
- dateChange1(e, num) {
- this.huoYun[num].loadingDate = e.year + "-" + e.month + "-" + e.day
- },
- dateChange2(e, num) {
- this.looseShip[num].loadingDate = e.year + "-" + e.month + "-" + e.day
- },
- dateChange3(e, num) {
- this.container[num].loadingDate = e.year + "-" + e.month + "-" + e.day
- },
- //完货
- finishedgoods() {
- var that = this
- uni.showModal({
- content: "完货操作后,装车信息不可修改,是否确定完货?",
- success(res) {
- if (res.confirm) {
- let complete = {}
- complete.id = that.id
- that.$api.doRequest('post', '/tranProcessInfo/api/editFeedbackStatus', complete).then(
- res => {
- console.log(res)
- if (res.data.code == 200) {
- that.sendCar.splice(index, 1)
- that.$api.msg("提交成功")
- setTimeout(() => {
- uni.navigateBack()
- }, 1000)
- } else {
- that.$api.msg(res.data.message)
- }
- })
- }
- }
- })
- },
- //添加
- add(index) {
- if (index == 1) {
- var tranNos = ""
- if (Number(this.count) < 10) {
- tranNos = "C00" + Number(this.count + 1)
- } else if (Number(this.count) < 100) {
- tranNos = "C0" + Number(this.count + 1)
- } else if (Number(this.count) < 1000) {
- tranNos = "C" + Number(this.count + 1)
- }
- this.sendCar.push({
- tranCarNo: tranNos,
- carNo: "",
- caseNo: "",
- caseNoOther: "",
- titleNo: "",
- titleNoOther: "",
- loadNetWeight: "",
- loadingDate: "",
- })
- this.count++
- } else if (index == 2) {
- this.huoYun.push({
- carNo: "",
- boxNo1: "",
- boxNo2: "",
- loadNetWeight: "",
- loadingDate: "",
- })
- } else if (index == 3) {
- this.looseShip.push({
- shipName: "",
- shipNo: "",
- loadNetWeight: "",
- loadingDate: "",
- })
- } else if (index == 4) {
- this.container.push({
- caseNo: "",
- titleNo: "",
- loadNetWeight: "",
- loadingDate: "",
- })
- }
- },
- // 删除
- del(num, index) {
- var that = this
- uni.showModal({
- content: "确定删除反馈信息?",
- success(res) {
- if (res.confirm) {
- if (num == 1) {
- that.sendCar.splice(index, 1)
- if (that.sendCarList) {
- that.count = Number(that.sendCarList)
- } else {
- that.count = 0
- }
- for (var i = 0; i < that.sendCar.length; i++) {
- if (that.count < 10) {
- that.sendCar[i].tranCarNo = "C00" + (that.count+1)
- } else if (that.count < 100) {
- that.sendCar[i].tranCarNo = "C0" + that.count
- } else if (that.count < 1000) {
- that.sendCar[i].tranCarNo = "C" + that.count
- }
- that.count++
- }
- } else if (num == 2) {
- that.huoYun.splice(index, 1)
- } else if (num == 3) {
- that.loadingDate.splice(index, 1)
- } else if (num == 4) {
- that.container.splice(index, 1)
- }
- }
- }
- })
- },
- //保存
- pass(num, index) {
- var that = this
- let _pro = {}
- _pro.id = that.id
- _pro.infoId = that.detailData.infoId
- _pro.contractNo = that.detailData.contractNo
- if (num == 1) {
- if(!that.sendCar[index].carNo){
- that.$api.msg("车牌号不能为空!")
- return
- }
- if(that.sendCar[index].carNo.length != 7){
- that.$api.msg("车牌号输入有误!")
- return
- }
- if(!that.sendCar[index].loadNetWeight){
- that.$api.msg("装车净重不能为空!")
- return
- }
- if(that.sendCar[index].loadNetWeight > 200 || that.sendCar[index].loadNetWeight < 0){
- that.$api.msg("装车净重不能超过200吨!")
- return
- }
- if(!that.sendCar[index].loadingDate){
- that.$api.msg("装车日期不能为空!")
- return
- }
- uni.showModal({
- content: "确定保存反馈信息?",
- success(res) {
- if (res.confirm) {
- _pro.tranCarInfoList1 = [that.sendCar[index]]
- _pro.threeTranType = "汽运"
- that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
- if (res.data.code == 200) {
- that.sendCar.splice(index, 1)
- that.$api.msg("保存成功")
- that.getList()
- } else {
- that.$api.msg(res.data.message)
- }
- })
- }
- }
- })
- } else if (num == 2) {
- if(!that.huoYun[index].carNo){
- that.$api.msg("车号不能为空!")
- return
- }
- if(!that.huoYun[index].boxNo1){
- that.$api.msg("车厢号不能为空!")
- return
- }
- if(!that.huoYun[index].boxNo2){
- that.$api.msg("车厢号不能为空!")
- return
- }
- if(!that.huoYun[index].loadNetWeight){
- that.$api.msg("装车净重不能为空!")
- return
- }
- if(that.huoYun[index].loadNetWeight > 200){
- that.$api.msg("装车净重不能超过200吨!")
- return
- }
- if(!that.huoYun[index].loadingDate){
- that.$api.msg("装车日期不能为空!")
- return
- }
- uni.showModal({
- content: "确定保存反馈信息?",
- success(res) {
- if (res.confirm) {
- that.huoYun[index].boxNo = "" + that.huoYun[index].boxNo1 + "," + that.huoYun[index].boxNo2
- _pro.tranCarInfoList2 = [that.huoYun[index]]
- _pro.threeTranType = "火运"
- that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
- if (res.data.code == 200) {
- that.huoYun.splice(index, 1)
- that.$api.msg("保存成功")
- that.getList()
- } else {
- that.$api.msg(res.data.message)
- }
- })
- }
- }
- })
- } else if (num == 3) {
- if(!that.looseShip[index].shipName){
- that.$api.msg("船名不能为空!")
- return
- }
- if(!that.looseShip[index].shipNo){
- that.$api.msg("船次不能为空!")
- return
- }
- if(!that.looseShip[index].loadNetWeight || that.looseShip[index].loadNetWeight == 0 ){
- that.$api.msg("装船净重不能为空!")
- return
- }
- if(that.looseShip[index].loadNetWeight > 50000 ){
- that.$api.msg("装船净重不能超过50000吨!")
- return
- }
- if(!that.looseShip[index].loadingDate){
- that.$api.msg("装船日期不能为空!")
- return
- }
- uni.showModal({
- content: "确定保存反馈信息?",
- success(res) {
- if (res.confirm) {
- _pro.tranCarInfoList3 = [that.looseShip[index]]
- _pro.threeTranType = "散船"
- that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
- if (res.data.code == 200) {
- that.looseShip.splice(index, 1)
- that.$api.msg("保存成功")
- that.getList()
- } else {
- that.$api.msg(res.data.message)
- }
- })
- }
- }
- })
- } else if (num == 4) {
- if(!that.container[index].caseNo){
- that.$api.msg("箱号不能为空!")
- return
- }
- if(!that.container[index].titleNo){
- that.$api.msg("封号不能为空!")
- return
- }
- if(!that.container[index].loadNetWeight || that.container[index].loadNetWeight == 0){
- that.$api.msg("装船净重不能为空!")
- return
- }
- if(that.container[index].loadNetWeight > 100 ){
- that.$api.msg("装船净重不能超过100吨!")
- return
- }
- if(!that.container[index].loadingDate){
- that.$api.msg("装船日期不能为空!")
- return
- }
- uni.showModal({
- content: "确定保存反馈信息?",
- success(res) {
- if (res.confirm) {
- _pro.tranCarInfoList4 = [that.container[index]]
- _pro.threeTranType = "集装箱船"
- that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
- if (res.data.code == 200) {
- that.container.splice(index, 1)
- that.$api.msg("保存成功")
- that.getList()
- } else {
- that.$api.msg(res.data.message)
- }
- })
- }
- }
- })
- }
- },
- getList() {
- this.$api.doRequest('get', '/tranProcessInfo/getThreeTranProcess', {
- id: this.id
- }).then(res => {
- if (res.data.code == 200) {
- this.detailData = res.data.data
- if(this.detailData.tranCarInfoList1){
- this.sendCarList = this.detailData.tranCarInfoList1.length
- this.count = this.detailData.tranCarInfoList1.length
- }
- if(this.detailData.tranCarInfoList2){
- this.trainCarList = this.detailData.tranCarInfoList2.length
- for(var i = 0 ; i < this.detailData.tranCarInfoList2.length; i++){
- this.detailData.tranCarInfoList2[i].boxNo1=this.detailData.tranCarInfoList2[i].boxNo.split(",")[0]
- this.detailData.tranCarInfoList2[i].boxNo2=this.detailData.tranCarInfoList2[i].boxNo.split(",")[1]
- }
- }
- if(this.detailData.tranCarInfoList3){this.shipList = this.detailData.tranCarInfoList3.length}
- if(this.detailData.tranCarInfoList4){this.containerList = this.detailData.tranCarInfoList4.length}
- }
- })
- },
- filterFileType(index, lists) {
- if (lists[index].fileType != 'jpg' && lists[index].fileType != 'png' && lists[index].fileType != 'gif') {
- lists.splice(index, 1);
- // 当前文件不支持
- uni.showModal({
- title: '暂不支持当前图片类型',
- showCancel: false
- });
- } else {
- this.isAdd = false;
- }
- },
- }
- }
- </script>
- <style scoped lang="scss">
- uni-page-body {
- overflow: hidden;
- }
- .content {
- margin: 10px 0;
- }
- .wrap {
- margin: 10rpx;
- padding: 20rpx 20rpx 300rpx 20rpx;
- .top {
- display: flex;
- margin-bottom: 20rpx;
- .top-left {
- margin-right: 20rpx;
- }
- }
- }
- .bottom-btn {
- width: 100%;
- position: fixed;
- bottom: 0;
- display: flex;
- z-index: 2;
- left: 0;
- background-color: #f8f8f8;
- flex-direction: column;
- .btn1,
- .btn2 {
- width: 100%;
- margin-bottom: 26rpx;
- border-radius: 90rpx;
- }
- .btn1 {
- background: white;
- color: #00C265;
- }
- }
- .content,
- .content1,
- .content2 {
- border-radius: 20rpx;
- background: white;
- padding: 20rpx;
- .title {
- font-size: 28rpx;
- // font-weight: 600;
- color: #333333;
- }
- .row {
- display: flex;
- justify-content: space-between;
- // border-bottom: 1px solid #EEEEEE;
- padding: 20rpx 0;
- .right,
- input {
- font-size: 28rpx;
- color: #333333;
- }
- }
- .row-bottom {
- // border: 0;
- .right-bottom {
- width: 280rpx;
- text-align: right;
- }
- }
- }
- .content1 {
- margin-top: 20rpx;
- }
- .content2 {
- margin-top: 10px;
- // display: flex;
- align-items: center;
- .left {
- margin-right: 20px;
- }
- }
- .edit-btn {
- background: #22C572;
- width: 100rpx;
- height: 50rpx;
- margin: 0;
- color: white;
- }
- .has-btn {
- align-items: center;
- }
- .shade {
- background: #000;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 10000;
- }
- .pound_list {
- width: 452rpx;
- display: flex;
- justify-content: flex-end;
- text-align: right;
- }
- .c-row {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- padding: 10rpx;
- position: relative;
- }
- .con-list {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- color: #303133;
- line-height: 40rpx;
- text-align: right;
- padding-right: 20rpx;
- }
- .add_css {
- width: 50%;
- display: flex;
- justify-content: flex-end;
- .add {
- padding: 10rpx 40rpx;
- background-color: #5ac725;
- border-radius: 40rpx;
- color: #FFFFFF;
- line-height: 46rpx;
- }
- }
- .butKey {
- display: flex;
- margin: 0 auto;
- .del {
- background-color: #ff0808;
- }
- .btn {
- padding: 10rpx 60rpx;
- border-radius: 40rpx;
- color: #FFFFFF;
- line-height: 46rpx;
- margin: 0 20rpx;
- }
- .pass {
- background-color: #5ac725;
- }
- }
- .open_css {
- width: 36rpx;
- height: 20rpx;
- // top: 4rpx;
- }
- .title_css {
- margin-bottom: 20rpx;
- .head_css {
- margin-left: 20rpx;
- width: 50%;
- line-height: 40rpx;
- margin-bottom: 30rpx;
- }
- }
- </style>
|