|
|
@@ -168,7 +168,7 @@
|
|
|
<el-option
|
|
|
v-for="item in docuser"
|
|
|
:key="item.name"
|
|
|
- :label="item.name"
|
|
|
+ :label="`${item.name} (${item.position})`"
|
|
|
:value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
@@ -252,7 +252,16 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {listdocuser, listArticle, getArticle, delArticle, addArticle, updateArticle, exportArticle } from "@/api/his/doctorArticle";
|
|
|
+import {
|
|
|
+ listdocuser,
|
|
|
+ listArticle,
|
|
|
+ getArticle,
|
|
|
+ delArticle,
|
|
|
+ addArticle,
|
|
|
+ updateArticle,
|
|
|
+ exportArticle,
|
|
|
+ listDocList
|
|
|
+} from '@/api/his/doctorArticle'
|
|
|
import articleDetails from '../../components/his/doctorArticleDetails.vue';
|
|
|
import { getAllArticleCateList} from "@/api/his/doctorArticleCate";
|
|
|
import Editor from '@/components/Editor/wang';
|
|
|
@@ -339,6 +348,11 @@ export default {
|
|
|
this.getDicts("sys_doctor_article_status").then(response => {
|
|
|
this.articleStatus = response.data;
|
|
|
});
|
|
|
+
|
|
|
+ listDocList().then(response => {
|
|
|
+ this.docuser=response.rows;
|
|
|
+ });
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
handleSuccess(response, file) {
|