|
@@ -156,6 +156,15 @@
|
|
<el-input v-model="screenForm.createBy" placeholder="请输入制单人" />
|
|
<el-input v-model="screenForm.createBy" placeholder="请输入制单人" />
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
+ <el-form-item label="订单状态" prop="automaticStatus">
|
|
|
|
+ <el-select v-model="screenForm.automaticStatus" clearable placeholder="请选择">
|
|
|
|
+ <el-option label="非计划单" :value="true"></el-option>
|
|
|
|
+ <el-option label="计划单" :value="false"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
</el-row>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
</template>
|
|
</template>
|
|
@@ -619,6 +628,7 @@ export default {
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
examineStatus: this.screenForm.status,
|
|
examineStatus: this.screenForm.status,
|
|
serviceId: this.screenForm.salesMan,
|
|
serviceId: this.screenForm.salesMan,
|
|
|
|
+ automaticStatus:this.screenForm.automaticStatus,
|
|
k3ServiceId: this.screenForm.k3ServiceId,
|
|
k3ServiceId: this.screenForm.k3ServiceId,
|
|
type: this.screenForm.orderType,
|
|
type: this.screenForm.orderType,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
@@ -691,6 +701,7 @@ export default {
|
|
customerNumber: this.screenForm.jxsNum,
|
|
customerNumber: this.screenForm.jxsNum,
|
|
customerName: this.screenForm.jxsName,
|
|
customerName: this.screenForm.jxsName,
|
|
productName: this.screenForm.chName,
|
|
productName: this.screenForm.chName,
|
|
|
|
+ automaticStatus:this.screenForm.automaticStatus,
|
|
specification: this.screenForm.model,
|
|
specification: this.screenForm.model,
|
|
startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|