|
@@ -6,91 +6,73 @@
|
|
<h2 class="bg-left title">汽运装车反馈</h2>
|
|
<h2 class="bg-left title">汽运装车反馈</h2>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="12" class="bg-right">
|
|
<el-col :span="12" class="bg-right">
|
|
- <el-button
|
|
|
|
- class="bg-bottom"
|
|
|
|
- type="primary"
|
|
|
|
- size="small"
|
|
|
|
- @click="returnsales()"
|
|
|
|
- ><img
|
|
|
|
|
|
+ <el-button class="bg-bottom" type="primary" size="small" @click="returnsales()">
|
|
|
|
+ <img
|
|
width="6"
|
|
width="6"
|
|
height="10"
|
|
height="10"
|
|
style="vertical-align: bottom; margin-right: 3px"
|
|
style="vertical-align: bottom; margin-right: 3px"
|
|
src="../../../public/img/lujing.png"
|
|
src="../../../public/img/lujing.png"
|
|
- alt=""
|
|
|
|
- />返回</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ alt
|
|
|
|
+ />返回
|
|
|
|
+ </el-button>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <ws-form
|
|
|
|
- class="position"
|
|
|
|
- ref="deptBudgetList"
|
|
|
|
- :rules="rules"
|
|
|
|
- :model="deptBudgetList"
|
|
|
|
- >
|
|
|
|
|
|
+ <ws-form class="position" ref="deptBudgetList" :rules="rules" :model="deptBudgetList">
|
|
<div class="small-title" style="font-size: 16px">任务详情</div>
|
|
<div class="small-title" style="font-size: 16px">任务详情</div>
|
|
<ws-info-table>
|
|
<ws-info-table>
|
|
<!--任务编号-->
|
|
<!--任务编号-->
|
|
- <ws-form-item label="任务编号" span="1" prop="processNo">
|
|
|
|
- {{ deptBudgetList.processNo }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="任务编号" span="1" prop="processNo">{{ deptBudgetList.processNo }}</ws-form-item>
|
|
<!--货名-->
|
|
<!--货名-->
|
|
- <ws-form-item label="货名" span="1" prop="goodsName">
|
|
|
|
- {{ deptBudgetList.goodsName }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="货名" span="1" prop="goodsName">{{ deptBudgetList.goodsName }}</ws-form-item>
|
|
<!--重量(吨)-->
|
|
<!--重量(吨)-->
|
|
- <ws-form-item label="重量(吨)" span="1" prop="weight">
|
|
|
|
- {{ deptBudgetList.weight }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="重量(吨)" span="1" prop="weight">{{ deptBudgetList.weight }}</ws-form-item>
|
|
<!--发货地址-->
|
|
<!--发货地址-->
|
|
<ws-form-item label="发货地址" span="1" prop="sendDetailedAddress">
|
|
<ws-form-item label="发货地址" span="1" prop="sendDetailedAddress">
|
|
{{ deptBudgetList.sendPrivate }}{{ deptBudgetList.sendCity
|
|
{{ deptBudgetList.sendPrivate }}{{ deptBudgetList.sendCity
|
|
}}{{ deptBudgetList.sendArea }}
|
|
}}{{ deptBudgetList.sendArea }}
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--发货人-->
|
|
<!--发货人-->
|
|
- <ws-form-item label="发货人" span="1" prop="sender" class="readonly">
|
|
|
|
- {{ deptBudgetList.sender }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item
|
|
|
|
+ label="发货人"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="sender"
|
|
|
|
+ class="readonly"
|
|
|
|
+ >{{ deptBudgetList.sender }}</ws-form-item>
|
|
<!--发货人电话-->
|
|
<!--发货人电话-->
|
|
<ws-form-item
|
|
<ws-form-item
|
|
label="发货人电话"
|
|
label="发货人电话"
|
|
span="1"
|
|
span="1"
|
|
prop="senderPhone"
|
|
prop="senderPhone"
|
|
class="readonly"
|
|
class="readonly"
|
|
- >
|
|
|
|
- {{ deptBudgetList.senderPhone }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ >{{ deptBudgetList.senderPhone }}</ws-form-item>
|
|
<!--收货地址-->
|
|
<!--收货地址-->
|
|
<ws-form-item label="收货地址" span="1" prop="receiveDetailedAddress">
|
|
<ws-form-item label="收货地址" span="1" prop="receiveDetailedAddress">
|
|
{{ deptBudgetList.receivePrivate }}{{ deptBudgetList.receiveCity
|
|
{{ deptBudgetList.receivePrivate }}{{ deptBudgetList.receiveCity
|
|
}}{{ deptBudgetList.receiveArea }}
|
|
}}{{ deptBudgetList.receiveArea }}
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--收货人-->
|
|
<!--收货人-->
|
|
- <ws-form-item label="收货人" span="1" prop="receiver">
|
|
|
|
- {{ deptBudgetList.receiver }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="收货人" span="1" prop="receiver">{{ deptBudgetList.receiver }}</ws-form-item>
|
|
<!--收货人电话-->
|
|
<!--收货人电话-->
|
|
- <ws-form-item label="收货人电话" span="1" prop="receiverPhone">
|
|
|
|
- {{ deptBudgetList.receiverPhone }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="收货人电话" span="1" prop="receiverPhone">{{ deptBudgetList.receiverPhone }}</ws-form-item>
|
|
<!--发货日期-->
|
|
<!--发货日期-->
|
|
- <ws-form-item label="发货日期" span="1" prop="deliveryDateStart">
|
|
|
|
- {{ deptBudgetList.deliveryDateStart }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item
|
|
|
|
+ label="发货日期"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="deliveryDateStart"
|
|
|
|
+ >{{ deptBudgetList.deliveryDateStart }}</ws-form-item>
|
|
<!--最晚到货日期-->
|
|
<!--最晚到货日期-->
|
|
- <ws-form-item label="最晚到货日期" span="1" prop="deliveryDateEnd">
|
|
|
|
- {{ deptBudgetList.deliveryDateEnd }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item
|
|
|
|
+ label="最晚到货日期"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="deliveryDateEnd"
|
|
|
|
+ >{{ deptBudgetList.deliveryDateEnd }}</ws-form-item>
|
|
<!--合同编号-->
|
|
<!--合同编号-->
|
|
- <ws-form-item label="合同编号" span="1" prop="contractNo">
|
|
|
|
- {{ deptBudgetList.contractNo }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="合同编号" span="1" prop="contractNo">{{ deptBudgetList.contractNo }}</ws-form-item>
|
|
<!-- 运输方式 -->
|
|
<!-- 运输方式 -->
|
|
- <ws-form-item label="运输方式" span="1" prop="contractNo">
|
|
|
|
- {{ deptBudgetList.contractNo }}
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-form-item label="运输方式" span="1" prop="contractNo">{{ deptBudgetList.contractNo }}</ws-form-item>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
<div class="small-title" style="font-size: 16px; width: 50%;float: left;">装车详情</div>
|
|
<div class="small-title" style="font-size: 16px; width: 50%;float: left;">装车详情</div>
|
|
- <!-- 导入 -->
|
|
|
|
|
|
+ <!-- 导入 -->
|
|
<div style="font-size: 16px; width: 50%;float: left;text-align: right;">
|
|
<div style="font-size: 16px; width: 50%;float: left;text-align: right;">
|
|
<!-- <el-upload style="margin-left: 8px;"
|
|
<!-- <el-upload style="margin-left: 8px;"
|
|
class=""
|
|
class=""
|
|
@@ -125,41 +107,33 @@
|
|
<ws-info-table>
|
|
<ws-info-table>
|
|
<div class="catNos" v-show="item.temporaryDriverFlag == 0">
|
|
<div class="catNos" v-show="item.temporaryDriverFlag == 0">
|
|
司机-{{ index + 1 }}
|
|
司机-{{ index + 1 }}
|
|
- <span class="noservice" v-show="item.status == '未装车'">{{
|
|
|
|
- item.status
|
|
|
|
- }}</span>
|
|
|
|
- <span class="service" v-show="item.status == '已装车'">{{
|
|
|
|
- item.status
|
|
|
|
- }}</span>
|
|
|
|
- <span class="serviced" v-show="item.status == '已送达'">{{
|
|
|
|
- item.status
|
|
|
|
- }}</span>
|
|
|
|
|
|
+ <span class="noservice" v-show="item.status == '未装车'">
|
|
|
|
+ {{
|
|
|
|
+ item.status
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
|
|
+ <span class="service" v-show="item.status == '已装车'">
|
|
|
|
+ {{
|
|
|
|
+ item.status
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
|
|
+ <span class="serviced" v-show="item.status == '已送达'">
|
|
|
|
+ {{
|
|
|
|
+ item.status
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class="catNos catNosCor"
|
|
class="catNos catNosCor"
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
- >
|
|
|
|
- 司机-{{ index + 1 }}(临)
|
|
|
|
- </div>
|
|
|
|
|
|
+ >司机-{{ index + 1 }}(临)</div>
|
|
<!--司机-->
|
|
<!--司机-->
|
|
- <ws-form-item
|
|
|
|
- label="姓名:"
|
|
|
|
- span="1"
|
|
|
|
- prop="driver"
|
|
|
|
- v-show="item.temporaryDriverFlag == 0"
|
|
|
|
- >
|
|
|
|
- <span v-show="item.temporaryDriverFlag == 0"
|
|
|
|
- >{{ item.driver }}
|
|
|
|
- </span>
|
|
|
|
|
|
+ <ws-form-item label="姓名:" span="1" prop="driver" v-show="item.temporaryDriverFlag == 0">
|
|
|
|
+ <span v-show="item.temporaryDriverFlag == 0">{{ item.driver }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--司机-->
|
|
<!--司机-->
|
|
|
|
|
|
- <ws-form-item
|
|
|
|
- label="姓名:"
|
|
|
|
- span="1"
|
|
|
|
- prop="driver"
|
|
|
|
- v-show="item.temporaryDriverFlag != 0"
|
|
|
|
- >
|
|
|
|
|
|
+ <ws-form-item label="姓名:" span="1" prop="driver" v-show="item.temporaryDriverFlag != 0">
|
|
<el-select
|
|
<el-select
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
v-model="item.driver"
|
|
v-model="item.driver"
|
|
@@ -185,9 +159,7 @@
|
|
maxlength="20"
|
|
maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
/>
|
|
/>
|
|
- <span v-show="item.temporaryDriverFlag == 0"
|
|
|
|
- >{{ item.driverPhone }}
|
|
|
|
- </span>
|
|
|
|
|
|
+ <span v-show="item.temporaryDriverFlag == 0">{{ item.driverPhone }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--车牌号-->
|
|
<!--车牌号-->
|
|
<ws-form-item label="车牌号:" span="1" prop="carNo">
|
|
<ws-form-item label="车牌号:" span="1" prop="carNo">
|
|
@@ -198,14 +170,12 @@
|
|
maxlength="20"
|
|
maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
/>
|
|
/>
|
|
- <span v-show="item.temporaryDriverFlag == 0"
|
|
|
|
- >{{ item.carNo }}
|
|
|
|
- </span>
|
|
|
|
|
|
+ <span v-show="item.temporaryDriverFlag == 0">{{ item.carNo }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--装车净重-->
|
|
<!--装车净重-->
|
|
<ws-form-item label="装车净重:" span="1" prop="loadNetWeight">
|
|
<ws-form-item label="装车净重:" span="1" prop="loadNetWeight">
|
|
<ws-input
|
|
<ws-input
|
|
- v-if="item.status == '已装车'||item.status == '已送达'"
|
|
|
|
|
|
+ v-if="item.status == '已装车'||item.status == '已送达'"
|
|
:disabled="readonly"
|
|
:disabled="readonly"
|
|
v-model="item.loadNetWeight"
|
|
v-model="item.loadNetWeight"
|
|
placeholder="请输入装车净重"
|
|
placeholder="请输入装车净重"
|
|
@@ -213,7 +183,7 @@
|
|
size="small"
|
|
size="small"
|
|
style="width:80px"
|
|
style="width:80px"
|
|
/>
|
|
/>
|
|
- <ws-input
|
|
|
|
|
|
+ <ws-input
|
|
v-else
|
|
v-else
|
|
v-model="item.loadNetWeight"
|
|
v-model="item.loadNetWeight"
|
|
placeholder="请输入装车净重"
|
|
placeholder="请输入装车净重"
|
|
@@ -224,35 +194,36 @@
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--装车日期-->
|
|
<!--装车日期-->
|
|
<ws-form-item label="装车日期:" span="1" prop="sendDateStart">
|
|
<ws-form-item label="装车日期:" span="1" prop="sendDateStart">
|
|
- <ws-date-picker
|
|
|
|
- v-if="item.status == '已装车'||item.status == '已送达'"
|
|
|
|
- :disabled="readonly"
|
|
|
|
- v-model="item.sendDateStart"
|
|
|
|
- type="date"
|
|
|
|
- class="picker"
|
|
|
|
- placeholder="请选择日期"
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
- />
|
|
|
|
- <ws-date-picker
|
|
|
|
- v-else
|
|
|
|
- v-model="item.sendDateStart"
|
|
|
|
- type="date"
|
|
|
|
- class="picker"
|
|
|
|
- placeholder="请选择日期"
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <ws-date-picker
|
|
|
|
+ v-if="item.status == '已装车'||item.status == '已送达'"
|
|
|
|
+ :disabled="readonly"
|
|
|
|
+ v-model="item.sendDateStart"
|
|
|
|
+ type="date"
|
|
|
|
+ class="picker"
|
|
|
|
+ placeholder="请选择日期"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ />
|
|
|
|
+ <ws-date-picker
|
|
|
|
+ v-else
|
|
|
|
+ v-model="item.sendDateStart"
|
|
|
|
+ type="date"
|
|
|
|
+ class="picker"
|
|
|
|
+ placeholder="请选择日期"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
<!--磅单-->
|
|
<!--磅单-->
|
|
<ws-form-item label="磅单:" span="1" prop="loadPoundImg">
|
|
<ws-form-item label="磅单:" span="1" prop="loadPoundImg">
|
|
<!-- slot-scope="scope" -->
|
|
<!-- slot-scope="scope" -->
|
|
- <template >
|
|
|
|
|
|
+ <template>
|
|
<el-upload
|
|
<el-upload
|
|
action="https://www.zthymaoyi.com/upload/admin"
|
|
action="https://www.zthymaoyi.com/upload/admin"
|
|
:show-file-list="false"
|
|
:show-file-list="false"
|
|
:on-success=" (res) => { uploadSuccessHandle1(res,index)}"
|
|
:on-success=" (res) => { uploadSuccessHandle1(res,index)}"
|
|
class="avatar-uploader"
|
|
class="avatar-uploader"
|
|
accept=".jpg, .jpeg, .png, .gif"
|
|
accept=".jpg, .jpeg, .png, .gif"
|
|
- ><img
|
|
|
|
|
|
+ >
|
|
|
|
+ <img
|
|
width="18"
|
|
width="18"
|
|
height="20"
|
|
height="20"
|
|
style="
|
|
style="
|
|
@@ -260,31 +231,33 @@
|
|
position: relative;
|
|
position: relative;
|
|
"
|
|
"
|
|
src="../../../public/img/fujian.png"
|
|
src="../../../public/img/fujian.png"
|
|
- alt=""
|
|
|
|
|
|
+ alt
|
|
/>
|
|
/>
|
|
</el-upload>
|
|
</el-upload>
|
|
- <span v-if="deptBudgetList.tranCarInfoList[index].loadPoundImg != null " >1</span>
|
|
|
|
- <span
|
|
|
|
|
|
+ <span v-if="deptBudgetList.tranCarInfoList[index].loadPoundImg != null ">1</span>
|
|
|
|
+ <span
|
|
v-if="
|
|
v-if="
|
|
deptBudgetList.tranCarInfoList[index].loadPoundImg == null
|
|
deptBudgetList.tranCarInfoList[index].loadPoundImg == null
|
|
"
|
|
"
|
|
- >未上传</span>
|
|
|
|
|
|
+ >未上传</span>
|
|
</template>
|
|
</template>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--箱号-->
|
|
|
|
|
|
+ <!--箱号-->
|
|
<ws-form-item label="箱号:" span="1" prop="caseNo">
|
|
<ws-form-item label="箱号:" span="1" prop="caseNo">
|
|
- <span>{{ item.caseNo }}</span>
|
|
|
|
|
|
+ <span>{{ item.caseNo }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--封号-->
|
|
|
|
|
|
+ <!--封号-->
|
|
<ws-form-item label="封号:" span="1" prop="titleNo">
|
|
<ws-form-item label="封号:" span="1" prop="titleNo">
|
|
- <span>{{ item.titleNo }}</span>
|
|
|
|
|
|
+ <span>{{ item.titleNo }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <div v-show="item.temporaryDriverFlag == 0 && item.signStatus == '未签合同'" class="signStatus">
|
|
|
|
- {{ item.signStatus }}
|
|
|
|
- </div>
|
|
|
|
- <div v-show="item.temporaryDriverFlag == 0 && item.signStatus == '已签合同'" class="signStatus1">
|
|
|
|
- {{ item.signStatus }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div
|
|
|
|
+ v-show="item.temporaryDriverFlag == 0 && item.signStatus == '未签合同'"
|
|
|
|
+ class="signStatus"
|
|
|
|
+ >{{ item.signStatus }}</div>
|
|
|
|
+ <div
|
|
|
|
+ v-show="item.temporaryDriverFlag == 0 && item.signStatus == '已签合同'"
|
|
|
|
+ class="signStatus1"
|
|
|
|
+ >{{ item.signStatus }}</div>
|
|
<span
|
|
<span
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
width="22"
|
|
width="22"
|
|
@@ -292,49 +265,43 @@
|
|
class="del"
|
|
class="del"
|
|
@click="del(index)"
|
|
@click="del(index)"
|
|
src="../../../public/img/del.png"
|
|
src="../../../public/img/del.png"
|
|
- alt=""
|
|
|
|
- >×</span
|
|
|
|
- >
|
|
|
|
|
|
+ alt
|
|
|
|
+ >×</span>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="text-align: right; color: #8890b1; font-size: 16px">
|
|
<div style="text-align: right; color: #8890b1; font-size: 16px">
|
|
合计(吨):{{ total }}/{{ deptBudgetList.weight }}
|
|
合计(吨):{{ total }}/{{ deptBudgetList.weight }}
|
|
<!--阶段状态-->
|
|
<!--阶段状态-->
|
|
- <span class="noservice" v-show="deptBudgetList.feedbackStatus=='执行中'">
|
|
|
|
- 未完货
|
|
|
|
- </span>
|
|
|
|
- <span class="service" v-show="deptBudgetList.feedbackStatus=='已完货'">{{
|
|
|
|
|
|
+ <span class="noservice" v-show="deptBudgetList.feedbackStatus=='执行中'">未完货</span>
|
|
|
|
+ <span class="service" v-show="deptBudgetList.feedbackStatus=='已完货'">
|
|
|
|
+ {{
|
|
deptBudgetList.feedbackStatus
|
|
deptBudgetList.feedbackStatus
|
|
- }}</span>
|
|
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
</div>
|
|
</div>
|
|
<!-- <el-button class="add bg-bottom" type="primary" size="small" @click="add">
|
|
<!-- <el-button class="add bg-bottom" type="primary" size="small" @click="add">
|
|
<img width="22" height="22" src="../../../public/img/add.png" alt="" />
|
|
<img width="22" height="22" src="../../../public/img/add.png" alt="" />
|
|
<div class="spans">添加临时用车</div></el-button
|
|
<div class="spans">添加临时用车</div></el-button
|
|
- > -->
|
|
|
|
|
|
+ >-->
|
|
</ws-form>
|
|
</ws-form>
|
|
<!-- 提交 -->
|
|
<!-- 提交 -->
|
|
- <div style="margin-left: 1300px;" >
|
|
|
|
- <el-button
|
|
|
|
- class="bg-bottom"
|
|
|
|
- type="primary"
|
|
|
|
- size="small"
|
|
|
|
- @click="submit(deptBudgetList)"
|
|
|
|
- >提交</el-button
|
|
|
|
- >
|
|
|
|
- <el-button
|
|
|
|
- class="bg-bottom"
|
|
|
|
- type="primary"
|
|
|
|
- size="small"
|
|
|
|
- @click="finished (deptBudgetList)"
|
|
|
|
- >完货</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ <div style="margin-left: 1300px;">
|
|
|
|
+ <el-button class="bg-bottom" type="primary" size="small" @click="submit(deptBudgetList)">提交</el-button>
|
|
|
|
+ <el-button class="bg-bottom" type="primary" size="small" @click="finished (deptBudgetList)">完货</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import { regionData, CodeToText, TextToCode } from 'element-china-area-data'
|
|
import { regionData, CodeToText, TextToCode } from 'element-china-area-data'
|
|
-import { seeCat, packList, feedback, getbank ,state,importApplFileUrl} from '@/model/transport/index'
|
|
|
|
|
|
+import {
|
|
|
|
+ seeCat,
|
|
|
|
+ packList,
|
|
|
|
+ feedback,
|
|
|
|
+ getbank,
|
|
|
|
+ state,
|
|
|
|
+ importApplFileUrl
|
|
|
|
+} from '@/model/transport/index'
|
|
import { getstaff } from '@/model/warehouse/index'
|
|
import { getstaff } from '@/model/warehouse/index'
|
|
import WsUpload from '@/components/WsUpload'
|
|
import WsUpload from '@/components/WsUpload'
|
|
import mapDrag from '@/components/mapdrag/mapdrag'
|
|
import mapDrag from '@/components/mapdrag/mapdrag'
|
|
@@ -342,7 +309,7 @@ export default {
|
|
name: 'viewSpareMoney',
|
|
name: 'viewSpareMoney',
|
|
components: {
|
|
components: {
|
|
WsUpload,
|
|
WsUpload,
|
|
- mapDrag,
|
|
|
|
|
|
+ mapDrag
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
vesselId(val) {
|
|
vesselId(val) {
|
|
@@ -350,13 +317,12 @@ export default {
|
|
},
|
|
},
|
|
isShow(val) {
|
|
isShow(val) {
|
|
this.showType = val
|
|
this.showType = val
|
|
- },
|
|
|
|
|
|
+ }
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
deptBudgetList: {
|
|
deptBudgetList: {
|
|
- totalStorage: 0,
|
|
|
|
-
|
|
|
|
|
|
+ totalStorage: 0
|
|
},
|
|
},
|
|
options_: regionData,
|
|
options_: regionData,
|
|
heightData: '600px',
|
|
heightData: '600px',
|
|
@@ -369,7 +335,7 @@ export default {
|
|
district: null,
|
|
district: null,
|
|
driverList: [],
|
|
driverList: [],
|
|
readonly: true,
|
|
readonly: true,
|
|
- fileTemp:{},
|
|
|
|
|
|
+ fileTemp: {},
|
|
listDate: { country: '中国', level: 'country', city: '' },
|
|
listDate: { country: '中国', level: 'country', city: '' },
|
|
citylist: [],
|
|
citylist: [],
|
|
compId: sessionStorage.getItem('ws-pf_compId'),
|
|
compId: sessionStorage.getItem('ws-pf_compId'),
|
|
@@ -378,21 +344,21 @@ export default {
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
message: '请输入仓库名称',
|
|
message: '请输入仓库名称',
|
|
- trigger: 'blur',
|
|
|
|
|
|
+ trigger: 'blur'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
min: 2,
|
|
min: 2,
|
|
max: 20,
|
|
max: 20,
|
|
message: '仓库名长度不符合要求,请输入2-20字符之内',
|
|
message: '仓库名长度不符合要求,请输入2-20字符之内',
|
|
- trigger: 'blur',
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
|
|
+ trigger: 'blur'
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
},
|
|
},
|
|
tranType: 1,
|
|
tranType: 1,
|
|
size: 10,
|
|
size: 10,
|
|
value1: '',
|
|
value1: '',
|
|
unitList: [],
|
|
unitList: [],
|
|
-
|
|
|
|
|
|
+
|
|
freightspace1: [
|
|
freightspace1: [
|
|
{
|
|
{
|
|
accountTypeFlag: '1',
|
|
accountTypeFlag: '1',
|
|
@@ -401,8 +367,8 @@ export default {
|
|
compName: '',
|
|
compName: '',
|
|
bankDeposit: '',
|
|
bankDeposit: '',
|
|
addressUrlArray: [],
|
|
addressUrlArray: [],
|
|
- bankCard: '',
|
|
|
|
- },
|
|
|
|
|
|
+ bankCard: ''
|
|
|
|
+ }
|
|
],
|
|
],
|
|
freightspace: [
|
|
freightspace: [
|
|
{
|
|
{
|
|
@@ -410,17 +376,16 @@ export default {
|
|
driverPhone: '',
|
|
driverPhone: '',
|
|
carNo: '',
|
|
carNo: '',
|
|
loadNetWeight: '',
|
|
loadNetWeight: '',
|
|
- loadPoundImg:''
|
|
|
|
- },
|
|
|
|
|
|
+ loadPoundImg: ''
|
|
|
|
+ }
|
|
// {loadPoundImg:{}},
|
|
// {loadPoundImg:{}},
|
|
-
|
|
|
|
],
|
|
],
|
|
name: '',
|
|
name: '',
|
|
staffList: [],
|
|
staffList: [],
|
|
options: [],
|
|
options: [],
|
|
carModel: [],
|
|
carModel: [],
|
|
tranCarInfoList: {
|
|
tranCarInfoList: {
|
|
- loadPoundImg:''
|
|
|
|
|
|
+ loadPoundImg: ''
|
|
},
|
|
},
|
|
localFile:'',
|
|
localFile:'',
|
|
//上传
|
|
//上传
|
|
@@ -428,21 +393,25 @@ export default {
|
|
accessoryTFs: false,
|
|
accessoryTFs: false,
|
|
fileList: [],
|
|
fileList: [],
|
|
appendixIdsAdd: '',
|
|
appendixIdsAdd: '',
|
|
|
|
+ messageAddEventListener: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
activated() {
|
|
activated() {
|
|
this.deptBudgetList.id = this.$route.query.id
|
|
this.deptBudgetList.id = this.$route.query.id
|
|
this.getList()
|
|
this.getList()
|
|
},
|
|
},
|
|
|
|
+ mounted() {
|
|
|
|
+ window.noMessege = this.noMessege
|
|
|
|
+ },
|
|
computed: {
|
|
computed: {
|
|
- totalStorage: function () {
|
|
|
|
|
|
+ totalStorage: function() {
|
|
var maxStorage = 0
|
|
var maxStorage = 0
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
maxStorage += Number(this.freightspace[i].maxStorage)
|
|
maxStorage += Number(this.freightspace[i].maxStorage)
|
|
}
|
|
}
|
|
return maxStorage
|
|
return maxStorage
|
|
},
|
|
},
|
|
- total: function () {
|
|
|
|
|
|
+ total: function() {
|
|
if (this.deptBudgetList.tranCarInfoList != null) {
|
|
if (this.deptBudgetList.tranCarInfoList != null) {
|
|
var maxStorage = 0
|
|
var maxStorage = 0
|
|
for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
|
|
for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
|
|
@@ -454,7 +423,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
return 0
|
|
return 0
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
uploadHandle(response, file, fileList){
|
|
uploadHandle(response, file, fileList){
|
|
@@ -575,15 +544,16 @@ let Base64 = require('js-base64').Base64
|
|
},
|
|
},
|
|
uploadSuccessHandle(e) {
|
|
uploadSuccessHandle(e) {
|
|
console.log(e)
|
|
console.log(e)
|
|
- importApplFileUrl({file:e.url}) .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- console.log(response)
|
|
|
|
- })
|
|
|
|
|
|
+ importApplFileUrl({ file: e.url })
|
|
|
|
+ .toPromise()
|
|
|
|
+ .then(response => {
|
|
|
|
+ console.log(response)
|
|
|
|
+ })
|
|
},
|
|
},
|
|
dataFilter(val) {
|
|
dataFilter(val) {
|
|
this.deptBudgetList.personCharge = val
|
|
this.deptBudgetList.personCharge = val
|
|
if (val) {
|
|
if (val) {
|
|
- this.options = this.staffList.filter((item) => {
|
|
|
|
|
|
+ this.options = this.staffList.filter(item => {
|
|
if (
|
|
if (
|
|
!!~item.staffName.indexOf(val) ||
|
|
!!~item.staffName.indexOf(val) ||
|
|
!!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
|
|
!!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
|
|
@@ -604,7 +574,7 @@ let Base64 = require('js-base64').Base64
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- marker: function (item) {
|
|
|
|
|
|
+ marker: function(item) {
|
|
this.deptBudgetList.warehousePositioning =
|
|
this.deptBudgetList.warehousePositioning =
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
},
|
|
},
|
|
@@ -625,7 +595,7 @@ let Base64 = require('js-base64').Base64
|
|
driver: '',
|
|
driver: '',
|
|
driverPhone: '',
|
|
driverPhone: '',
|
|
carNo: '',
|
|
carNo: '',
|
|
- loadNetWeight: '',
|
|
|
|
|
|
+ loadNetWeight: ''
|
|
})
|
|
})
|
|
},
|
|
},
|
|
del(index) {
|
|
del(index) {
|
|
@@ -651,29 +621,27 @@ let Base64 = require('js-base64').Base64
|
|
this.accessoryTFs = false
|
|
this.accessoryTFs = false
|
|
},
|
|
},
|
|
//导入
|
|
//导入
|
|
- import(){
|
|
|
|
-
|
|
|
|
- },
|
|
|
|
- finished(){
|
|
|
|
- this.$confirm(`完货操作后,装车信息不可修改,是否确定完货?`, {
|
|
|
|
|
|
+ import() {},
|
|
|
|
+ finished() {
|
|
|
|
+ this.$confirm(`完货操作后,装车信息不可修改,是否确定完货?`, {
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|
|
- type: 'warning',
|
|
|
|
|
|
+ type: 'warning'
|
|
})
|
|
})
|
|
.then(() => {
|
|
.then(() => {
|
|
- this.$refs.deptBudgetList.validate((valid) => {
|
|
|
|
|
|
+ this.$refs.deptBudgetList.validate(valid => {
|
|
if (valid) {
|
|
if (valid) {
|
|
var tranProcessInfo = {}
|
|
var tranProcessInfo = {}
|
|
tranProcessInfo.id = this.deptBudgetList.id
|
|
tranProcessInfo.id = this.deptBudgetList.id
|
|
state(tranProcessInfo)
|
|
state(tranProcessInfo)
|
|
.toPromise()
|
|
.toPromise()
|
|
- .then((response) => {
|
|
|
|
|
|
+ .then(response => {
|
|
this.$message.success('完货成功')
|
|
this.$message.success('完货成功')
|
|
this.deptBudgetList = {}
|
|
this.deptBudgetList = {}
|
|
this.freightspace = {}
|
|
this.freightspace = {}
|
|
this.selectedOptions = ''
|
|
this.selectedOptions = ''
|
|
this.$router.push({
|
|
this.$router.push({
|
|
- path: 'tranManagementTransporHairRespond',
|
|
|
|
|
|
+ path: 'tranManagementTransporHairRespond'
|
|
})
|
|
})
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
@@ -684,7 +652,53 @@ let Base64 = require('js-base64').Base64
|
|
.catch(() => {
|
|
.catch(() => {
|
|
return false
|
|
return false
|
|
})
|
|
})
|
|
-
|
|
|
|
|
|
+ },
|
|
|
|
+ noMessege() {
|
|
|
|
+ sessionStorage.setItem('qy-msg',"true")
|
|
|
|
+ },
|
|
|
|
+ validateFunc() {
|
|
|
|
+ this.$refs.deptBudgetList.validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ // this.deptBudgetList.totalStorage = this.totalStorage
|
|
|
|
+ this.tranCarInfoList = this.freightspace
|
|
|
|
+ this.tranCarInfoList.driver = this.deptBudgetList.driver
|
|
|
|
+ this.tranCarInfoList.driverPhone = this.deptBudgetList.driverPhone
|
|
|
|
+ this.tranCarInfoList.tranCarNo = this.deptBudgetList.tranCarNo
|
|
|
|
+ this.tranCarInfoList.carNo = this.deptBudgetList.carNo
|
|
|
|
+ this.tranCarInfoList.loadNetWeight = this.deptBudgetList.loadNetWeight
|
|
|
|
+ this.tranCarInfoList.tranType = this.tranType
|
|
|
|
+ this.tranCarInfoList.loadPoundImg = this.deptBudgetList.loadPoundImg
|
|
|
|
+ // this.tranCarInfoList.boxNo = this.arr.toString()
|
|
|
|
+ for (var i = 0; i < this.tranCarInfoList.length; i++) {
|
|
|
|
+ this.tranCarInfoList[i].id = this.freightspace[i].id
|
|
|
|
+ if (this.tranCarInfoList[i].temporaryDriverFlag != 0) {
|
|
|
|
+ this.tranCarInfoList[i].temporaryDriverFlag = 1
|
|
|
|
+ this.tranCarInfoList[i].tranType = this.tranType
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ var tranProcessInfo = {}
|
|
|
|
+ tranProcessInfo.id = this.deptBudgetList.id
|
|
|
|
+ tranProcessInfo.infoId = this.deptBudgetList.infoId
|
|
|
|
+ tranProcessInfo.processNo = this.deptBudgetList.processNo
|
|
|
|
+ tranProcessInfo.tranPrice = this.deptBudgetList.tranPrice
|
|
|
|
+ tranProcessInfo.tranCarInfoList = this.tranCarInfoList
|
|
|
|
+ // dispatchCat({tranCarInfo:{tranCarInfoList:[this.tranCarInfoList],id:this.deptBudgetList.id}
|
|
|
|
+ feedback(tranProcessInfo)
|
|
|
|
+ .toPromise()
|
|
|
|
+ .then(response => {
|
|
|
|
+ this.$message.success('提交成功')
|
|
|
|
+ this.deptBudgetList = {}
|
|
|
|
+ this.freightspace = {}
|
|
|
|
+ this.selectedOptions = ''
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: 'tranManagementTransporHairRespond'
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
},
|
|
},
|
|
submit() {
|
|
submit() {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
@@ -692,95 +706,63 @@ let Base64 = require('js-base64').Base64
|
|
if (!this.freightspace[i].driver) {
|
|
if (!this.freightspace[i].driver) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '司机姓名不能为空!',
|
|
message: '司机姓名不能为空!',
|
|
- type: 'warning',
|
|
|
|
|
|
+ type: 'warning'
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (!this.freightspace[i].driverPhone) {
|
|
if (!this.freightspace[i].driverPhone) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '司机电话不能为空!',
|
|
message: '司机电话不能为空!',
|
|
- type: 'warning',
|
|
|
|
|
|
+ type: 'warning'
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (!this.freightspace[i].carNo) {
|
|
if (!this.freightspace[i].carNo) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '车牌号不能为空!',
|
|
message: '车牌号不能为空!',
|
|
- type: 'warning',
|
|
|
|
|
|
+ type: 'warning'
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (!this.freightspace[i].loadNetWeight) {
|
|
if (!this.freightspace[i].loadNetWeight) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '装载净重不能为空!',
|
|
message: '装载净重不能为空!',
|
|
- type: 'warning',
|
|
|
|
|
|
+ type: 'warning'
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- this.$confirm(`提交成功后提醒司机及时签订运输合同,确定提交装车信息?`, {
|
|
|
|
- confirmButtonText: '确定',
|
|
|
|
- cancelButtonText: '取消',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- .then(() => {
|
|
|
|
- this.$refs.deptBudgetList.validate((valid) => {
|
|
|
|
- if (valid) {
|
|
|
|
- // this.deptBudgetList.totalStorage = this.totalStorage
|
|
|
|
- this.tranCarInfoList = this.freightspace
|
|
|
|
- this.tranCarInfoList.driver = this.deptBudgetList.driver
|
|
|
|
- this.tranCarInfoList.driverPhone = this.deptBudgetList.driverPhone
|
|
|
|
- this.tranCarInfoList.tranCarNo = this.deptBudgetList.tranCarNo
|
|
|
|
- this.tranCarInfoList.carNo = this.deptBudgetList.carNo
|
|
|
|
- this.tranCarInfoList.loadNetWeight =
|
|
|
|
- this.deptBudgetList.loadNetWeight
|
|
|
|
- this.tranCarInfoList.tranType = this.tranType
|
|
|
|
- this.tranCarInfoList.loadPoundImg =
|
|
|
|
- this.deptBudgetList.loadPoundImg
|
|
|
|
- // this.tranCarInfoList.boxNo = this.arr.toString()
|
|
|
|
- for (var i = 0; i < this.tranCarInfoList.length; i++) {
|
|
|
|
- this.tranCarInfoList[i].id = this.freightspace[i].id
|
|
|
|
- if (this.tranCarInfoList[i].temporaryDriverFlag != 0) {
|
|
|
|
- this.tranCarInfoList[i].temporaryDriverFlag = 1
|
|
|
|
- this.tranCarInfoList[i].tranType = this.tranType
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- var tranProcessInfo = {}
|
|
|
|
- tranProcessInfo.id = this.deptBudgetList.id
|
|
|
|
- tranProcessInfo.infoId = this.deptBudgetList.infoId
|
|
|
|
- tranProcessInfo.processNo = this.deptBudgetList.processNo
|
|
|
|
- tranProcessInfo.tranPrice = this.deptBudgetList.tranPrice
|
|
|
|
- tranProcessInfo.tranCarInfoList = this.tranCarInfoList
|
|
|
|
- // dispatchCat({tranCarInfo:{tranCarInfoList:[this.tranCarInfoList],id:this.deptBudgetList.id}
|
|
|
|
- feedback(tranProcessInfo)
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.$message.success('提交成功')
|
|
|
|
- this.deptBudgetList = {}
|
|
|
|
- this.freightspace = {}
|
|
|
|
- this.selectedOptions = ''
|
|
|
|
- this.$router.push({
|
|
|
|
- path: 'tranManagementTransporHairRespond',
|
|
|
|
- })
|
|
|
|
- })
|
|
|
|
- } else {
|
|
|
|
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
|
|
+ if (sessionStorage.getItem('qy-msg')) {
|
|
|
|
+ this.validateFunc()
|
|
|
|
+ } else {
|
|
|
|
+ this.$alert(
|
|
|
|
+ '<div><strong>提交成功后提醒司机及时签订运输合同,确定提交装车信息?</strong><div style="display:flex;align-items: center;"><input id="noMsg" type="checkbox" onclick="window.noMessege(1)"><span style="margin-left:10px">不在提示</span><div></div>',
|
|
|
|
+ '',
|
|
|
|
+ {
|
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
|
+ distinguishCancelAndClose: true,
|
|
|
|
+ showCancelButton: true,
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消'
|
|
|
|
+ }
|
|
|
|
+ )
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.validateFunc()
|
|
})
|
|
})
|
|
- })
|
|
|
|
- .catch(() => {
|
|
|
|
- return false
|
|
|
|
- })
|
|
|
|
|
|
+ .catch(() => {
|
|
|
|
+ return false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
|
|
+
|
|
resetForm(deptBudgetList) {
|
|
resetForm(deptBudgetList) {
|
|
this.$refs[deptBudgetList].resetFields()
|
|
this.$refs[deptBudgetList].resetFields()
|
|
},
|
|
},
|
|
getList() {
|
|
getList() {
|
|
seeCat({ id: this.deptBudgetList.id })
|
|
seeCat({ id: this.deptBudgetList.id })
|
|
.toPromise()
|
|
.toPromise()
|
|
- .then((response) => {
|
|
|
|
|
|
+ .then(response => {
|
|
this.deptBudgetList = response
|
|
this.deptBudgetList = response
|
|
// this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
|
|
// this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
|
|
this.freightspace = response.tranCarInfoList
|
|
this.freightspace = response.tranCarInfoList
|
|
@@ -793,14 +775,14 @@ let Base64 = require('js-base64').Base64
|
|
//司机姓名下拉
|
|
//司机姓名下拉
|
|
getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
|
|
getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
|
|
.toPromise()
|
|
.toPromise()
|
|
- .then((response) => {
|
|
|
|
|
|
+ .then(response => {
|
|
this.options = response
|
|
this.options = response
|
|
this.staffList = response
|
|
this.staffList = response
|
|
})
|
|
})
|
|
//车型
|
|
//车型
|
|
packList({ constId: 'TRAN5' })
|
|
packList({ constId: 'TRAN5' })
|
|
.toPromise()
|
|
.toPromise()
|
|
- .then((response) => {
|
|
|
|
|
|
+ .then(response => {
|
|
this.carModel = response
|
|
this.carModel = response
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -844,11 +826,10 @@ let Base64 = require('js-base64').Base64
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- uploadSuccessHandle1(e,index) {
|
|
|
|
-
|
|
|
|
|
|
+ uploadSuccessHandle1(e, index) {
|
|
this.freightspace[index].loadPoundImg = e.url
|
|
this.freightspace[index].loadPoundImg = e.url
|
|
- },
|
|
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
@@ -1052,8 +1033,8 @@ let Base64 = require('js-base64').Base64
|
|
display: none;
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- /deep/ .picker{
|
|
|
|
- padding-right: 3px !important;
|
|
|
|
|
|
+ /deep/ .picker {
|
|
|
|
+ padding-right: 3px !important;
|
|
}
|
|
}
|
|
|
|
|
|
// .is-disabled {
|
|
// .is-disabled {
|
|
@@ -1227,10 +1208,10 @@ let Base64 = require('js-base64').Base64
|
|
border: 1px solid #5473e8;
|
|
border: 1px solid #5473e8;
|
|
padding: 0 3px;
|
|
padding: 0 3px;
|
|
margin-left: 18px;
|
|
margin-left: 18px;
|
|
- color: #5473E8;
|
|
|
|
|
|
+ color: #5473e8;
|
|
line-height: 24px;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
-.line{
|
|
|
|
|
|
+.line {
|
|
height: 26px;
|
|
height: 26px;
|
|
margin-top: 6px;
|
|
margin-top: 6px;
|
|
left: 2px;
|
|
left: 2px;
|
|
@@ -1252,7 +1233,7 @@ let Base64 = require('js-base64').Base64
|
|
background: #e5f1f7;
|
|
background: #e5f1f7;
|
|
color: #50cad4;
|
|
color: #50cad4;
|
|
}
|
|
}
|
|
-/deep/.liaison .ws-info-table .el-form-item .el-form-item__content{
|
|
|
|
|
|
+/deep/.liaison .ws-info-table .el-form-item .el-form-item__content {
|
|
padding: 0px;
|
|
padding: 0px;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|