|
@@ -12,24 +12,36 @@
|
|
|
<headerTitle title="基本信息" style="margin-top: 15px"></headerTitle>
|
|
<headerTitle title="基本信息" style="margin-top: 15px"></headerTitle>
|
|
|
|
|
|
|
|
<el-row :gutter="15">
|
|
<el-row :gutter="15">
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="委外单编码:" prop="code">
|
|
<el-form-item label="委外单编码:" prop="code">
|
|
|
<el-input v-model="row.code" disabled />
|
|
<el-input v-model="row.code" disabled />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="委外单名称:" prop="name">
|
|
<el-form-item label="委外单名称:" prop="name">
|
|
|
<el-input v-model="row.name" disabled />
|
|
<el-input v-model="row.name" disabled />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
|
|
+ <el-form-item label="委外发起工序:" prop="taskName">
|
|
|
|
|
+ <el-input v-model="row.taskName" disabled />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+
|
|
|
|
|
+ <el-col :span="6">
|
|
|
|
|
+ <el-form-item label="委外工序:" prop="taskNames">
|
|
|
|
|
+ <el-input v-model="row.taskNames" disabled />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="工单编码:" prop="factoriesName">
|
|
<el-form-item label="工单编码:" prop="factoriesName">
|
|
|
<el-input v-model="row.workOrderCode" style="width: 100%" disabled>
|
|
<el-input v-model="row.workOrderCode" style="width: 100%" disabled>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="预计到货日期:" prop="factoriesName">
|
|
<el-form-item label="预计到货日期:" prop="factoriesName">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="row.requireDeliveryTime"
|
|
v-model="row.requireDeliveryTime"
|
|
@@ -39,13 +51,13 @@
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="创建时间:" prop="factoriesName">
|
|
<el-form-item label="创建时间:" prop="factoriesName">
|
|
|
<el-input v-model="row.createTime" style="width: 100%" disabled>
|
|
<el-input v-model="row.createTime" style="width: 100%" disabled>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
|
|
|
|
+ <el-col :span="6">
|
|
|
<el-form-item label="状态:" prop="status">
|
|
<el-form-item label="状态:" prop="status">
|
|
|
<el-tag>{{
|
|
<el-tag>{{
|
|
|
row.status == 0 ? '未提交' : row.status == 1 ? '已提交' : '已发布'
|
|
row.status == 0 ? '未提交' : row.status == 1 ? '已提交' : '已发布'
|
|
@@ -93,6 +105,10 @@
|
|
|
{{ row.totalCount }}{{ row.measuringUnit }}
|
|
{{ row.totalCount }}{{ row.measuringUnit }}
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
|
|
+ <template v-slot:totalWeight="{ row }">
|
|
|
|
|
+ {{ row.totalWeight }}{{ row.weightUnit }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
<template v-slot:sourceType="{ row }">
|
|
<template v-slot:sourceType="{ row }">
|
|
|
<el-tag v-if="row.sourceType == 1" size="mini" type="success"
|
|
<el-tag v-if="row.sourceType == 1" size="mini" type="success"
|
|
|
>物品清单</el-tag
|
|
>物品清单</el-tag
|
|
@@ -260,6 +276,7 @@
|
|
|
{
|
|
{
|
|
|
label: '重量',
|
|
label: '重量',
|
|
|
prop: 'totalWeight',
|
|
prop: 'totalWeight',
|
|
|
|
|
+ slot: 'totalWeight',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true
|
|
showOverflowTooltip: true
|
|
|
},
|
|
},
|