1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411 |
- // 船次管理
- <template>
- <div class="container">
- <el-row>
- <el-col :span="20">
- <h2 class="bg-left title">船次管理</h2>
- </el-col>
- <el-col :span="4" class="bg-right">
- <el-button class="bg-bottom" type="primary" size="small" @click="revert()">
- <img width="6" height="10" style="vertical-align: bottom; margin-right: 3px"
- src="../../../public/img/lujing.png" alt />返回
- </el-button>
- </el-col>
- </el-row>
- <div class="center">
- <el-form ref="deptBudgetList" :model="deptBudgetList" :rules="rules" class="position" label-width="110px">
- <div class="basicInformation">
- <div class="small-title" style="font-size: 16px">任务详情</div>
- <el-row>
- <el-col :span="8">
- <el-form-item label="任务编号" :span="4" prop="processNo">
- <el-input type="text" class="row-item" v-model="deptBudgetList.processNo" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="货名" prop="goodsName">
- <el-input type="text" class="row-item" v-model="deptBudgetList.goodsName" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="重量(吨)" prop="weight">
- <el-input type="text" class="row-item" v-model="deptBudgetList.weight" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="发货地址" prop="sendDetailedAddress">
- <el-input type="text" class="row-item" v-model="fhaddress" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="发货人" prop="sender">
- <el-input type="text" class="row-item" v-model="deptBudgetList.sender" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="发货人电话" prop="senderPhone">
- <el-input type="text" class="row-item" v-model="deptBudgetList.senderPhone" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="收货地址" prop="receiveDetailedAddress">
- <el-input type="text" class="row-item" v-model="shaddress" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="收货人" prop="receiver">
- <el-input type="text" class="row-item" v-model="deptBudgetList.receiver" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="收货人电话" prop="receiverPhone">
- <el-input type="text" class="row-item" v-model="deptBudgetList.receiverPhone" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="发货日期" prop="deliveryDateStart">
- <el-input type="text" class="row-item" v-model="deptBudgetList.deliveryDateStart" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="最晚到货日期" prop="deliveryDateEnd">
- <el-input type="text" class="row-item" v-model="deptBudgetList.deliveryDateEnd" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="合同编号" prop="contractNo">
- <el-input type="text" class="row-item" v-model="deptBudgetList.contractNo" disabled></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <div class="small-title" style="font-size: 16px">联络员及航次</div>
- <el-row class="myTest">
- <!--当前运输总价-->
- <el-form-item label="当前运输总价(元/吨):" prop="tranPrice" label-width="150px" class="input-item-margin">
- <el-input v-model="deptBudgetList.tranPrice" maxlength="70" disabled />
- </el-form-item>
- <!--审核中的运输总价-->
- <el-form-item label="审核中的运输总价(元/吨):" prop="tranPriceIng" label-width="180px" class="input-item-margin">
- <el-input v-if="deptBudgetList.priceStatus=='审核中'" :disabled="readonly"
- v-model="deptBudgetList.tranPriceIng" maxlength="70" />
- <el-input v-else v-model="deptBudgetList.tranPriceIng" maxlength="70" />
- </el-form-item>
- <div class="input-item-margin">
- <el-button v-if="deptBudgetList.priceStatus=='审核中'" type="primary"
- v-hasPermission="`tranManager.transportationInfo.ship`" size="small" @click="examine()">审核中</el-button>
- <el-button v-else type="primary" @click="priceSubmit()">提交</el-button>
- </div>
- </el-row>
- <div class="content3" v-for="(item, index) in deptBudgetList.tranCarInfoList" :key="index">
- <div class="content3-item1" v-show="index==0">
- <el-col :span="8">
- <el-form-item label="姓名" prop="driver">
- <el-select class="row-item" v-if="item.id != null" :disabled="readonly" v-model="item.driver"
- placeholder="请选择姓名" filterable clearable @change="selectstaff" size="small">
- <el-option v-for="item in options" :key="item.value" :label="item.staffName"
- :value="item.staffName" />
- </el-select>
- <el-select class="row-item" v-else v-model="item.driver" placeholder="请选择姓名" filterable clearable
- @change="selectstaff" size="small">
- <el-option v-for="item in options" :key="item.value" :label="item.staffName"
- :value="item.staffName" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="电话" prop="driverPhone" class="">
- <el-input v-if="item.id != null" :disabled="readonly" :readonly="true" v-model="item.driverPhone"
- placeholder="请输入电话" maxlength="20" size="small" class="" />
- <el-input v-else :readonly="true" v-model="item.driverPhone" placeholder="请输入电话" maxlength="20"
- size="small" class="" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="发船日期" prop="sendDateStart" class="">
- <el-date-picker v-if="item.id != null" :disabled="readonly" v-model="item.sendDateStart" type="date"
- placeholder="请选择发船日期" value-format="yyyy-MM-dd" class="small" />
- <el-date-picker v-else v-model="item.sendDateStart" type="date" placeholder="请选择发船日期"
- value-format="yyyy-MM-dd" class="" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="预计到港日期" prop="receiveDateEnd" class="">
- <el-date-picker v-if="item.id != null" :disabled="readonly" v-model="item.receiveDateEnd" type="date"
- placeholder="请选择发货日期" value-format="yyyy-MM-dd" class="" />
- <el-date-picker v-else v-model="item.receiveDateEnd" type="date" placeholder="请选择发货日期"
- value-format="yyyy-MM-dd" class="" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="航次" prop="shipNo" class="">
- <el-input v-model="item.shipNo" placeholder="请输入航次" maxlength="100" size="small" class=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="船名" prop="shipName" class>
- <el-input v-model="item.shipName" placeholder="请输入船名" maxlength="100" size="small" class="">
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="类型" prop="shipType" class="">
- <el-select class="row-item" v-model="item.shipType" placeholder="请输入" v-if="item.id != null"
- :disabled="readonly">
- <el-option v-for="items in shipType" :key="items.constKey" :label="items.constValue"
- :value="items.constValue" />
- </el-select>
- <el-select class="row-item" v-model="item.shipType" placeholder="请输入" v-else>
- <el-option v-for="items in shipType" :key="items.constKey" :label="items.constValue"
- :value="items.constValue" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="数量" prop="boxNumber" class="" v-show="item.shipType == '集装箱'">
- <el-input v-if="item.id != null" :disabled="readonly" v-model="item.boxNumber" placeholder="请输入数量"
- class=""></el-input>
- <el-input v-else v-model="item.boxNumber" placeholder="请输入数量" class=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="仓位号" prop="binNumber" v-show="item.shipType == '散船'" class="biao6">
- <el-input v-if="item.id != null" :disabled="readonly" v-model="item.binNumber" placeholder="请输入仓位号"
- maxlength="100" size="small"></el-input>
- <el-input v-else v-model="item.binNumber" placeholder="请输入仓位号" maxlength="100" size="small">
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="重量(吨)" prop="positionWeight" v-show="item.shipType == '散船'" class="biao7">
- <el-input v-if="item.id != null" :disabled="readonly" v-model="item.positionWeight"
- placeholder="请输入重量" maxlength="100" size="small" class=""></el-input>
- <el-input v-else v-model="item.positionWeight" placeholder="请输入重量" maxlength="100" size="small"
- class=""></el-input>
- </el-form-item>
- </el-col>
- </div>
- <div class="content4" v-show="index!=0">
- <el-form-item label="仓位号" prop="binNumber" v-show="item.shipType == '散船'" class="">
- <el-input v-if="item.id != null" :disabled="readonly" v-model="item.binNumber" placeholder="请输入仓位号"
- maxlength="100"></el-input>
- <el-input v-else v-model="item.binNumber" placeholder="请输入仓位号" maxlength="100"></el-input>
- </el-form-item>
- <el-form-item label="重量(吨)" prop="positionWeight" v-show="item.shipType == '散船'" class="item">
- <el-input v-if="item.id != null" :disabled="readonly" v-model="item.positionWeight" placeholder="请输入重量"
- maxlength="100"></el-input>
- <el-input v-else v-model="item.positionWeight" placeholder="请输入重量" maxlength="100"></el-input>
- </el-form-item>
- <span v-if="(item.status == '未装车'&& item.shipType == '散船') || item.status == null" width="22" height="22"
- class="del" @click="del(index, item)" src="../../../public/img/del.png" alt="">×</span>
- </div>
- </div>
- <div style="text-align: right; color: #8890b1; font-size: 16px; margin-right: -40%"
- v-show="deptBudgetList.tranCarInfoList[0].shipType == '散船'">
- 共{{ total }}/{{ deptBudgetList.weight }}
- </div>
- <el-button class="add bg-bottom" type="primary" size="small" @click="add"
- v-show="deptBudgetList.tranCarInfoList[0].shipType == '散船'">
- <!-- <img width="22" height="22" src="../../../public/img/add.png" alt /> -->
- <div class="spans">添加仓位</div>
- </el-button>
- </div>
- </el-form>
- <div style="text-align: right; padding: 10px">
- <el-button class="bg-bottom-up" type="primary" size="small" @click="submit()">提交</el-button>
- </div>
- </div>
- </div>
- </template>
- <script>
- import {
- shippingLook,
- packList,
- dispatchCat,
- delhaulagestage,
- setUpTranPrice
- } from '@/model/transport/index'
- import {
- getstaff
- } from '@/model/warehouse/index'
- import Pagination from '@/components/Pagination'
- import WsUpload from '@/components/WsUpload'
- import {
- dayjs
- } from 'base-core-lib'
- export default {
- name: 'viewSpareMoney',
- components: {
- WsUpload,
- Pagination,
- },
- watch: {
- vesselId(val) {
- this.getList()
- },
- isShow(val) {
- this.showType = val
- },
- },
- data() {
- return {
- fhaddress: '',
- shaddress: '',
- //弹出框
- dialogViewSpareMoney: false,
- dialogApproveFormVisible: false,
- // 船舶类型
- monetaryKey: null,
- // 表格显示数据
- tableDate: [],
- // 是否显示
- showType: true,
- // 年
- year: '',
- item: [],
- shipType: [],
- tranType: 3,
- deptBudgetTotal: 0,
- currentPage: 1,
- pageSize: 10,
- searchType: 1,
- searchKeyWord: '',
- contractType: 2,
- startDate: null,
- endDate: null,
- goodnameList: {},
- // 提交类型
- submitType: true,
- storageType: [],
- readonly: true,
- appendixIdsAdd: '',
- uploadSuccess: {},
- onChange: {},
- selectedOptions: [],
- options: [],
- tranCarInfoList: {},
- staffList: [],
- gradeList: [],
- rules: {
- netWeight: [{
- required: true,
- type: 'number',
- message: '请输入活动名称',
- trigger: 'blur',
- }, ],
- },
- arr: [],
- freightspace: [
- // {
- // impurity:'',
- // },
- ],
- size: 10,
- compId: sessionStorage.getItem('el-pf_compId'),
- deptCircularPage: {},
- packtypeList: {},
- date: {
- year: dayjs().format('YYYY'),
- month: dayjs().format('MM'),
- },
- contractList: [],
- deptBudgetList: {
- warehouseInOutDetail: {},
- },
- historyList: [],
- pickerBeginDateBefore: {
- disabledDate: (time) => {
- return time.getTime() > Date.now()
- },
- },
- accessoryTFs: false,
- }
- },
- mounted() {
- this.getList()
- },
- activated() {
- this.loaddata()
- this.getList()
- },
- computed: {
- totalStorage: function() {
- var maxStorage = 0
- for (var i = 0; i < this.freightspace.length; i++) {
- maxStorage += Number(this.freightspace[i].maxStorage)
- }
- return maxStorage
- },
- total: function() {
- if (this.deptBudgetList.tranCarInfoList.length > 0) {
- var maxStorage = 0
- for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
- maxStorage += Number(
- this.deptBudgetList.tranCarInfoList[i].positionWeight
- )
- }
- return maxStorage
- }
- },
- },
- methods: {
- getList() {
- getstaff({
- compId: sessionStorage.getItem('el-pf_compId')
- })
- .toPromise()
- .then((response) => {
- this.options = response
- this.staffList = response
- })
- //类型
- packList({
- constId: 'TRAN4'
- })
- .toPromise()
- .then((response) => {
- this.shipType = response
- })
- },
- dataFilter(val) {
- this.deptBudgetList.personCharge = val
- if (val) {
- console.log(val)
- this.options = this.staffList.filter((item) => {
- if (
- !!~item.staffName.indexOf(val) ||
- !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
- ) {
- return true
- }
- })
- } else {
- this.options = this.staffList
- }
- },
- selectstaff(e) {
- for (var i = 0; i < this.staffList.length; i++) {
- if (this.staffList[i].staffName == e) {
- this.deptBudgetList.driverPhone = this.staffList[i].staffMobilePhone
- this.deptBudgetList.tranCarInfoList[0].driverPhone =
- this.staffList[i].staffMobilePhone
- this.deptBudgetList.personChargeKey = this.staffList[i].staffId
- }
- }
- },
- loaddata() {
- shippingLook({
- id: this.$route.query.id
- })
- .toPromise()
- .then((response) => {
- this.deptBudgetList = response
- this.fhaddress = response.sendPrivate + response.sendCity + response.sendArea + response
- .sendDetailedAddress
- this.shaddress = response.receivePrivate + response.receiveCity + response.receiveArea + response
- .receiveDetailedAddress
- if (response.tranCarInfoList.length > 0) {
- if (response.tranCarInfoList[0].shipType == '集装箱') {
- this.deptBudgetList.tranCarInfoList = [this.deptBudgetList.tranCarInfoList[0]]
- }
- // for (
- // var i = 0;
- // i < this.deptBudgetList.tranCarInfoList.length;
- // i++
- // ) {
- // var num = this.deptBudgetList.tranCarInfoList[
- // i
- // ].positionWeight.split(',')
- // for (var j = 0; j < num.length; j++) {
- // var num2 = num[j].split('/')
- // this.freightspace.push({
- // impurity: num2[i],
- // positionWeight: num2[num2.length - 1]
- // })
- // }
- // }
- } else {
- this.deptBudgetList.tranCarInfoList = [{
- driver: '',
- driverPhone: '',
- sendDateStart: '',
- receiveDateEnd: '',
- shipNo: '',
- shipName: '',
- shipType: '',
- boxNumber: '',
- positionWeight: '',
- binNumber: '',
- tranType: '3',
- }, ]
- }
- })
- },
- //返回按钮
- revert() {
- this.freightspace = []
- this.$router.go(-1)
- },
- del(index, row) {
- if (row.status == null) {
- if (this.deptBudgetList.tranCarInfoList.length > 1) {
- this.deptBudgetList.tranCarInfoList.splice(index, 1)
- }
- } else {
- this.$confirm('船次信息删除后不可恢复,是否确定删除?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(() => {
- delhaulagestage({
- id: row.id
- })
- .toPromise()
- .then((response) => {
- this.$message.success('删除成功')
- if (this.deptBudgetList.tranCarInfoList.length > 1) {
- this.deptBudgetList.tranCarInfoList.splice(index, 1)
- }
- })
- })
- }
- },
- add() {
- if (!this.deptBudgetList.tranPrice) {
- this.$message({
- message: '请设置运输总价!',
- type: 'warning',
- })
- } else {
- this.deptBudgetList.tranCarInfoList.push({
- driver: this.deptBudgetList.tranCarInfoList[0].driver,
- driverPhone: this.deptBudgetList.tranCarInfoList[0].driverPhone,
- sendDateStart: this.deptBudgetList.tranCarInfoList[0].sendDateStart,
- receiveDateEnd: this.deptBudgetList.tranCarInfoList[0].receiveDateEnd,
- shipNo: this.deptBudgetList.tranCarInfoList[0].shipNo,
- shipName: this.deptBudgetList.tranCarInfoList[0].shipName,
- shipType: this.deptBudgetList.tranCarInfoList[0].shipType,
- binNumber: '',
- positionWeight: '',
- tranType: '3',
- })
- }
- },
- selectdriver() {},
- handleChange(value) {
- this.selectedOptions = value
- },
- returnsales() {
- this.deptBudgetList = {}
- this.freightspace = []
- this.selectedOptions = ''
- this.$router.push({
- path: 'tranManagementShipping'
- })
- },
- //审核
- examine() {
- this.$prompt('运输单价审核', {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- }).then(({
- value
- }) => {
- var tranProcessInfo = {}
- tranProcessInfo.reviewer = sessionStorage.getItem('el-pf_roleName') +
- sessionStorage.getItem('el-pf_staffName')
- tranProcessInfo.id = this.deptBudgetList.id
- tranProcessInfo.flag = "2"
- tranProcessInfo.tranPriceIng = value
- tranProcessInfo.tranTypeKey = 3
- setUpTranPrice(tranProcessInfo)
- .toPromise()
- .then((response) => {
- this.$message.success('审核成功')
- this.getList()
- });
- }).catch(() => {
- this.$message.warning(
- '取消审核'
- );
- });
- },
- priceSubmit() {
- this.$confirm(`运输单价将发送给决策人审核,确定提交?`, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- })
- .then(() => {
- var tranProcessInfo = {}
- tranProcessInfo.id = this.deptBudgetList.id
- tranProcessInfo.flag = "1"
- tranProcessInfo.tranPriceIng = this.deptBudgetList.tranPriceIng
- tranProcessInfo.tranTypeKey = 3
- setUpTranPrice(tranProcessInfo)
- .toPromise()
- .then((response) => {
- this.$message.success('提交成功')
- this.loaddata()
- })
- })
- .catch(() => {
- return false
- })
- },
- //提交按钮
- submit() {
- if (!this.deptBudgetList.tranPrice) {
- this.$message({
- message: '请设置运输总价!',
- type: 'warning',
- })
- } else {
- for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
- if (!this.deptBudgetList.tranCarInfoList[i].driver) {
- this.$message({
- message: '名字不为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].driverPhone) {
- this.$message({
- message: '电话号不为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].sendDateStart) {
- this.$message({
- message: '发船时间不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].receiveDateEnd) {
- this.$message({
- message: '预计到港时间不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].shipName) {
- this.$message({
- message: '船名不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].shipNo) {
- this.$message({
- message: '航次不能为空',
- type: 'warning',
- })
- return
- }
- if (this.deptBudgetList.tranCarInfoList[i].shipType == '集装箱') {
- if (!this.deptBudgetList.tranCarInfoList[i].boxNumber) {
- this.$message({
- message: '数量不能为空',
- type: 'warning',
- })
- return
- }
- }
- if (!this.deptBudgetList.tranCarInfoList[i].shipType) {
- this.$message({
- message: '类型不能为空',
- type: 'warning',
- })
- return
- }
- // console.log(this.freightspace,"仓位号")
- if (this.deptBudgetList.tranCarInfoList[i].shipType == '散船') {
- if (!this.deptBudgetList.tranCarInfoList[i].binNumber) {
- this.$message({
- message: '仓位号不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.deptBudgetList.tranCarInfoList[i].positionWeight) {
- this.$message({
- message: '重量不能为空',
- type: 'warning',
- })
- return
- }
- }
- if (
- new Date(
- this.deptBudgetList.tranCarInfoList[0].sendDateStart
- ).getTime() >
- new Date(
- this.deptBudgetList.tranCarInfoList[0].receiveDateEnd
- ).getTime()
- ) {
- this.$message({
- message: '发船时间不能大于最晚到到港时间!',
- type: 'warning',
- })
- return
- }
- }
- this.$confirm(`提交成功后,任务将下发给相关人员,是否确定提交?`, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- })
- .then(() => {
- this.$refs.deptBudgetList.validate((valid) => {
- if (valid) {
- this.deptBudgetList.totalStorage = this.totalStorage
- var tranCarInfo = {}
- tranCarInfo.id = this.deptBudgetList.id
- tranCarInfo.infoId = this.deptBudgetList.infoId
- tranCarInfo.tranCarInfoList = this.deptBudgetList.tranCarInfoList
- dispatchCat(tranCarInfo)
- .toPromise()
- .then((response) => {
- this.$message.success('提交成功')
- this.deptBudgetList = {}
- this.freightspace = {}
- this.selectedOptions = ''
- this.$router.go(-1)
- })
- } else {
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- return false
- }
- })
- })
- .catch(() => {
- return false
- })
- }
- },
- handleClose() {
- this.accessoryTFs = false
- },
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`)
- this.pageSize = val
- this.getList()
- },
- handleCurrentChange(val) {
- this.currentPage = val
- console.log(`当前页: ${val}`)
- this.getList()
- },
- selecttaskType(e) {
- for (var i = 0; i < this.taskTypeList.length; i++) {
- if (this.taskTypeList[i].value == e) {
- this.searchType = this.taskTypeList[i].type
- }
- }
- },
- // approve() {},
- // listQuery() {}
- },
- }
- </script>
- <style lang="scss" scoped>
- /deep/.el-form-item--small.el-form-item {
- margin-bottom: 0px
- }
- .input-item-margin {
- margin-right: 20px;
- }
- .row-item {
- width: 100%;
- }
- .bg-right {
- text-align: right;
- padding: 16px 20px;
- }
- .center {
- margin: 0 auto;
- width: 70%;
- }
- //蓝标
- .small-title {
- position: relative;
- padding: 10px;
- font-weight: 600;
- margin-left: 27px;
- }
- //小标题文字
- .small-title::before {
- position: absolute;
- content: '';
- display: block;
- background: #5473e8;
- width: 4px;
- height: 14px;
- left: 0px;
- top: 16px;
- padding: 4px 2px;
- }
- .bg-left {
- padding-left: 30px;
- }
- .title::before {
- content: '';
- display: inline-block;
- width: 5px;
- height: 30px;
- background: #5473e8;
- position: absolute;
- left: 0;
- }
- .myTest {
- display: flex;
- margin: 20px 0;
- // background: green;
- padding-left: 20px;
- align-items: center;
- width: 800px;
- }
- .myTest .el-form-item {
- width: 33.333%;
- }
- .content3 {
- width: calc(100% + 20px);
- .content3-item1 {
- background: #F5F7FA;
- border: 1px solid #E4E7ED;
- border-radius: 5px;
- height: 140px;
- width: 100%;
- padding: 10px 20px 0 0;
- }
- }
- .content4 {
- background: #F5F7FA;
- display: flex;
- margin: 10px 0;
- border: 1px solid #E4E7ED;
- border-radius: 5px;
- position: relative;
- }
- .del {
- position: absolute;
- right: 10px;
- top: 6px;
- cursor: pointer;
- font-size: 20px;
- width: 16px;
- height: 10px;
- }
- // .position {
- // position: relative;
- // }
- // .el-button--primary {
- // background-color: #5878e8;
- // border-color: #5878e8;
- // }
- // .el-col {
- // background: #f6f7fc;
- // }
- // //表格文字
- // /deep/.el-info-table .el-form-item .el-form-item__label {
- // text-align: left;
- // font-size: 14px;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // }
- // .position .zaizhong {
- // width: 16%;
- // }
- // .bot {
- // width: 30%;
- // }
- // //去边框
- // /deep/.el-form-item {
- // border-right: 0px;
- // border-bottom: 0px;
- // }
- // /deep/.el-info-table {
- // border-left: 0px;
- // border-top: 0px;
- // }
- // .el-info-table .el-form-item .el-form-item__content {
- // border-right: 0px;
- // border-bottom: 0px;
- // border-left: 0px;
- // border-top: 0px;
- // }
- // /deep/.el-info-table .el-form-item {
- // border-right: 0px;
- // border-bottom: 0px;
- // border-left: 0px;
- // border-top: 0px;
- // }
- // /deep/.el-info-table .el-form-item .el-form-item__content {
- // background: #f5f7fa;
- // border-radius: 4px;
- // font-family: PingFangSC-Regular, PingFang SC;
- // margin-bottom: 5px;
- // // background-color: #fff;
- // font-size: 14px;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // }
- // /deep/.el-info-table .el-form-item .el-form-item__label {
- // background-color: #fff;
- // font-size: 14px;
- // font-family: PingFangSC-Regular, PingFang SC;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // }
- // //下表格样式
- // .position.siji {
- // background: white;
- // border-radius: 4px;
- // /* border: 1px solid #d8dce6; */
- // // width: 1219px;
- // }
- // /deep/.zi {
- // width: 64px;
- // height: 22px;
- // font-size: 16px;
- // font-family: PingFangSC-Semibold, PingFang SC;
- // font-weight: 600;
- // color: #323233;
- // line-height: 22px;
- // }
- // //表格文字
- // /deep/.el-info-table .el-form-item .el-form-item__label {
- // text-align: left;
- // font-size: 14px;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // }
- // /deep/.basicInformation {
- // .el-form-item {
- // // width: 25%;
- // .el-form-item__label {
- // background: transparent;
- // border: none;
- // }
- // .el-form-item__content {
- // // border: none;
- // }
- // }
- // }
- // //添加仓位样式
- // .add {
- // width: 100px;
- // height: 34px;
- // background: #f6f7fb;
- // border-radius: 17px;
- // color: #5473e8;
- // font-size: 14px;
- // border: none;
- // margin-top: 8px;
- // }
- // .add img {
- // display: inline-block;
- // margin-top: 3px;
- // margin-left: -12px;
- // }
- // .add .spans {
- // display: table-caption;
- // width: 56px;
- // height: 20px;
- // line-height: 18px;
- // }
- // /deep/.xia {
- // width: 715px;
- // height: 54px;
- // border-radius: 4px;
- // border: 1px solid #d8dce6;
- // margin-top: 10px;
- // background: #f6f7fc;
- // border-radius: 4px;
- // margin-left: 24px;
- // }
- // .basicInformation .el-info-table {
- // border: none;
- // width: 100%;
- // margin: 0 auto;
- // }
- // /deep/.el-select .el-input__inner {
- // border: 1px solid #ccc !important;
- // padding: 0 15px !important;
- // font-size: 12px !important;
- // // width: 125px;
- // }
- // .zhong {
- // background: #f6f7fc;
- // border-radius: 4px;
- // border: 1px solid #d8dce6;
- // width: 100%;
- // }
- // /deep/.zhong .el-form-item {
- // width: 20%;
- // }
- // /deep/.el-input--prefix .el-input__inner {
- // padding-left: 30px;
- // width: 150px;
- // }
- // .ys {
- // // margin-left: 300px;
- // width: 100px;
- // }
- // .biao {
- // margin-left: 240px;
- // margin-top: -57px;
- // }
- // .biao2 {
- // margin-left: 441px;
- // margin-top: -59px;
- // }
- // .biao3 {
- // margin-left: 722px;
- // margin-top: -60px;
- // }
- // .biao4 {
- // margin-left: 1016px;
- // margin-top: -60px;
- // }
- // .biao5 {
- // margin-left: 200px;
- // margin-top: -57px;
- // }
- // .biao6 {
- // margin-left: 450px;
- // margin-top: -57px;
- // }
- // .biao7 {
- // margin-left: 700px;
- // margin-top: -57px;
- // }
- // /deep/.totalStorage .el-input__inner {
- // color: #afb5cb;
- // background: #f5f7fa;
- // }
- // .small-title {
- // position: relative;
- // padding: 10px;
- // font-weight: 600;
- // }
- // .small-title::before {
- // position: absolute;
- // content: '';
- // display: block;
- // background: #5473e8;
- // width: 4px;
- // height: 14px;
- // left: 0px;
- // top: 13px;
- // }
- // .del {
- // // position: absolute;
- // // right: -38px;
- // top: 9px;
- // cursor: pointer;
- // right: 0;
- // display: inline-block;
- // font-size: 20px;
- // width: 16px;
- // height: 10px;
- // line-height: 0px;
- // margin-top: 10px;
- // margin-left: 17px;
- // }
- // .amap-page-container {
- // width: 300px;
- // height: 300px;
- // }
- // /deep/.el-info-table .el-form-item {
- // border-right: 1px solid transparent;
- // border-bottom: 1px solid transparent;
- // width: 33.3333%;
- // }
- // .readonly {
- // position: relative;
- // }
- // .readonly:after {
- // content: '*';
- // color: #ff2727;
- // position: absolute;
- // right: 8px;
- // z-index: 10;
- // top: 21%;
- // font-size: 20px;
- // }
- // .title {
- // position: relative;
- // }
- // .el-button--primary {
- // background-color: #5878e8;
- // border-color: #5878e8;
- // }
- // .el-col {
- // background: #f6f7fc;
- // }
- // /deep/.el-info-table .el-form-item .el-form-item__content {
- // background: #f5f7fa;
- // border-radius: 4px;
- // // border: 1px solid #d8dce6;
- // margin-bottom: 5px;
- // font-size: 14px;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // padding: 0 25px;
- // // border-left: 1px solid transparent;
- // border: none;
- // }
- // /deep/.el-info-table .el-form-item .el-form-item__label {
- // width: 100px;
- // text-align: center;
- // background: #fff;
- // font-size: 14px;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // }
- // .button-container {
- // display: flex;
- // flex-wrap: nowrap;
- // justify-content: space-between;
- // align-items: center;
- // background-color: #fff;
- // width: 100%;
- // height: 50px;
- // padding: 0 10px;
- // &>div {
- // margin-left: 10px;
- // display: flex;
- // flex-wrap: nowrap;
- // flex-direction: row;
- // &>span {
- // line-height: 50px;
- // }
- // }
- // /deep/.auditFlow-box {
- // position: unset;
- // margin-left: 10px;
- // &/deep/.auditFlow-icon {
- // width: auto;
- // padding-right: 30px;
- // }
- // &/deep/.auditFlow-main {
- // position: absolute;
- // }
- // }
- // }
- // .box-app {
- // display: inline-block;
- // float: left;
- // margin-left: 30px;
- // line-height: 50px;
- // }
- // /deep/.el-dialog {
- // .el-form-item {
- // margin-bottom: 0 !important;
- // .el-input--medium {
- // textarea {
- // min-height: 100px !important;
- // }
- // }
- // }
- // }
- // .collapse-bottom {
- // margin-bottom: 20px;
- // }
- // .input-main .textarea .el-textarea__inner {
- // width: 100%;
- // z-index: 1;
- // }
- // .bg-left {
- // padding-left: 30px;
- // }
- // .bg-right {
- // padding-right: 10px;
- // text-align: right;
- // }
- // // .el-form-item {
- // // width: 50%;
- // // }
- // .el-form-item__label {
- // text-align: center;
- // }
- // .hide-sel {
- // .el-input__inner {
- // border: 0px;
- // }
- // .el-icon-arrow-up {
- // display: none;
- // }
- // .el-textarea__inner {
- // background-color: #fff !important;
- // border: 0;
- // }
- // .el-date-editor {
- // i {
- // display: none;
- // }
- // }
- // .is-disabled {
- // .el-input__inner:hover {
- // background-color: #fff !important;
- // border: 0;
- // }
- // color: #606266;
- // .el-input__inner {
- // background-color: #fff !important;
- // border: 0;
- // color: #606266;
- // }
- // .el-textarea__inner {
- // background-color: #fff !important;
- // border: 0;
- // color: #606266;
- // }
- // }
- // }
- // // 控制select为只读的时候显示样式
- // /deep/.el-class-table-col {
- // height: auto;
- // padding: 0px 2px;
- // /deep/.el-input__inner {
- // padding: 0px 2px;
- // }
- // }
- // /deep/.is-disabled {
- // .el-input__prefix,
- // .el-input__suffix {
- // display: none;
- // }
- // .el-input__inner {
- // color: #000 !important;
- // font-size: 14px;
- // cursor: text;
- // padding: 0 !important;
- // }
- // }
- // .winseaview-view {
- // padding: 0 0 20px;
- // }
- // .container {
- // overflow: scroll;
- // height: 93vh;
- // }
- // .readonly:after {
- // display: none;
- // }
- // .el-textarea__inner {
- // display: none;
- // }
- // .el-form {
- // margin-top: 50px;
- // padding: 0 15%;
- // }
- // .readonly {
- // width: 16%;
- // }
- // //去边框
- // /deep/.el-form-item {
- // border-right: 0px;
- // border-bottom: 0px;
- // }
- // /deep/.el-info-table {
- // border-left: 0px;
- // border-top: 0px;
- // }
- // /deep/.flex .el-info-table .el-form-item .el-form-item__content {
- // border: 0px;
- // }
- // .add {
- // width: 100px;
- // height: 34px;
- // background: #f6f7fb;
- // border-radius: 17px;
- // color: #5473e8;
- // font-size: 14px;
- // border: none;
- // margin-left: 17px;
- // // margin-left: -79px;
- // }
- // .add img {
- // display: inline-block;
- // margin-top: 3px;
- // margin-left: -12px;
- // }
- // .add .spans {
- // display: table-caption;
- // width: 56px;
- // height: 20px;
- // line-height: 18px;
- // }
- // /deep/.carnum {
- // display: contents;
- // }
- // /deep/.carnum .el-info-table .el-form-item {
- // width: 20%;
- // }
- // // /deep/.liaison .carnum .el-info-table .el-form-item {
- // // border-radius: 10px;
- // // right: 20px;
- // // }
- // /deep/.basicInformation .el-form-item .el-form-item__label {
- // background: transparent;
- // border: none;
- // font-size: 14px;
- // font-family: PingFangSC-Regular, PingFang SC;
- // font-weight: 400;
- // color: #8890b1;
- // line-height: 16px;
- // margin-left: 22px;
- // }
- // // /deep/.el-form-item__content .el-select {
- // // width: 42%;
- // // }
- // //减号
- // .del {
- // position: absolute;
- // // right: -38px;
- // top: 0px;
- // cursor: pointer;
- // right: -1%;
- // display: inline-block;
- // font-size: 20px;
- // width: 20px;
- // height: 10px;
- // line-height: 0px;
- // }
- // .zhong-other {
- // display: flex;
- // margin: 2%;
- // background: #f6f7fc;
- // border-radius: 4px;
- // border: 1px solid #d8dce6;
- // .item {
- // margin: 0;
- // }
- // }
- // /deep/.myTest .el-form-item {
- // width: 30%;
- // }
- </style>
|