Commit b9af47c9 authored by renjintao's avatar renjintao

sendview

parent 08d040f4
...@@ -10,25 +10,16 @@ ...@@ -10,25 +10,16 @@
</template> </template>
<script> <script>
import Detail from "./detail";
import Process from "@/components/orderOperator/process"; import Process from "@/components/orderOperator/process";
var myDate = new Date(); var myDate = new Date();
export default { export default {
name: "send", name: "sendView",
components: { components: {
Detail,
Process Process
}, },
data() { data() {
return { return {
divHeight: "400px", divHeight: "400px",
roleTitle: "工艺员",
orderForm: {
ProductingPreparationPeople: null, //生产准备
ProductingPreparationFinishDate: "", //生产准备完成时间
QuotationPeople: null, //订单报价人员
QuotationFinishDate: "" //订单报价完成时间
},
columns1: [ columns1: [
{ {
title: this.l("mesCode"), title: this.l("mesCode"),
...@@ -68,39 +59,7 @@ export default { ...@@ -68,39 +59,7 @@ export default {
dataList: [], dataList: [],
row1: {}, row1: {},
dataListRetrun: [], //确定后返回数据 dataListRetrun: [], //确定后返回数据
ruleValidate: {
ProductingPreparationPeople: [
{
required: true,
message: "请选择人员",
trigger: "change",
type: "number"
}
],
ProductingPreparationFinishDate: [
{
required: true,
message: "请选择时间",
trigger: "change"
}
],
QuotationPeople: [
{
required: true,
message: "请选择人员",
trigger: "change",
type: "number"
}
],
QuotationFinishDate: [
{
required: true,
message: "请选择时间",
trigger: "change"
}
]
},
rowList: [], rowList: [],
row1: {}, row1: {},
tbHeight: 0, tbHeight: 0,
...@@ -115,15 +74,6 @@ export default { ...@@ -115,15 +74,6 @@ export default {
} }
}, },
methods: { methods: {
returnData() {
let objStr = {};
objStr.ProductingPreparationPeople = this.orderForm.ProductingPreparationPeople;
objStr.ProductingPreparationFinishDate = this.orderForm.ProductingPreparationFinishDate;
objStr.QuotationPeople = this.orderForm.QuotationPeople;
objStr.QuotationFinishDate = this.orderForm.QuotationFinishDate;
//返回审批数据
return objStr;
},
getUsers() { getUsers() {
let ues = this.$refs.userProcess; let ues = this.$refs.userProcess;
return ues.immutData; return ues.immutData;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment