修改
This commit is contained in:
parent
b9a47d8c13
commit
49ef007d72
@ -724,6 +724,9 @@ export default {
|
||||
departmentName: [
|
||||
{ required: true, message: "科室名称不能为空", trigger: "blur" },
|
||||
],
|
||||
departmentCode: [
|
||||
{ required: true, message: "科室代码不能为空", trigger: "blur" },
|
||||
],
|
||||
departmentPhone: [
|
||||
{
|
||||
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
||||
|
||||
@ -205,15 +205,15 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改科室病种信息对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
||||
@ -516,9 +516,8 @@ export default {
|
||||
departmentId: [
|
||||
{ required: true, message: "所属科室不能为空", trigger: "blur" },
|
||||
],
|
||||
diseaseTypeName:[
|
||||
{ required: true, message: "病种名称不能为空", trigger: "blur" },
|
||||
|
||||
diseaseTypeName: [
|
||||
{ required: true, message: "病种名称不能为空", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
@ -703,7 +702,7 @@ export default {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
// if (this.itemname == null) {
|
||||
this.form.departmentName = "请选择科室";
|
||||
this.form.departmentName = "请选择科室";
|
||||
// }
|
||||
this.title = "添加科室病种信息";
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user