2/26 业务类型区

20240912_adapter
wangwei 4 months ago
parent e04adadb3d
commit d08acd8576

@ -118,8 +118,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12" class="el-col"> <el-col :span="12" class="el-col">
<el-form-item label="业务类型:" prop="busType" class="query-form-item"> <el-form-item label="业务类型:" prop="productType" class="query-form-item">
<el-select v-model="formData.busType" style="width: 80%" placeholder="出入库方式"> <el-select v-model="formData.productType" style="width: 80%" placeholder="出入库方式">
<el-option label="器械业务" :value="1"></el-option> <el-option label="器械业务" :value="1"></el-option>
<el-option label="药品业务" :value="2"></el-option> <el-option label="药品业务" :value="2"></el-option>
</el-select> </el-select>
@ -374,7 +374,7 @@ export default {
shipper: 1, shipper: 1,
consignee: 5, consignee: 5,
autoHandle: false, autoHandle: false,
busType: 1 productType: 1
}, },
invList: [], invList: [],
busTypes: [], busTypes: [],

@ -64,9 +64,9 @@
<span>{{ orderCirTypes[scope.row.orderCirType] }}</span> <span>{{ orderCirTypes[scope.row.orderCirType] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="业务类型 " prop="busType" width="100"> <el-table-column label="业务类型 " prop="productType" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ busTypeMaps[scope.row.busType] }}</span> <span>{{ productTypes[scope.row.productType] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="出入库方式" prop="inAndOutType" width="120"> <el-table-column label="出入库方式" prop="inAndOutType" width="120">
@ -320,7 +320,7 @@ export default {
1: '流通计量单位', 1: '流通计量单位',
2: '使用计量单位' 2: '使用计量单位'
}, },
busTypeMaps: { productTypes: {
1: '器械业务', 1: '器械业务',
2: '药品业务' 2: '药品业务'
}, },

Loading…
Cancel
Save