|
@@ -342,7 +342,6 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
-
|
|
|
<el-row>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="起始里程" prop="odometerFrom">
|
|
@@ -383,7 +382,6 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-row>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="提箱时间" prop="loadDate">
|
|
|
<el-date-picker
|
|
@@ -399,6 +397,9 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-row>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="装卸货时间" prop="mdLoadDate">
|
|
|
<el-date-picker
|
|
@@ -414,7 +415,7 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="还卸柜时间" prop="unLoadDate">
|
|
|
<el-date-picker
|
|
|
clearable
|
|
@@ -439,7 +440,7 @@
|
|
|
type="date"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
placeholder="选择回单时间"
|
|
|
- :disabled="disabled"
|
|
|
+ :disabled="disabled"
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
@@ -456,7 +457,6 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- </el-row>
|
|
|
|
|
|
<el-row>
|
|
|
<el-col :span="6">
|
|
@@ -1114,13 +1114,23 @@
|
|
|
</el-collapse>
|
|
|
</span>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm('acceptDate')">接 单</el-button>
|
|
|
- <el-button type="primary" @click="submitForm('loadDate')">提 箱</el-button>
|
|
|
- <el-button type="primary" @click="submitForm('mdLoadDate')">装卸货</el-button>
|
|
|
- <el-button type="primary" @click="submitForm('unLoadDate')">还卸柜</el-button>
|
|
|
- <el-button type="primary" @click="submitForm('waybillDate')">回 单</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm('acceptDate')"
|
|
|
+ >接 单</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="submitForm('loadDate')"
|
|
|
+ >提 箱</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="submitForm('mdLoadDate')"
|
|
|
+ >装卸货</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="submitForm('unLoadDate')"
|
|
|
+ >还卸柜</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="submitForm('waybillDate')"
|
|
|
+ >回 单</el-button
|
|
|
+ >
|
|
|
<el-button type="success" @click="submitAllowChanges">修 改</el-button>
|
|
|
- <el-button type="info" @click="submitSave">保 存</el-button>
|
|
|
+ <!-- <el-button type="info" @click="submitSave">保 存</el-button> -->
|
|
|
<!-- <el-button type="warning" @click="submitRetreat">撤 回</el-button> -->
|
|
|
<el-button @click="showDialog = false">取 消</el-button>
|
|
|
</span>
|
|
@@ -1345,7 +1355,6 @@ export default {
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm(butType) {
|
|
|
- console.log(butType)
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
this.DList.map((e) => {
|