|
@@ -0,0 +1,307 @@
|
|
|
+<template>
|
|
|
+ <div class="orderConfigpop">
|
|
|
+ <el-dialog
|
|
|
+ title=""
|
|
|
+ :visible.sync="dialogVisibledoder"
|
|
|
+ :modal-append-to-body="false"
|
|
|
+ :before-close="handleClose"
|
|
|
+ :width="isWidth">
|
|
|
+ <div class="strategyaddpop_header">
|
|
|
+ <div class="left">
|
|
|
+ <p>{{listdata.name}}</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="110px" size="small ">
|
|
|
+ <el-row :gutter="12">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="任务标签" prop="tagname">
|
|
|
+ <el-input v-model="form.tagname" placeholder="请输入标签(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="目的地" prop="destination" >
|
|
|
+ <el-input v-model="form.destination" placeholder="请输入来源(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="12">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="行李标签" prop="bagtag">
|
|
|
+ <el-input v-model="form.bagtag" placeholder="请输入标签(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="安检结果(字符串)" prop="securite_result" >
|
|
|
+ <el-input v-model="form.securite_result" placeholder="请输入来源(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="12">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="安检标签" prop="securite_tagname">
|
|
|
+ <el-input v-model="form.securite_tagname" placeholder="请输入标签(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="车辆匹配" prop="car_name" >
|
|
|
+ <el-input v-model="form.car_name" type="number" placeholder="请输入来源(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="12">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="站点匹配" prop="station_name">
|
|
|
+ <el-input v-model="form.station_name" type="number" placeholder="请输入标签(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="匹配订单号" prop="order_id" >
|
|
|
+ <el-input v-model="form.order_id" type="number" placeholder="请输入来源(必填)"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ <div class="footer">
|
|
|
+ <el-button class="delebut" @click="elearm">
|
|
|
+ {{butName}}
|
|
|
+ </el-button>
|
|
|
+ <el-button class="elebuts" @click="handleClose">
|
|
|
+ {{butNames}}
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+ import {
|
|
|
+ orderConfigurationadd,
|
|
|
+ orderConfigurationmod
|
|
|
+ } from '@/api/request.js'
|
|
|
+export default {
|
|
|
+ props: ['dialogVisibledoder', 'listdata'],
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ isWidth: '43%',
|
|
|
+ butName: '保存',
|
|
|
+ butNames: '取消',
|
|
|
+ form: {
|
|
|
+ tagname: null,
|
|
|
+ destination:null,
|
|
|
+ bagtag: null,
|
|
|
+ securite_result:null,
|
|
|
+ securite_tagname: null,
|
|
|
+ car_name: null,
|
|
|
+ station_name: null,
|
|
|
+ order_id: null
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ tagname: [
|
|
|
+ { required: true, message: '请输入任务标签', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ destination: [
|
|
|
+ { required: true, message: '请输入目的地', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ bagtag: [
|
|
|
+ { required: true, message: '请输入行李标签', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ securite_result: [
|
|
|
+ { required: true, message: '请输入安检结果', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ securite_tagname: [
|
|
|
+ { required: true, message: '请输入安检标签', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ car_name: [
|
|
|
+ { required: true, message: '请输入车辆匹配', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ station_name: [
|
|
|
+ { required: true, message: '请输入站点匹配', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ order_id: [
|
|
|
+ { required: true, message: '请输入匹配订单号', trigger: 'blur' }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ listdata () {
|
|
|
+ if (this.listdata.list) {
|
|
|
+ this.form = this.listdata.list
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ handleClose () {
|
|
|
+ this.form = {
|
|
|
+ tagname: null,
|
|
|
+ destination:null,
|
|
|
+ bagtag: null,
|
|
|
+ securite_result:null,
|
|
|
+ securite_tagname: null,
|
|
|
+ car_name: null,
|
|
|
+ station_name: null,
|
|
|
+ order_id: null
|
|
|
+ }
|
|
|
+ this.$emit('oderadd')
|
|
|
+ },
|
|
|
+ elearm () {
|
|
|
+ this.$refs['form'].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ this.form.tagname = this.form.tagname.replace(/\s*/g,"")
|
|
|
+ this.form.destination = this.form.destination.replace(/\s*/g,"")
|
|
|
+ this.form.bagtag = this.form.bagtag.replace(/\s*/g,"")
|
|
|
+ this.form.securite_result = this.form.securite_result.replace(/\s*/g,"")
|
|
|
+ this.form.securite_tagname = this.form.securite_tagname.replace(/\s*/g,"")
|
|
|
+ // this.form.car_name = this.form.car_name.replace(/\s*/g,"")
|
|
|
+ // this.form.station_name = this.form.station_name.replace(/\s*/g,"")
|
|
|
+ // this.form.order_id = this.form.order_id.replace(/\s*/g,"")
|
|
|
+ //新增
|
|
|
+ if (this.listdata.type == 0) {
|
|
|
+ orderConfigurationadd(this.form).then(res => {
|
|
|
+ if (res.resultCode == 1) {
|
|
|
+ this.$message({
|
|
|
+ message: res.resultMsg,
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ this.form = {
|
|
|
+ tagname: null,
|
|
|
+ destination:null,
|
|
|
+ bagtag: null,
|
|
|
+ securite_result:null,
|
|
|
+ securite_tagname: null,
|
|
|
+ car_name: null,
|
|
|
+ station_name: null,
|
|
|
+ order_id: null
|
|
|
+ },
|
|
|
+ this.$emit('oderadd')
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.resultMsg);
|
|
|
+ this.form = {
|
|
|
+ tagname: null,
|
|
|
+ destination:null,
|
|
|
+ bagtag: null,
|
|
|
+ securite_result:null,
|
|
|
+ securite_tagname: null,
|
|
|
+ car_name: null,
|
|
|
+ station_name: null,
|
|
|
+ order_id: null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ //修改
|
|
|
+ orderConfigurationmod(this.form).then(res => {
|
|
|
+ if (res.resultCode == 1) {
|
|
|
+ this.$message({
|
|
|
+ message: res.resultMsg,
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ this.form = {
|
|
|
+ tagname: null,
|
|
|
+ destination:null,
|
|
|
+ bagtag: null,
|
|
|
+ securite_result:null,
|
|
|
+ securite_tagname: null,
|
|
|
+ car_name: null,
|
|
|
+ station_name: null,
|
|
|
+ order_id: null
|
|
|
+ }
|
|
|
+ this.$emit('oderadd')
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.resultMsg);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // console.log('error submit!!');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="less">
|
|
|
+.orderConfigpop{
|
|
|
+ .el-dialog{
|
|
|
+ // border-radius: 20px;
|
|
|
+ display: flex;
|
|
|
+ display: -ms-flex; /* 兼容IE */
|
|
|
+ flex-direction: column;
|
|
|
+ -ms-flex-direction: column; /* 兼容IE */
|
|
|
+ margin:0 !important;
|
|
|
+ position:absolute;
|
|
|
+ top:50%;
|
|
|
+ left:50%;
|
|
|
+ transform:translate(-50%,-50%);
|
|
|
+ max-height:calc(100% - 30px);
|
|
|
+ max-width:calc(100% - 30px);
|
|
|
+ }
|
|
|
+ .el-dialog__header{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .el-dialog__body{
|
|
|
+ padding: 0;
|
|
|
+ background-color: #04152f;
|
|
|
+ border: solid 2px #6cb1ec;
|
|
|
+ box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.3);
|
|
|
+ // border-radius: 20px;
|
|
|
+ padding: 0 48px 0 48px;
|
|
|
+ .strategyaddpop_header{
|
|
|
+ width: 100%;
|
|
|
+ height: 120px;
|
|
|
+ display: flex;
|
|
|
+ .left{
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ p{
|
|
|
+ font-size: 24px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .right{
|
|
|
+ width: 50%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ .but{
|
|
|
+ height: 32px;
|
|
|
+ }
|
|
|
+ .but:last-child{
|
|
|
+ margin-left: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-form-item__label{
|
|
|
+ color: #6cb1ec;
|
|
|
+ }
|
|
|
+ .el-input__inner{
|
|
|
+ background-color: #111d30;
|
|
|
+ border: solid 1px #6cb1ec;
|
|
|
+ }
|
|
|
+ .el-input__inner::placeholder{
|
|
|
+ color: #9cbfdd;
|
|
|
+ }
|
|
|
+ .footer{
|
|
|
+ width: 100%;
|
|
|
+ height: 112px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ .delebut{
|
|
|
+ background: rgba(0, 162, 253, 0.3);
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+ .elebuts{
|
|
|
+ background-color: #003e6b;
|
|
|
+ color: #FFFFFF;
|
|
|
+ margin-left: 24px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|