|
@@ -10,7 +10,7 @@
|
|
class="bg-bottom"
|
|
class="bg-bottom"
|
|
type="primary"
|
|
type="primary"
|
|
size="small"
|
|
size="small"
|
|
- @click="returnsales()"
|
|
|
|
|
|
+ @click="revert()"
|
|
><img
|
|
><img
|
|
width="6"
|
|
width="6"
|
|
height="10"
|
|
height="10"
|
|
@@ -91,25 +91,19 @@
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
<div class="small-title" style="font-size: 16px">联络员及车次</div>
|
|
<div class="small-title" style="font-size: 16px">联络员及车次</div>
|
|
<div class="lianluoyuan">
|
|
<div class="lianluoyuan">
|
|
- <div
|
|
|
|
- style="width: 100%"
|
|
|
|
- class="flex position"
|
|
|
|
- v-for="(item, index) in this.freightspace"
|
|
|
|
- :key="index"
|
|
|
|
- >
|
|
|
|
<ws-info-table>
|
|
<ws-info-table>
|
|
<!--姓名-->
|
|
<!--姓名-->
|
|
<ws-form-item label="姓名:" span="1" prop="driver">
|
|
<ws-form-item label="姓名:" span="1" prop="driver">
|
|
- <span>{{ item.driver }}</span>
|
|
|
|
|
|
+ <span>{{ deptBudgetList.driver }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--电话-->
|
|
<!--电话-->
|
|
<ws-form-item label="电话:" span="1" prop="driverPhone">
|
|
<ws-form-item label="电话:" span="1" prop="driverPhone">
|
|
- <span>{{ item.driverPhone }}</span>
|
|
|
|
|
|
+ <span>{{ deptBudgetList.driverPhone }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--发车日期-->
|
|
<!--发车日期-->
|
|
<el-form-item label="发车日期:" span="1" prop="sendDateStart">
|
|
<el-form-item label="发车日期:" span="1" prop="sendDateStart">
|
|
<ws-date-picker
|
|
<ws-date-picker
|
|
- v-model="item.sendDateStart"
|
|
|
|
|
|
+ v-model="deptBudgetList.sendDateStart"
|
|
type="date"
|
|
type="date"
|
|
style="width: 150px"
|
|
style="width: 150px"
|
|
placeholder="请选择日期"
|
|
placeholder="请选择日期"
|
|
@@ -118,15 +112,14 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<!--到站日期-->
|
|
<!--到站日期-->
|
|
<ws-form-item label="到站日期:" span="1" prop="receiveDateEnd">
|
|
<ws-form-item label="到站日期:" span="1" prop="receiveDateEnd">
|
|
- <span>{{ item.receiveDateEnd }}</span>
|
|
|
|
|
|
+ <span>{{ deptBudgetList.receiveDateEnd }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--车型-->
|
|
<!--车型-->
|
|
<ws-form-item label="车型:" span="1" prop="caeModel">
|
|
<ws-form-item label="车型:" span="1" prop="caeModel">
|
|
- <span>{{ item.carModel }}</span>
|
|
|
|
|
|
+ <span>{{ deptBudgetList.carModel }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
<div class="small-title" style="font-size: 16px">卸车详情</div>
|
|
<div class="small-title" style="font-size: 16px">卸车详情</div>
|
|
<div class="liaison">
|
|
<div class="liaison">
|
|
<div
|
|
<div
|
|
@@ -137,32 +130,34 @@
|
|
>
|
|
>
|
|
<ws-info-table>
|
|
<ws-info-table>
|
|
<!--车厢号-->
|
|
<!--车厢号-->
|
|
- <div class="catNos">
|
|
|
|
- 车厢号-{{ index + 1 }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="catNos">车厢号-{{ index + 1 }}</div>
|
|
<ws-form-item label="车厢号:" span="1" prop="boxNo">
|
|
<ws-form-item label="车厢号:" span="1" prop="boxNo">
|
|
<span>{{ item.boxNo }}</span>
|
|
<span>{{ item.boxNo }}</span>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
|
|
+ <!--装车净重 -->
|
|
|
|
+ <ws-form-item label="装车净重:" span="1" prop="loadNetWeight">
|
|
|
|
+ <span>{{ item.loadNetWeight }}</span>
|
|
|
|
+ </ws-form-item>
|
|
<!--卸车净重-->
|
|
<!--卸车净重-->
|
|
- <ws-form-item label="卸车净重:" span="1" prop="loadNetWeight">
|
|
|
|
|
|
+ <ws-form-item label="卸车净重:" span="1" prop="unloadNetWeight">
|
|
<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.unloadNetWeight"
|
|
placeholder="请输入卸车净重"
|
|
placeholder="请输入卸车净重"
|
|
maxlength="20"
|
|
maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
/>
|
|
/>
|
|
<ws-input
|
|
<ws-input
|
|
v-else
|
|
v-else
|
|
- v-model="item.loadNetWeight"
|
|
|
|
|
|
+ v-model="item.unloadNetWeight"
|
|
placeholder="请输入卸车净重"
|
|
placeholder="请输入卸车净重"
|
|
maxlength="20"
|
|
maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--磅单-->
|
|
<!--磅单-->
|
|
- <ws-form-item label="磅单:" span="1" prop="loadPoundImg">
|
|
|
|
|
|
+ <ws-form-item label="磅单:" span="1" prop="unloadPoundImg">
|
|
<!-- slot-scope="scope" -->
|
|
<!-- slot-scope="scope" -->
|
|
<template>
|
|
<template>
|
|
<el-upload
|
|
<el-upload
|
|
@@ -185,41 +180,57 @@
|
|
</el-upload>
|
|
</el-upload>
|
|
<span
|
|
<span
|
|
v-if="
|
|
v-if="
|
|
- deptBudgetList.tranCarInfoList[index].loadPoundImg != null
|
|
|
|
|
|
+ deptBudgetList.tranCarInfoList[index].unloadPoundImg != null
|
|
"
|
|
"
|
|
>1</span
|
|
>1</span
|
|
>
|
|
>
|
|
<span
|
|
<span
|
|
v-if="
|
|
v-if="
|
|
- deptBudgetList.tranCarInfoList[index].loadPoundImg == null
|
|
|
|
|
|
+ deptBudgetList.tranCarInfoList[index].unloadPoundImg == null
|
|
"
|
|
"
|
|
>未上传</span
|
|
>未上传</span
|
|
>
|
|
>
|
|
</template>
|
|
</template>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!--卸车日期-->
|
|
<!--卸车日期-->
|
|
- <el-form-item label="卸车日期:" span="1" prop="sendDateStart" >
|
|
|
|
- <ws-date-picker
|
|
|
|
- v-model="item.sendDateStart"
|
|
|
|
- type="date"
|
|
|
|
- style="width: 150px;"
|
|
|
|
- placeholder="请选择日期"
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
-
|
|
|
|
- <!-- 提交 -->
|
|
|
|
- <div style="text-align: right; padding: 10px" class="center">
|
|
|
|
- <el-button
|
|
|
|
- class="bg-bottom"
|
|
|
|
- type="primary"
|
|
|
|
- size="small"
|
|
|
|
- @click="submit(deptBudgetList)"
|
|
|
|
- >提交</el-button
|
|
|
|
- >
|
|
|
|
- </div>
|
|
|
|
|
|
+ <el-form-item label="卸车日期:" span="1" prop="unloadingDate">
|
|
|
|
+ <ws-date-picker
|
|
|
|
+ v-model="item.unloadingDate"
|
|
|
|
+ type="date"
|
|
|
|
+ style="width: 150px"
|
|
|
|
+ placeholder="请选择日期"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <!-- 提交 -->
|
|
|
|
+ <span class="servicedout" v-show="item.status == '已送达'"
|
|
|
|
+ >已卸车</span
|
|
|
|
+ >
|
|
|
|
+ <span class="noserviceout" v-show="item.status == '未装车'">{{
|
|
|
|
+ item.status
|
|
|
|
+ }}</span>
|
|
|
|
+ <span
|
|
|
|
+ style="text-align: right; padding: 10px"
|
|
|
|
+ class="center"
|
|
|
|
+ v-if="
|
|
|
|
+ item.status == '' ||
|
|
|
|
+ item.status == null ||
|
|
|
|
+ item.status == '未送达' ||
|
|
|
|
+ item.status == '已装车'
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ <div>
|
|
|
|
+ <el-button
|
|
|
|
+ class="bg-bottom"
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ @click="submit(deptBudgetList)"
|
|
|
|
+ >提交</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ </span>
|
|
|
|
|
|
- <div
|
|
|
|
|
|
+ <!-- <div
|
|
v-show="
|
|
v-show="
|
|
item.temporaryDriverFlag == 0 && item.signStatus == '未签合同'
|
|
item.temporaryDriverFlag == 0 && item.signStatus == '未签合同'
|
|
"
|
|
"
|
|
@@ -234,7 +245,7 @@
|
|
class="signStatus1"
|
|
class="signStatus1"
|
|
>
|
|
>
|
|
{{ item.signStatus }}
|
|
{{ item.signStatus }}
|
|
- </div>
|
|
|
|
|
|
+ </div> -->
|
|
<span
|
|
<span
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
v-show="item.temporaryDriverFlag != 0"
|
|
width="22"
|
|
width="22"
|
|
@@ -248,7 +259,7 @@
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div style="text-align: right; color: #8890b1; font-size: 16px">
|
|
|
|
|
|
+ <div style="text-align: center; color: #8890b1; font-size: 16px">
|
|
合计(吨):{{ total }}/{{ deptBudgetList.weight }}
|
|
合计(吨):{{ total }}/{{ deptBudgetList.weight }}
|
|
</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">
|
|
@@ -256,7 +267,7 @@
|
|
<div class="spans">添加临时用车</div></el-button
|
|
<div class="spans">添加临时用车</div></el-button
|
|
> -->
|
|
> -->
|
|
</ws-form>
|
|
</ws-form>
|
|
- <!-- 提交 -->
|
|
|
|
|
|
+ <!-- 完货 -->
|
|
<div style="text-align: right; padding: 10px" class="wanhuo">
|
|
<div style="text-align: right; padding: 10px" class="wanhuo">
|
|
<el-button
|
|
<el-button
|
|
class="bg-bottom"
|
|
class="bg-bottom"
|
|
@@ -322,7 +333,7 @@ export default {
|
|
},
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
- tranType: 1,
|
|
|
|
|
|
+ tranType: 2,
|
|
size: 10,
|
|
size: 10,
|
|
value1: '',
|
|
value1: '',
|
|
unitList: [],
|
|
unitList: [],
|
|
@@ -341,9 +352,9 @@ export default {
|
|
freightspace: [
|
|
freightspace: [
|
|
{
|
|
{
|
|
boxNo: '',
|
|
boxNo: '',
|
|
- loadNetWeight: '',
|
|
|
|
- loadPoundImg: '',
|
|
|
|
- loadingDate:'',
|
|
|
|
|
|
+ unloadNetWeight: '',
|
|
|
|
+ unloadPoundImg: '',
|
|
|
|
+ unloadingDate: '',
|
|
},
|
|
},
|
|
// {loadPoundImg:{}},
|
|
// {loadPoundImg:{}},
|
|
],
|
|
],
|
|
@@ -352,7 +363,7 @@ export default {
|
|
options: [],
|
|
options: [],
|
|
carModel: [],
|
|
carModel: [],
|
|
tranCarInfoList: {
|
|
tranCarInfoList: {
|
|
- loadPoundImg: '',
|
|
|
|
|
|
+ unloadPoundImg: '',
|
|
},
|
|
},
|
|
// tranCarList: {
|
|
// tranCarList: {
|
|
// driver: '',
|
|
// driver: '',
|
|
@@ -394,42 +405,10 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- dataFilter(val) {
|
|
|
|
- this.deptBudgetList.personCharge = val
|
|
|
|
- if (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.freightspace[i].driverPhone = this.staffList[i].staffMobilePhone
|
|
|
|
- this.deptBudgetList.personChargeKey = this.staffList[i].staffId
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
marker: function (item) {
|
|
marker: function (item) {
|
|
this.deptBudgetList.warehousePositioning =
|
|
this.deptBudgetList.warehousePositioning =
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
},
|
|
},
|
|
- selectedAddress(e) {
|
|
|
|
- this.deptBudgetList.warehousePositioning =
|
|
|
|
- e.center.lat + ',' + e.center.lng
|
|
|
|
- },
|
|
|
|
- confirmPositioncity() {
|
|
|
|
- this.listDate.level = 'city'
|
|
|
|
- this.listDate.country = this.name
|
|
|
|
- },
|
|
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|
|
handleClose() {
|
|
handleClose() {
|
|
this.dialogViewSpareMoney = false
|
|
this.dialogViewSpareMoney = false
|
|
@@ -447,25 +426,6 @@ export default {
|
|
this.freightspace.splice(index, 1)
|
|
this.freightspace.splice(index, 1)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- //下拉司机姓名改变事件
|
|
|
|
- selectdriver() {},
|
|
|
|
- handleChange(value) {
|
|
|
|
- this.selectedOptions = value
|
|
|
|
- },
|
|
|
|
- returnsales() {
|
|
|
|
- this.deptBudgetList = {}
|
|
|
|
- this.freightspace = {}
|
|
|
|
- this.selectedOptions = ''
|
|
|
|
- this.deptBudgetList.tranCarInfoList = []
|
|
|
|
- this.$router.push({ path: 'tranManagementTransporHairRespond' })
|
|
|
|
- },
|
|
|
|
- // 上传附件
|
|
|
|
- uploadSuccess(data, files, url) {
|
|
|
|
- console.log(data, files, url)
|
|
|
|
- },
|
|
|
|
- handleClose() {
|
|
|
|
- this.accessoryTFs = false
|
|
|
|
- },
|
|
|
|
submit() {
|
|
submit() {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
if (this.freightspace[i].temporaryDriverFlag != 0) {
|
|
if (this.freightspace[i].temporaryDriverFlag != 0) {
|
|
@@ -510,14 +470,15 @@ export default {
|
|
// this.deptBudgetList.totalStorage = this.totalStorage
|
|
// this.deptBudgetList.totalStorage = this.totalStorage
|
|
this.tranCarInfoList = this.freightspace
|
|
this.tranCarInfoList = this.freightspace
|
|
this.tranCarInfoList.driver = this.deptBudgetList.driver
|
|
this.tranCarInfoList.driver = this.deptBudgetList.driver
|
|
|
|
+ this.tranCarInfoList.unloadingDate = this.deptBudgetList.unloadingDate
|
|
this.tranCarInfoList.driverPhone = this.deptBudgetList.driverPhone
|
|
this.tranCarInfoList.driverPhone = this.deptBudgetList.driverPhone
|
|
this.tranCarInfoList.tranCarNo = this.deptBudgetList.tranCarNo
|
|
this.tranCarInfoList.tranCarNo = this.deptBudgetList.tranCarNo
|
|
this.tranCarInfoList.carNo = this.deptBudgetList.carNo
|
|
this.tranCarInfoList.carNo = this.deptBudgetList.carNo
|
|
- this.tranCarInfoList.loadNetWeight =
|
|
|
|
- this.deptBudgetList.loadNetWeight
|
|
|
|
|
|
+ this.tranCarInfoList.unloadNetWeight =
|
|
|
|
+ this.deptBudgetList.unloadNetWeight
|
|
this.tranCarInfoList.tranType = this.tranType
|
|
this.tranCarInfoList.tranType = this.tranType
|
|
- this.tranCarInfoList.loadPoundImg =
|
|
|
|
- this.deptBudgetList.loadPoundImg
|
|
|
|
|
|
+ this.tranCarInfoList.unloadPoundImg =
|
|
|
|
+ this.deptBudgetList.unloadPoundImg
|
|
// this.tranCarInfoList.boxNo = this.arr.toString()
|
|
// this.tranCarInfoList.boxNo = this.arr.toString()
|
|
for (var i = 0; i < this.tranCarInfoList.length; i++) {
|
|
for (var i = 0; i < this.tranCarInfoList.length; i++) {
|
|
this.tranCarInfoList[i].id = this.freightspace[i].id
|
|
this.tranCarInfoList[i].id = this.freightspace[i].id
|
|
@@ -541,7 +502,7 @@ export default {
|
|
this.freightspace = {}
|
|
this.freightspace = {}
|
|
this.selectedOptions = ''
|
|
this.selectedOptions = ''
|
|
this.$router.push({
|
|
this.$router.push({
|
|
- path: 'tranManagementTransporHairRespond',
|
|
|
|
|
|
+ path: 'tranManagementReceivingFeedback',
|
|
})
|
|
})
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
@@ -554,8 +515,8 @@ export default {
|
|
return false
|
|
return false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- resetForm(deptBudgetList) {
|
|
|
|
- this.$refs[deptBudgetList].resetFields()
|
|
|
|
|
|
+ revert() {
|
|
|
|
+ this.$router.push({ path: 'tranManagementReceivingFeedback' })
|
|
},
|
|
},
|
|
getList() {
|
|
getList() {
|
|
seeCat({ id: this.deptBudgetList.id })
|
|
seeCat({ id: this.deptBudgetList.id })
|
|
@@ -563,6 +524,14 @@ export default {
|
|
.then((response) => {
|
|
.then((response) => {
|
|
this.deptBudgetList = response
|
|
this.deptBudgetList = response
|
|
// this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
|
|
// this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
|
|
|
|
+ this.deptBudgetList.driver = response.tranCarInfoList[0].driver
|
|
|
|
+ this.deptBudgetList.driverPhone =
|
|
|
|
+ response.tranCarInfoList[0].driverPhone
|
|
|
|
+ this.deptBudgetList.sendDateStart =
|
|
|
|
+ response.tranCarInfoList[0].sendDateStart
|
|
|
|
+ this.deptBudgetList.receiveDateEnd =
|
|
|
|
+ response.tranCarInfoList[0].receiveDateEnd
|
|
|
|
+ this.deptBudgetList.carModel = response.tranCarInfoList[0].carModel
|
|
this.freightspace = response.tranCarInfoList
|
|
this.freightspace = response.tranCarInfoList
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
if (!this.freightspace[i].loadNetWeight) {
|
|
if (!this.freightspace[i].loadNetWeight) {
|
|
@@ -570,62 +539,9 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|
|
- //司机姓名下拉
|
|
|
|
- getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.options = response
|
|
|
|
- this.staffList = response
|
|
|
|
- })
|
|
|
|
- //车型
|
|
|
|
- packList({ constId: 'TRAN5' })
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.carModel = response
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
- handleExamine() {},
|
|
|
|
- approve() {},
|
|
|
|
- // returnsales() {
|
|
|
|
- // this.$router.push({ path: 'purchaseContract' })
|
|
|
|
- // },
|
|
|
|
- selectChapterTwo(e) {
|
|
|
|
- for (var i = 0; i < this.ChapterTwoList.length; i++) {
|
|
|
|
- if (this.ChapterTwoList[i].constValue == e) {
|
|
|
|
- this.deptBudgetList.gradeKey = this.ChapterTwoList[i].constKey
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- selectunitList(e) {
|
|
|
|
- for (var i = 0; i < this.unitList.length; i++) {
|
|
|
|
- if (this.unitList[i].constValue == e) {
|
|
|
|
- this.deptBudgetList.acceptanceMethodKey = this.unitList[i].constKey
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- selectgrade(e) {
|
|
|
|
- for (var i = 0; i < this.gradeList.length; i++) {
|
|
|
|
- if (this.gradeList[i].constValue == e) {
|
|
|
|
- this.deptBudgetList.gradeKey = this.gradeList[i].constKey
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- selectgoodsName(e) {
|
|
|
|
- for (var i = 0; i < this.goodnameList.length; i++) {
|
|
|
|
- if (this.goodnameList[i].constValue == e) {
|
|
|
|
- this.deptBudgetList.goodsNameKey = this.goodnameList[i].constKey
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- selectpackingMethod(e) {
|
|
|
|
- for (var i = 0; i < this.packtypeList.length; i++) {
|
|
|
|
- if (this.packtypeList[i].constValue == e) {
|
|
|
|
- this.deptBudgetList.packingMethodKey = this.packtypeList[i].constKey
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
},
|
|
},
|
|
uploadSuccessHandle1(e, index) {
|
|
uploadSuccessHandle1(e, index) {
|
|
- this.freightspace[index].loadPoundImg = e.url
|
|
|
|
|
|
+ this.freightspace[index].unloadPoundImg = e.url
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
@@ -797,9 +713,9 @@ export default {
|
|
display: inline-block;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.center {
|
|
.center {
|
|
- width: 900px;
|
|
|
|
- margin: -60px auto;
|
|
|
|
- margin-right: 38px;
|
|
|
|
|
|
+ width: 900px;
|
|
|
|
+ margin: -70px auto;
|
|
|
|
+ margin-right: 92px;
|
|
}
|
|
}
|
|
.wanhuo {
|
|
.wanhuo {
|
|
width: 900px;
|
|
width: 900px;
|
|
@@ -946,12 +862,12 @@ export default {
|
|
border: 0px;
|
|
border: 0px;
|
|
}
|
|
}
|
|
.catNos {
|
|
.catNos {
|
|
- width: 5%;
|
|
|
|
- height: 30px;
|
|
|
|
- margin-top: 10px;
|
|
|
|
- margin-left: 20px;
|
|
|
|
- margin-right: -5px;
|
|
|
|
- font-size: 14px;
|
|
|
|
|
|
+ width: 5%;
|
|
|
|
+ height: 30px;
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+ margin-left: 20px;
|
|
|
|
+ margin-right: -5px;
|
|
|
|
+ font-size: 14px;
|
|
}
|
|
}
|
|
.catNosCor {
|
|
.catNosCor {
|
|
color: #5473e8;
|
|
color: #5473e8;
|
|
@@ -1003,7 +919,7 @@ export default {
|
|
}
|
|
}
|
|
//卸车详情
|
|
//卸车详情
|
|
/deep/.liaison .ws-info-table .el-form-item {
|
|
/deep/.liaison .ws-info-table .el-form-item {
|
|
- width: 20%;
|
|
|
|
|
|
+ width: 15%;
|
|
}
|
|
}
|
|
/deep/.liaison .ws-info-table .el-form-item .el-form-item__label {
|
|
/deep/.liaison .ws-info-table .el-form-item .el-form-item__label {
|
|
width: 50%;
|
|
width: 50%;
|
|
@@ -1045,4 +961,30 @@ export default {
|
|
padding: 0px;
|
|
padding: 0px;
|
|
margin-top: 5px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
+//卸车状态
|
|
|
|
+.noserviceout,
|
|
|
|
+.noserviceout {
|
|
|
|
+ background: #c4cada;
|
|
|
|
+ color: #ffffff;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ border: 1px solid #d8dce6;
|
|
|
|
+ padding: 2px;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ height: 23px;
|
|
|
|
+ margin-top: 11px;
|
|
|
|
+ margin-left: 53px;
|
|
|
|
+}
|
|
|
|
+.servicedout {
|
|
|
|
+ background: #e5f1f7;
|
|
|
|
+ color: #50cad4;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ border: 1px solid #d8dce6;
|
|
|
|
+ padding: 2px;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ height: 23px;
|
|
|
|
+ margin-top: 11px;
|
|
|
|
+ margin-left: 53px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|