2/27 业务单据增加业务类型

20240912_adapter
wangwei 1 month ago
parent ec498beac2
commit a9d955fb14

@ -117,14 +117,14 @@
</el-select> </el-select>
</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="productType" class="query-form-item">--> <el-form-item label="业务类型:" prop="productType" class="query-form-item">
<!-- <el-select v-model="formData.productType" 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>
<!-- </el-form-item>--> </el-form-item>
<!--</el-col>--> </el-col>
</el-row> </el-row>
<el-divider></el-divider> <el-divider></el-divider>
@ -420,6 +420,9 @@ export default {
unitTittle: [ unitTittle: [
// { required: true, message: '', trigger: 'blur' } // { required: true, message: '', trigger: 'blur' }
], ],
productType: [
{required: true, message: '请选择业务类型', trigger: 'blur'}
],
consignee: [] consignee: []
} }
} }

@ -64,6 +64,11 @@
<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="productType" width="100">
<template slot-scope="scope">
<span>{{ productTypes[scope.row.productType] }}</span>
</template>
</el-table-column>
<el-table-column label="出入库方式" prop="inAndOutType" width="120"> <el-table-column label="出入库方式" prop="inAndOutType" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ inAndOutTypes[scope.row.inAndOutType] }}</span> <span>{{ inAndOutTypes[scope.row.inAndOutType] }}</span>
@ -320,6 +325,10 @@ export default {
2: '出库', 2: '出库',
3: '流转' 3: '流转'
}, },
productTypes: {
1: '器械业务',
2: '药品业务'
},
workplaceStatusMap: { workplaceStatusMap: {
0: '暂停', 0: '暂停',
1: '启用' 1: '启用'

Loading…
Cancel
Save