|
|
|
@ -35,6 +35,14 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="单据类型:">
|
|
|
|
|
<el-select v-model="filterQuery.productType" style="width: 90%" placeholder="请选择单据类型" clearable>
|
|
|
|
|
<el-option label="器械单据" :value="1"></el-option>
|
|
|
|
|
<el-option label="药品单据" :value="2"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
@ -121,7 +129,7 @@
|
|
|
|
|
top="5vh"
|
|
|
|
|
>
|
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<div style="text-align: center;margin-top: 12px">
|
|
|
|
|
<!-- :disabled="!configParams.typeScan"-->
|
|
|
|
|
<el-button type="primary" size="small" @click="onAddSubmit"
|
|
|
|
|
|
|
|
|
@ -151,7 +159,7 @@
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
|
|
|
|
<el-button size="small" icon="search" @click="cancelDialog"
|
|
|
|
|
>取消
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -182,6 +190,7 @@ export default {
|
|
|
|
|
filterQuery: {
|
|
|
|
|
name: null,
|
|
|
|
|
mainAction: null,
|
|
|
|
|
productType: null,
|
|
|
|
|
enable: '1',
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
@ -363,6 +372,10 @@ export default {
|
|
|
|
|
this.$message.error('单据类型名称不能为空!')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.productType)) {
|
|
|
|
|
this.$message.error('单据类型不能为空!')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// if (isBlank(this.inputQuery.actionType)) {
|
|
|
|
|
// this.$message.error("请选择单据类型!");
|
|
|
|
|
// return;
|
|
|
|
|