Browse Source

登记布局修改

master
mch 2 years ago
parent
commit
4a7f051c59
  1. 6
      src/components/customerOrg/customerOrgEdit.vue
  2. 5
      src/components/customerOrg/customerOrgTree.vue
  3. 6
      src/components/patientRegisterSign/customerOrgEdit.vue
  4. 8
      src/views/Home.vue
  5. 11
      src/views/fee-settings/InvoiceItemType.vue

6
src/components/customerOrg/customerOrgEdit.vue

@ -380,4 +380,8 @@ export default {
},
};
</script>
<style scoped></style>
<style scoped>
::v-deep .el-form-item {
margin-bottom: 5px;
}
</style>

5
src/components/customerOrg/customerOrgTree.vue

@ -1,5 +1,6 @@
<template>
<el-tree
class="tree"
:data="customerOrg.customerOrgTree"
:props="customerOrg.treeprops"
@node-click="treeclick"
@ -110,4 +111,6 @@ export default {
},
};
</script>
<style></style>
<style scoped>
</style>

6
src/components/patientRegisterSign/customerOrgEdit.vue

@ -373,4 +373,8 @@ export default {
},
};
</script>
<style scoped></style>
<style scoped>
::v-deep .el-form-item {
margin-bottom: 10px;
}
</style>

8
src/views/Home.vue

@ -165,16 +165,16 @@
@click.native="$router.push({ path: '/item' })"
>项目</el-dropdown-item
>
<el-dropdown-item
<!-- <el-dropdown-item
@click.native="$router.push({ path: '/reference-range' })"
>参考范围</el-dropdown-item
>
<el-dropdown-item
> -->
<!-- <el-dropdown-item
@click.native="
$router.push({ path: '/sex-hormone-reference-range' })
"
>性激素参考范围</el-dropdown-item
>
> -->
<el-dropdown-item
@click.native="$router.push({ path: '/diagnosis' })"
>诊断</el-dropdown-item

11
src/views/fee-settings/InvoiceItemType.vue

@ -128,7 +128,7 @@
</el-card>
</div>
<!-- 按钮区域 -->
<div style="margin-left: 10px; margin-top: 10%">
<div style="margin-left: 10px; margin-top: 7%">
<el-button type="primary" @click="addll">新增</el-button>
<div style="margin-top: 10px">
<el-button type="primary" @click="editpopup">编辑</el-button>
@ -308,7 +308,7 @@ export default {
//
async addoredit() {
if (this.form.displayName == undefined) {
this.$message.warning('请输入名称')
this.$message.warning("请输入名称");
} else {
if (this.title == 1) {
let res = await addinvoice({ displayName: this.form.displayName });
@ -318,6 +318,10 @@ export default {
this.dialogVisible = false;
}
} else if (this.title == 2) {
console.log(this.form.displayName);
if (this.form.displayName == "") {
this.$message.warning("请输入名称");
} else {
modifyinvoiceedit(this.form.id, {
displayName: this.form.displayName,
}).then((res) => {
@ -327,12 +331,13 @@ export default {
});
}
}
}
},
//
addll() {
this.dialogVisible = true;
this.title = 1;
this.form={}
this.form = {};
},
// id
rowick(row) {

Loading…
Cancel
Save