|
@@ -30,6 +30,16 @@
|
|
/>
|
|
/>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item label="产线目标站" prop="asnReference2">
|
|
|
|
+ <el-select v-model="queryParams.asnReference2" placeholder="请选择单据状态" clearable size="small">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in dict.type.pro_line_site"
|
|
|
|
+ :key="dict.value"
|
|
|
|
+ :label="dict.label"
|
|
|
|
+ :value="dict.value"
|
|
|
|
+ />
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
<!-- <el-form-item label="采购单号" prop="asnReference1">-->
|
|
<!-- <el-form-item label="采购单号" prop="asnReference1">-->
|
|
<!-- <el-input-->
|
|
<!-- <el-input-->
|
|
<!-- v-model="queryParams.asnReference1"-->
|
|
<!-- v-model="queryParams.asnReference1"-->
|
|
@@ -124,6 +134,11 @@
|
|
<dict-tag :options="dict.type.asn_status" :value="scope.row.asnStatus"/>
|
|
<dict-tag :options="dict.type.asn_status" :value="scope.row.asnStatus"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="产线目标站" align="center" prop="asnReference2">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <dict-tag :options="dict.type.pro_line_site" :value="scope.row.asnReference2"/>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<!--<el-table-column label="客户" align="center" prop="customerId" />-->
|
|
<!--<el-table-column label="客户" align="center" prop="customerId" />-->
|
|
<!-- <el-table-column label="客户单号" align="center" prop="customerNo" />-->
|
|
<!-- <el-table-column label="客户单号" align="center" prop="customerNo" />-->
|
|
<!-- <el-table-column label="采购单号" align="center" prop="asnReference1" />-->
|
|
<!-- <el-table-column label="采购单号" align="center" prop="asnReference1" />-->
|
|
@@ -191,7 +206,7 @@ import AddOrUpdate from './docAsnHeader-add-or-update'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "DocAsn",
|
|
name: "DocAsn",
|
|
- dicts: ['asn_status', 'asn_type'],
|
|
|
|
|
|
+ dicts: ['asn_status', 'asn_type','pro_line_site'],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
// 遮罩层
|
|
// 遮罩层
|