1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291 |
- //添加司机
- <template>
- <div class="container">
- <el-row>
- <el-col :span="12">
- <h2 class="bg-left title">添加新司机</h2>
- </el-col>
- <el-col :span="12" class="bg-right">
- <el-button
- class="bg-bottom"
- type="primary"
- size="small"
- @click="returnsales()"
- ><img
- width="6"
- height="10"
- style="vertical-align: bottom; margin-right: 3px"
- src="../../../public/img/lujing.png"
- alt=""
- />返回</el-button
- >
- </el-col>
- </el-row>
- <ws-form
- ref="deptBudgetList"
- :rules="mainReportAdd"
- :model="deptBudgetList"
- >
- <div class="drivermessage">
- <div class="small-title">司机信息</div>
- <ws-info-table>
- <!--司机姓名-->
- <ws-form-item
- label="姓名"
- span="1"
- prop="contractNo"
- class="readonly bg-right"
- >
- <ws-input
- v-model="deptBudgetList.driverName"
- placeholder="请输入司机姓名"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <!--手机号-->
- <ws-form-item
- label="手机号"
- span="1"
- prop="driverPhone"
- class="readonly"
- >
- <ws-input
- v-model="deptBudgetList.driverPhone"
- placeholder="请输入手机号"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <!--常驻城市-->
- <ws-form-item label="常驻城市" span="1" prop="acceptanceMethod">
- <el-cascader
- :options="options_"
- v-model="selectedOptions"
- clearable
- size="large"
- placeholder="请选择常驻城市"
- style="width: 200%"
- class="el-cascader"
- @change="handleChange"
- />
- </ws-form-item>
- <!--身份证号-->
- <ws-form-item
- label="身份证号"
- span="1"
- prop="driverNo"
- class="readonly"
- >
- <ws-input
- @input="cardchange"
- v-model="deptBudgetList.numberCard"
- placeholder="请输入身份证号"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- </ws-info-table>
- <span v-if="age && age < 60" class="small">{{ age }}岁</span>
- <span v-if="age && age > 60" class="big">{{ age }}岁</span>
- </div>
- </ws-form>
- <ws-form
- ref="deptBudgetList"
- :rules="mainReportAdd"
- :model="deptBudgetList"
- >
- <div class="small-title">货车信息</div>
- <div
- style="width: 100%"
- class="flex position"
- v-for="(item, index) in freightspace"
- >
- <div class="trucks">
- <div class="driver">
- <span class="driver">货车信息-{{ index + 1 }}</span>
-
- <img
- width="22"
- height="22"
- class="add"
- @click="add"
- src="../../../public/img/add.png"
- alt=""
- />
- <img
- width="22"
- height="22"
- class="del"
- @click="del(index)"
- src="../../../public/img/del.png"
- alt=""
- />
- </div>
- <ws-info-table class="el-table">
- <!--车牌号-->
- <ws-form-item
- label="车牌号"
- span="1"
- prop="carNumber"
- class="forlist"
- width="400px"
- >
- <ws-input
- v-model="item.carNumber"
- placeholder="请输入车牌号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <!--车型-->
- <ws-form-item label="车型" span="1" prop="carModel" class="forlist">
- <ws-select
- v-model="item.carModel"
- placeholder=""
- class="typeselect"
- @change="selectcarModel"
- >
- <ws-option
- v-for="item in carModelList"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </ws-select>
- </ws-form-item>
- <!--车长-->
- <ws-form-item
- label="不含车头车长(米)"
- span="1"
- prop="carLength"
- class="forlist"
- >
- <el-select
- v-model="item.carLength"
- placeholder=""
- class="typeselect"
- @change="selectcarLength"
- filterable
- allow-create
- default-first-option
- >
- <el-option
- v-for="item in carLengthList"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </el-select>
- </ws-form-item>
- <!--载重-->
- <ws-form-item label="载重" span="1" prop="carLoad" class="forlist">
- <ws-input
- v-model="item.carLoad"
- placeholder="请输入载重"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <!--出厂年份-->
- <ws-form-item
- label="出厂年份"
- span="1"
- prop="yearManufacture"
- class="forlist"
- >
- <ws-input
- v-model="item.yearManufacture"
- placeholder="请输入年份"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- </ws-info-table>
- </div>
- </div>
- </ws-form>
- <ws-form
- ref="deptBudgetList"
- :rules="mainReportAdd"
- :model="deptBudgetList"
- >
- <div class="small-title">收款人账户信息</div>
- <div
- style="width: 100%"
- class="flex position"
- v-for="(item, index) in freightspace1"
- >
- <div class="gathering">
- <div class="driver">
- 收款人账户信息-{{ index + 1 }}
- <img
- width="22"
- height="22"
- class="add"
- @click="add1"
- src="../../../public/img/add.png"
- alt=""
- />
- <img
- width="22"
- height="22"
- class="del"
- @click="del1(index)"
- src="../../../public/img/del.png"
- alt=""
- />
- </div>
- <ws-info-table class="el-table">
- <!--账户类型-->
- <ws-form-item
- label="账户类型"
- span="1"
- prop="contractNo"
- class="el-car bg-right"
- >
- <el-radio v-model="item.accountTypeFlag" label="1"
- >私人账号</el-radio
- >
- <el-radio v-model="item.accountTypeFlag" label="2"
- >企业账户</el-radio
- >
- </ws-form-item>
- <!--账号-->
- <ws-form-item label="账号" span="1" prop="bankCard" class="el-car">
- <ws-input
- v-model="item.bankCard"
- placeholder="请输入账号"
- maxlength="100"
- size="small"
- />
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="
- (res, file) => {
- uploadSuccessHandle1(index, res, file)
- }
- "
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><img
- width="18"
- height="20"
- style="
- vertical-align: text-top;
- position: relative;
- top: -1px;
- "
- src="../../../public/img/fujian.png"
- alt=""
- />
- </el-upload>
- </ws-form-item>
- <!--开户行-->
- <ws-form-item
- label="开户行"
- span="1"
- prop="bankDeposit"
- class="el-car"
- >
- <ws-input
- v-model="item.bankDeposit"
- placeholder="请输入开户行"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <!--姓名-->
- <ws-form-item
- label="姓名"
- v-if="item.accountTypeFlag == 1"
- span="1"
- prop="payeeName"
- class="el-car"
- width="150px"
- >
- <ws-input
- v-model="item.payeeName"
- placeholder="请输入姓名"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <!--企业名称-->
- <ws-form-item
- label="企业名称"
- v-else
- span="1"
- prop="compName"
- class="el-car"
- width="150px"
- >
- <ws-input
- v-model="item.compName"
- placeholder="请输入企业名称"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <!--身份证号-->
- <ws-form-item
- label="身份证号"
- v-if="item.accountTypeFlag == 1"
- span="1"
- prop="payeeNumberCard"
- class="el-car"
- >
- <ws-input
- v-model="item.payeeNumberCard"
- placeholder="请输入身份证号"
- maxlength="100"
- size="small"
- />
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="
- (res, file) => {
- uploadSuccessHandle(index, res, file)
- }
- "
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><img
- width="18"
- height="20"
- style="
- vertical-align: text-top;
- position: relative;
- top: -1px;
- "
- src="../../../public/img/fujian.png"
- alt=""
- />
- </el-upload>
- </ws-form-item>
- <ws-form-item
- class="el-car"
- label="开户支行"
- span="1"
- prop="bankDepositBranch"
- >
- <ws-select
- v-model="item.bankDepositBranch"
- placeholder=""
- class="typeselect"
- @change="
- (value) => {
- selectbankDepositBranch(value, index)
- }
- "
- >
- <ws-option
- v-for="(items, index) in item.bankDepositBranchList"
- :key="index"
- :label="items"
- :value="items"
- />
- </ws-select>
- </ws-form-item>
- </ws-info-table>
- </div>
- </div>
- </ws-form>
- <ws-form
- ref="deptBudgetList"
- :rules="mainReportAdd"
- :model="deptBudgetList"
- >
- <div class="flex">
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandletravel"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button" size="small" type="primary"
- >行驶证</el-button
- >
- </el-upload>
- <img
- v-show="addressUrls.travel"
- width="100"
- height="100"
- :src="addressUrls.travel"
- alt=""
- />
- </div>
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandledrive"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button" size="small" type="primary"
- >驾驶证</el-button
- >
- </el-upload>
- <img
- v-if="addressUrls.drive"
- width="100"
- height="100"
- :src="addressUrls.drive"
- alt=""
- />
- </div>
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandleway"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button-green" size="small" type="primary"
- >道路运营证</el-button
- >
- </el-upload>
- <img
- v-if="addressUrls.way"
- width="100"
- height="100"
- :src="addressUrls.way"
- alt=""
- />
- </div>
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandlequalification"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button-green" size="small" type="primary"
- >从业资格证</el-button
- >
- </el-upload>
- <img
- v-if="addressUrls.qualification"
- width="100"
- height="100"
- :src="addressUrls.qualification"
- alt=""
- />
- </div>
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandleidentityjust"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button-yellow" size="small" type="primary"
- >身份证正面</el-button
- >
- </el-upload>
- <img
- v-if="addressUrls.identityjust"
- width="100"
- height="100"
- :src="addressUrls.identityjust"
- alt=""
- />
- </div>
- <div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="uploadSuccessHandleidentityagainst"
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button class="upload button-yellow" size="small" type="primary"
- >身份证反面</el-button
- >
- </el-upload>
- <img
- v-if="addressUrls.identityagainst"
- width="100"
- height="100"
- :src="addressUrls.identityagainst"
- alt=""
- />
- </div>
- </div>
- </ws-form>
- <!-- 提交 -->
- <div style="text-align: right; padding: 10px" class="center">
- <el-button
- class="bg-bottom"
- type="primary"
- size="small"
- @click="submit(deptBudgetList)"
- >提交</el-button
- >
- </div>
- </div>
- </template>
- <script>
- import { provinceAndCityData, CodeToText } from 'element-china-area-data'
- import { packList } from '@/model/contarct/index'
- import { getidentity, getbank, addDriver } from '@/model/transport/index'
- import WsUpload from '@/components/WsUpload'
- import mapDrag from '@/components/mapdrag/mapdrag'
- import { dayjs, fmoney, EventBus } from 'base-core-lib'
- export default {
- name: 'viewSpareMoney',
- components: {
- WsUpload,
- mapDrag,
- },
- watch: {
- vesselId(val) {
- this.getVesselData()
- },
- isShow(val) {
- this.showType = val
- },
- },
- data() {
- let self = this
- return {
- deptBudgetList: {
- totalStorage: 0,
- drivercarInfo: {
- goodsName: '',
- },
- driverPayeeInfo: {},
- },
- radio: '1',
- carModelList: [],
- carLengthList: [],
- options_: provinceAndCityData,
- selectedOptions: [],
- window: '',
- district: null,
- citylist: [],
- compId: sessionStorage.getItem('ws-pf_compId'),
- mainReportAdd: {},
- size: 10,
- value1: '',
- unitList: [],
- accessoryBankTFs: false,
- addressUrls: {},
- freightspace: [
- {
- carNumber: '',
- carModel: '高栏',
- carModelKey: '1',
- carLength: '13',
- carLengthKey: '1',
- carLoad: '',
- yearManufacture: '',
- },
- ],
- freightspace1: [
- {
- accountTypeFlag: '1',
- payeeName: '',
- payeeNumberCard: '',
- compName: '',
- bankDeposit: '',
- addressUrlArray: [],
- bankCard: '',
- },
- ],
- name: '',
- age: '',
- }
- },
- activated() {
- this.loaddata()
- this.showType = this.isShow
- },
- computed: {},
- methods: {
- cardchange(e) {
- if (e.length == 15 || e.length == 18) {
- this.IdCard(e)
- }
- },
- IdCard(UUserCard) {
- //获取年龄
- var myDate = new Date()
- var month = myDate.getMonth() + 1
- var day = myDate.getDate()
- var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1
- if (
- UUserCard.substring(10, 12) < month ||
- (UUserCard.substring(10, 12) == month &&
- UUserCard.substring(12, 14) <= day)
- ) {
- age++
- }
- this.age = age
- },
- bankcardfujian(item) {
- this.accessoryBankTFs = true
- },
- loaddata() {
- // 车型
- packList({ constId: 'TRAN1' })
- .toPromise()
- .then((response) => {
- this.carModelList = response
- })
- // 车长
- packList({ constId: 'TRAN2' })
- .toPromise()
- .then((response) => {
- this.carLengthList = response
- })
- },
- uploadSuccessHandle(index, e, fileList) {
- console.log(index, e, fileList)
- const that = this
- getidentity({ personImg: e.url })
- .toPromise()
- .then((response) => {
- for (var i = 0; i < this.freightspace1.length; i++) {
- if (i == index) {
- this.freightspace1[i].cardAddressUrl = e.url
- this.freightspace1[i].payeeName = response.recPerson
- this.freightspace1[i].payeeNumberCard = response.recPersonNo
- }
- }
- })
- },
- uploadSuccessHandle1(index, e, fileList) {
- console.log(index, e, fileList)
- const that = this
- // this.deptBudgetList.cardAddressUrl = e.url
- getbank({ bankImg: e.url })
- .toPromise()
- .then((response) => {
- for (var i = 0; i < this.freightspace1.length; i++) {
- if (i == index) {
- this.freightspace1[i].payeeAddressUrl = e.url
- this.freightspace1[i].bankCard = response.bankNo
- this.freightspace1[i].bankDeposit = response.bankName
- this.freightspace1[i].bankDepositBranchList =
- response.bankNameZhihang
- }
- }
- })
- },
- uploadSuccessHandletravel(e) {
- this.$set(this.addressUrls, 'travel', e.url)
- },
- uploadSuccessHandledrive(e) {
- this.$set(this.addressUrls, 'drive', e.url)
- },
- uploadSuccessHandleway(e) {
- this.$set(this.addressUrls, 'way', e.url)
- this.addressUrls.way = e.url
- },
- uploadSuccessHandlequalification(e) {
- this.$set(this.addressUrls, 'qualification', e.url)
- },
- uploadSuccessHandleidentityjust(e) {
- this.$set(this.addressUrls, 'identityjust', e.url)
- },
- uploadSuccessHandleidentityagainst(e) {
- this.$set(this.addressUrls, 'identityagainst', e.url)
- },
- selectbankDepositBranch(e, index) {
- this.freightspace1[index].bankDepositBranch = e
- },
- // 关闭 dialog时 处理文件url 初始化upload组件
- handleClose() {
- this.dialogViewSpareMoney = false
- },
- add() {
- this.freightspace.push({
- carNumber: '',
- carModel: '高栏',
- carModelKey: '1',
- carLength: '13',
- carLengthKey: '1',
- carLoad: '',
- yearManufacture: '',
- })
- },
- del(index) {
- if (this.freightspace.length > 1) {
- this.freightspace.splice(index, 1)
- }
- },
- add1() {
- this.freightspace1.push({
- accountTypeFlag: '1',
- payeeName: '',
- payeeNumberCard: '',
- compName: '',
- bankDeposit: '',
- bankCard: '',
- addressUrlArray: [],
- })
- },
- del1(index) {
- if (this.freightspace1.length > 1) {
- this.freightspace1.splice(index, 1)
- }
- },
- identitycardfujian(item) {},
- handleChange(value) {
- this.selectedOptions = value
- },
- returnsales() {
- this.$router.push({ path: 'tranManagementDriver' })
- },
- // confirmPosition() {
- // this.draggable = false
- // },
- // 上传附件
- uploadSuccess(data, files, url) {
- console.log(data, files, url)
- // this.deptBudgetList.
- // this.formData.append('files', files)
- // this.feedbackObj.uploadNameAttachment = data.appendixName
- // this.feedbackObj.pathUploadAttachment = data.appendixPath
- // // this.newAppendixs = files
- // this.onChangeFlag = true
- },
- selectcarModel(e) {
- for (var i = 0; i < this.carModelList.length; i++) {
- if (this.carModelList[i].constValue == e) {
- this.deptBudgetList.carModelKey = this.carModelList[i].constKey
- }
- }
- },
- selectcarLength(e) {
- for (var i = 0; i < this.carLengthList.length; i++) {
- if (this.carLengthList[i].constValue == e) {
- this.deptBudgetList.carLengthKey = this.carLengthList[i].constKey
- }
- }
- },
- onChange(files) {
- this.fileNum = files
- this.$refs.upload.handleSaveBill().then((res) => {
- console.log(files)
- })
- },
- submit() {
- if (!this.deptBudgetList.driverName) {
- EventBus.$emit('error', '司机姓名不能为空')
- return
- }
- if (
- this.deptBudgetList.driverName.length < 2 ||
- this.deptBudgetList.driverName.length > 10
- ) {
- EventBus.$emit('error', '司机姓名输入错误')
- return
- }
- if (!this.deptBudgetList.driverPhone) {
- EventBus.$emit('error', '司机手机不能为空')
- return
- }
- if (this.deptBudgetList.driverPhone.length != 11) {
- console.log(this.deptBudgetList.driverPhone.length)
- EventBus.$emit('error', '司机手机号输入有误')
- return
- }
- if (!this.deptBudgetList.numberCard) {
- EventBus.$emit('error', '司机身份证不能为空')
- return
- }
- if (this.deptBudgetList.numberCard.length != 18) {
- EventBus.$emit('error', '司机身份证号输入错误')
- return
- }
- for (var i = 0; i < this.freightspace.length; i++) {
- if (this.freightspace[i].carNumber == '') {
- EventBus.$emit('error', '车牌号不能为空')
- return
- }
- if (this.freightspace[i].carNumber.length != 7) {
- EventBus.$emit('error', '车牌号输入错误')
- return
- }
- if (this.freightspace[i].carLoad == '') {
- EventBus.$emit('error', '载重不能为空')
- return
- }
- if (this.freightspace[i].carLength > 50) {
- EventBus.$emit('error', '载重量输入错误')
- return
- }
- if (this.freightspace[i].yearManufacture == '') {
- EventBus.$emit('error', '出厂年份不能为空')
- return
- }
- if (this.freightspace[i].yearManufacture.length != 4) {
- EventBus.$emit('error', '出厂年份输入错误')
- return
- }
- }
- for (var i = 0; i < this.freightspace1.length; i++) {
- if (this.freightspace1[i].bankCard == '') {
- EventBus.$emit('error', '银行卡账号不能为空')
- return
- }
- if (this.freightspace1[i].bankDeposit == '') {
- EventBus.$emit('error', '开户行不能为空')
- return
- }
- if (this.freightspace1[i].bankDepositBranch == '') {
- EventBus.$emit('error', '开户支行不能为空')
- return
- }
- if (
- this.freightspace1[i].accountTypeFlag == 1 &&
- this.freightspace1[i].payeeName == ''
- ) {
- EventBus.$emit('error', '收款人姓名不能为空')
- return
- }
- if (
- this.freightspace1[i].accountTypeFlag == 1 &&
- this.freightspace1[i].payeeNumberCard == ''
- ) {
- EventBus.$emit('error', '收款人身份证号码不能为空')
- return
- }
- if (
- (this.freightspace1[i].accountTypeFlag == 1 &&
- this.freightspace1[i].payeeName.length < 2) ||
- (this.freightspace1[i].accountTypeFlag == 1 &&
- this.freightspace1[i].payeeName.length > 10)
- ) {
- EventBus.$emit('error', '收款人姓名输入错误')
- return
- }
- console.log(this.freightspace1[i].payeeNumberCard != 18)
- if (
- this.freightspace1[i].accountTypeFlag == 1 &&
- this.freightspace1[i].payeeNumberCard.length != 18
- ) {
- EventBus.$emit('error', '收款人身份证号输入错误')
- return
- }
- if (
- this.freightspace1[i].accountTypeFlag == 2 &&
- this.freightspace1[i].compName == ''
- ) {
- EventBus.$emit('error', '企业名称不能为空')
- return
- }
- if (
- (this.freightspace1[i].accountTypeFlag == 2 &&
- this.freightspace1[i].compName.length < 2) ||
- (this.freightspace1[i].accountTypeFlag == 2 &&
- this.freightspace1[i].compName.length > 30)
- ) {
- EventBus.$emit('error', '企业名称输入有误')
- return
- }
- }
- if (!this.addressUrls.travel) {
- EventBus.$emit('error', '行驶证不能为空')
- return
- }
- if (!this.addressUrls.drive) {
- EventBus.$emit('error', '驾驶证不能为空')
- return
- }
- if (!this.addressUrls.way) {
- EventBus.$emit('error', '道路运营证不能为空')
- return
- }
- if (!this.addressUrls.qualification) {
- EventBus.$emit('error', '从业资格证不能为空')
- return
- }
- if (!this.addressUrls.identityjust) {
- EventBus.$emit('error', '身份证正面不能为空')
- return
- }
- if (!this.addressUrls.identityagainst) {
- EventBus.$emit('error', '身份证反面不能为空')
- return
- }
- var arr = []
- for (let key in this.addressUrls) {
- arr.push(this.addressUrls[key])
- }
- this.$refs.deptBudgetList.validate((valid) => {
- if (valid) {
- this.deptBudgetList.compId = sessionStorage.getItem('ws-pf_compId')
- this.deptBudgetList.residentCityProvincial =
- CodeToText[this.selectedOptions[0]]
- this.deptBudgetList.residentCityMunicipal =
- CodeToText[this.selectedOptions[1]]
- this.deptBudgetList.addressUrl = arr.toString()
- this.deptBudgetList.driverCarInfoList = this.freightspace
- this.deptBudgetList.driverPayeeInfoList = this.freightspace1
- // addDriver(this.deptBudgetList)
- // .toPromise()
- // .then((response) => {
- // this.$message.success('添加成功')
- // this.deptBudgetList = {}
- // this.freightspace = [
- // {
- // carNumber: '',
- // carModel: '高栏',
- // carModelKey: '1',
- // carLength: '13',
- // carLengthKey: '1',
- // carLoad: '',
- // yearManufacture: '',
- // },
- // ]
- // this.freightspace1 = [
- // {
- // accountTypeFlag: '1',
- // payeeName: '',
- // payeeNumberCard: '',
- // compName: '',
- // bankDeposit: '',
- // addressUrlArray: [],
- // bankCard: '',
- // },
- // ]
- // this.$router.push({ path: 'tranManagementDriver' })
- // })
- } else {
- EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- return false
- }
- })
- },
- resetForm(deptBudgetList) {
- this.$refs[deptBudgetList].resetFields()
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .position {
- position: relative;
- background: #f6f7fc;
- height: 124px;
- margin-top: 20px;
- border: 1px solid #D8DCE6;
- border-radius: 3px;
- }
- .add,
- .del {
- position: absolute;
- top: 10px;
- cursor: pointer;
- margin-left: 17px;
- }
- .del {
- margin-left: 50px;
- }
- .amap-page-container {
- width: 300px;
- height: 300px;
- }
- .el-form {
- padding: 0 10%;
- }
- /deep/.ws-info-table .el-form-item {
- border-right: 1px solid #cdd2dc;
- border-bottom: 1px solid #cdd2dc;
- }
- .readonly {
- position: relative;
- }
- .title {
- position: relative;
- }
- .el-car {
- width: 413px;
- }
- .title::before {
- content: '';
- display: inline-block;
- width: 5px;
- height: 30px;
- background: #5473e8;
- position: absolute;
- left: 0;
- }
- .el-col {
- background: #f6f7fc;
- }
- .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;
- }
- }
- }
- }
- .avatar-uploader {
- margin: 0 5px;
- }
- .collapse-bottom {
- margin-bottom: 20px;
- }
- .input-main .textarea .el-textarea__inner {
- width: 100%;
- z-index: 1;
- }
- .el-form-item__label {
- text-align: center;
- }
- // 控制select为只读的时候显示样式
- /deep/.ws-class-table-col {
- height: auto;
- padding: 0px 2px;
- /deep/.el-input__inner {
- padding: 0px 2px;
- }
- }
- .winseaview-view {
- padding: 0 0 20px;
- }
- .container {
- overflow: scroll;
- height: 93vh;
- }
- /deep/.ws-info-table .el-form-item .el-form-item__label {
- // width: 110px;
- width: 40%;
- text-align: center;
- }
- /deep/.ws-info-table .el-form-item {
- width: 25%;
- }
- .el-form {
- margin-top: 50px;
- }
- .readonly {
- width: 16%;
- }
- .el-cascader {
- width: 145px;
- }
- .forlist {
- width: 20%;
- }
- .el-form-item.forlist.is-success.el-form-item--small {
- width: 20%;
- }
- .el-form-item.forlist.el-form-item--small {
- width: 20%;
- }
- .el-form-item.readonly.is-success.el-form-item--small.showLableToopTip {
- width: 20%;
- }
- .el-form-item.el-car.el-form-item--small {
- width: 33.33%;
- border-top: 1px solid #D8DCE6;
- border-bottom: 0px;
- background: #F6F7FC;
- }
- .trucks {
- color: #69708c;
- border: 1px solid #d8dce6;
- padding: 12px;
- border-radius: 3px;
- margin: 10px 0;
- border: 0px;
- font-size: 14px;
- color: #8890b1;
- width: 100%;
- }
- /deep/.trucks .ws-info-table,
- /deep/.trucks .ws-info-table .el-form-item,
- /deep/.trucks .ws-info-table .el-form-item .el-form-item__content {
- border: none;
- background: #f6f7fc;
- border-radius: 4px;
- }
- /deep/.trucks .el-table__expanded-cell,
- /deep/.trucks .ws-info-table .el-form-item .el-form-item__label,
- /deep/.trucks .ws-info-table .el-form-item .el-form-item__content {
- background: transparent;
- }
- /deep/.trucks .ws-info-table .el-form-item .el-form-item__label {
- color: #8890b1;
- }
- /deep/.trucks .el-table:before {
- height: 0;
- }
- .gathering {
- background: #f5f7fa;
-
- }
- /deep/.gathering .ws-info-table {
- border-left: none;
- border: none;
- }
- /deep/.gathering .driver {
- padding: 10px;
- }
- .driver {
- color: #5473e8;
- line-height: 20px;
- font-size: 14px;
- }
- /deep/.gathering .el-form-item .el-form-item__label {
- background: #f5f7fa;
- text-align: center;
- border-right: 1px solid #D8DCE6;
- width: 140px;
- }
- /deep/.gathering .ws-info-table .el-form-item .el-form-item__content {
- border:none;
- background: #F6F7FC;
- }
- /deep/.gathering .ws-info-table .el-form-item.compname,
- /deep/.gathering .ws-info-table .el-form-item.bankDeposit,
- /deep/.gathering .ws-info-table .el-form-item.bankDeposit1 {
- border:none;
- }
- /deep/.gathering .ws-info-table .el-form-item.compname {
- width: 100%;
- }
- .button.el-button--primary,
- .button-green.el-button--primary,
- .button-yellow.el-button--primary {
- height: 28px;
- background: #edf1ff;
- border-radius: 4px;
- color: #5473e8;
- font-size: 12px;
- text-align: center;
- line-height: 28px;
- margin: 0 10px;
- padding: 0 10px;
- border: 1px solid transparent;
- }
- .button-green.el-button--primary {
- background: #ecf8f9;
- color: #50cad4;
- }
- .button-yellow.el-button--primary {
- background: #fff6eb;
- color: #ff9f24;
- }
- .el-button--primary {
- background: #5878e8;
- border-color: #5878e8;
- }
- .drivermessage {
- position: relative;
- }
- .drivermessage .ws-info-table {
- border: none;
- }
- /deep/.drivermessage .ws-info-table .el-form-item__label {
- background: #fff;
- width: 80px;
- }
- /deep/.drivermessage .ws-info-table .el-form-item__content,
- /deep/.drivermessage .ws-info-table .el-form-item {
- border: none;
- }
- //蓝标
- .small-title {
- position: relative;
- padding: 10px;
- font-weight: 600;
- }
- .bg-left {
- padding-left: 30px;
- }
- .bg-right {
- padding-right: 10px;
- text-align: right;
- }
- .bg-bottom {
- margin: 15px 0px;
- }
- .small-title::before {
- position: absolute;
- content: '';
- display: block;
- background: #5473e8;
- width: 4px;
- height: 14px;
- left: 0px;
- top: 13px;
- padding: 4px 2px;
- }
- .small,
- .big {
- color: #ccc;
- line-height: 16px;
- position: absolute;
- right: -50px;
- top: 44px;
- border: 1px solid #ccc;
- padding: 5px 10px;
- border-radius: 20px;
- }
- .big {
- color: #f46060;
- background: #ffeeee;
- }
- </style>
|