|
|
@@ -4,7 +4,7 @@
|
|
|
</div>
|
|
|
<div class="form-group row" v-if="batchHandlerWorkOrder.issue_type_name">
|
|
|
<label class="col-sm-2 col-form-label text-right text-primary">
|
|
|
- 处理
|
|
|
+ 批量处理
|
|
|
</label>
|
|
|
<select class="form-control col-sm-10" v-model="batchHandlerWorkOrder.process_progress">
|
|
|
<option v-for="item in getEditWorkOrderProcessProgress(batchHandlerWorkOrder)" :value="item" v-text="item"></option>
|
|
|
@@ -18,3 +18,60 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
+<el-dialog :visible.sync="dialogLogisticBatchHandlerVisible" width="70%">
|
|
|
+ <span slot="title" v-text="batchHandlerWorkOrder.issue_type_name + '工单'+'(承运商)'">
|
|
|
+ </span>
|
|
|
+ <template v-if="'拦截' === batchHandlerWorkOrder.issue_type_name">
|
|
|
+ <div class="form-group row">
|
|
|
+ <label class="col-sm-2 col-form-label text-primary text-right">
|
|
|
+ <span class="text-danger">*</span>
|
|
|
+ 批量处理
|
|
|
+ </label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <select class="form-control form-control-sm" v-model="batchHandlerWorkOrder.process_progress">
|
|
|
+ <option
|
|
|
+ v-for="item in getLogisticBatchHandlerProcessProgress()"
|
|
|
+ :value="item" v-text="item"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-else-if="'取消拦截' === batchHandlerWorkOrder.issue_type_name">
|
|
|
+ <div class="form-group row">
|
|
|
+ <label class="col-sm-2 col-form-label text-primary text-right">
|
|
|
+ <span class="text-danger">*</span>
|
|
|
+ 处理
|
|
|
+ </label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <select class="form-control form-control-sm" v-model="batchHandlerWorkOrder.process_progress">
|
|
|
+ <option
|
|
|
+ v-for="item in getLogisticBatchHandlerProcessProgress()"
|
|
|
+ :value="item" v-text="item"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-else-if="'信息更改' === batchHandlerWorkOrder.issue_type_name">
|
|
|
+ <div class="form-group row">
|
|
|
+ <label class="col-sm-2 col-form-label text-primary text-right">
|
|
|
+ <span class="text-danger">*</span>
|
|
|
+ 处理
|
|
|
+ </label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <select class="form-control form-control-sm" v-model="batchHandlerWorkOrder.process_progress">
|
|
|
+ <option
|
|
|
+ v-for="item in getLogisticBatchHandlerProcessProgress()"
|
|
|
+ :value="item" v-text="item"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="dialogLogisticBatchHandlerVisible = false">关 闭</el-button>
|
|
|
+ <el-button type="primary" @click="logisticBatchHandlerProcess">提交</el-button>
|
|
|
+ </div>
|
|
|
+</el-dialog>
|
|
|
+
|