Commit 196ee02e authored by gengchunlei's avatar gengchunlei

居民端小程序 v1.2 药物组件、模板组件、通用随访表单

parent bfdf7a15
...@@ -28,6 +28,12 @@ export function getUnitByName(orgName) { ...@@ -28,6 +28,12 @@ export function getUnitByName(orgName) {
return fetchBase({ url: `/tumour-admin/v1/sys-user/org-by-name/${orgName}` }) return fetchBase({ url: `/tumour-admin/v1/sys-user/org-by-name/${orgName}` })
} }
// 拼音码查询药品信息
export function getDrug(code) {
return fetchBase({ url: `/tumour-admin/v1/remote-system/drugs/${code}` })
}
// 根据单位id查询科室 // 根据单位id查询科室
export function getOfficeList(unitId) { export function getOfficeList(unitId) {
return fetchBase({ url: `/tumour-admin/v1/sys-user/org-office/${unitId}` }) return fetchBase({ url: `/tumour-admin/v1/sys-user/org-office/${unitId}` })
......
...@@ -52,7 +52,7 @@ export default { ...@@ -52,7 +52,7 @@ export default {
if (!token) { if (!token) {
token = sessionStorage.getItem('token') token = sessionStorage.getItem('token')
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
token = '3e478192-7f9d-4d77-b36a-cb8bac2896d3' token = 'd3414706-4696-4e77-bfd4-212cdb38c4fc'
} }
} }
if (token) { if (token) {
......
<template> <template>
<div>
<van-field <van-field
v-model='innerValue' v-model='innerValueName'
readonly readonly
is-link is-link
label="药品名称:" label='药品名称:'
placeholder='请选择' placeholder='请选择'
class='input-back mt-2 form-input' class='input-back mt-2 form-input w-full'
@click='showDrug= true' @click='showDrug= true'
/> />
<van-popup v-model:show='showDrug' position='bottom'> <van-popup v-model:show='showDrug' position='bottom'>
<div class='p-4'> <div class='pb-4 pr-4 pl-4'>
<van-search v-model="value" :placeholder="placeholder" @search="onSearch"/>
<van-picker <van-picker
class='mt-4' :columns='array'
:columns="array" :columns-field-names='fieldNames'
:columns-field-names="fieldNames" @confirm='drugConfirm'
@confirm="drugConfirm" @cancel='showDrug = false'
@cancel="showDrug = false" >
/> <template #columns-top>
<van-search v-model="searchStr" :placeholder='placeholder' @search='onSearch' clearable/>
</template>
</van-picker>
</div> </div>
</van-popup> </van-popup>
</div>
</template> </template>
<script> <script>
import { getDrug } from '@/api/base.js'
import { Form } from 'ant-design-vue'
import { getDrug } from '@/api/doctor/generalFU'
import { debounce } from '@/utils/common'
export default { export default {
name: 'DocDrug', name: 'DocDrug',
...@@ -35,7 +41,7 @@ export default { ...@@ -35,7 +41,7 @@ export default {
fieldNames: { fieldNames: {
type: Object, type: Object,
default: () => { default: () => {
return {text: 'chemicalName', values: 'id'} return { text: 'chemicalName', value: 'id' }
} }
} }
}, },
...@@ -43,12 +49,15 @@ export default { ...@@ -43,12 +49,15 @@ export default {
data() { data() {
return { return {
innerValue: null, innerValue: null,
innerValueName: undefined,
array: [], array: [],
loading: false, loading: false,
showDrug: false, showDrug: false,
searchStr: ''
} }
}, },
created() { created() {
this.onSearch = debounce(this.onSearch, 500)
this.onSearch('') this.onSearch('')
}, },
methods: { methods: {
...@@ -60,22 +69,24 @@ export default { ...@@ -60,22 +69,24 @@ export default {
} }
if (!value.trim()) return if (!value.trim()) return
this.loading = true this.loading = true
this.getData(value).then(res => { getDrug(value).then(res => {
this.array = res.data || [] this.array = res.data || []
if (this.array.length && this.innerValue) {
let list = this.array.filter(item => item.id == this.innerValue)
if (list && list.length) {
this.innerValueName = list[0].chemicalName
}
}
}).finally(() => { }).finally(() => {
this.loading = false this.loading = false
}) })
}, },
getData(query) { drugConfirm({ selectedOptions }) {
return getDrug(query) this.innerValueName = selectedOptions[0].chemicalName
}, this.$emit('update:value', selectedOptions[0].id)
drugConfirm(value) { this.$emit('change', selectedOptions[0])
this.$emit('update:value', value) this.searchStr = ''
let option = this.array.find(e => e[this.fieldNames.values] === value) || {} this.showDrug = false
this.$emit('change', option)
if (!value) {
this.onSearch('')
}
} }
}, },
watch: { watch: {
...@@ -94,11 +105,17 @@ export default { ...@@ -94,11 +105,17 @@ export default {
}, },
immediate: true immediate: true
}, },
searchStr: {
handler(val) {
if (!val) return
this.onSearch(val)
}
}
} }
} }
</script> </script>
<style lang="less" scoped> <style lang='less' scoped>
.form-input { .form-input {
padding: 8px 12px; padding: 8px 12px;
border-radius: 8px; border-radius: 8px;
...@@ -107,4 +124,14 @@ export default { ...@@ -107,4 +124,14 @@ export default {
.input-back { .input-back {
background: #FAFAFA; background: #FAFAFA;
} }
//灰色
.greyColor {
color: var(--van-text-color-2);
}
//确认按钮颜色
.blueColor {
color: var(--van-primary-color)
}
</style> </style>
<template> <template>
<van-popup v-model:show='innerShow' position='right' :style="{ height: '100%', width: '100%' }" :overlay='false'> <van-popup v-model:show='innerShow' position='right' :style="{ height: '100%', width: '100%' }" :overlay='false' >
<div class='bg flex flex-col'> <div class='bg flex flex-col'>
<div class='p-3 flex items-center shrink-0 justify-between title bg-white'> <div class='p-3 flex items-center shrink-0 justify-between title bg-white'>
<div @click='onBack' class='text-12 back-bt'> <div @click='onBack' class='text-12 back-bt'>
......
...@@ -372,7 +372,7 @@ export default { ...@@ -372,7 +372,7 @@ export default {
let par = { let par = {
id: this.routerDetail.relationId id: this.routerDetail.relationId
} }
getTemplateDetail(par).then(res => { fetchCurrencyById(par).then(res => {
let result = res.data || {} let result = res.data || {}
this.info = result this.info = result
this.dataHandle() this.dataHandle()
......
...@@ -191,7 +191,11 @@ ...@@ -191,7 +191,11 @@
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules='rules.groupsArraysName' :rules='rules.groupsArraysName'
@click='showGroupsArrays= true' @click='showGroupsArrays= true'
/> >
<template #input>
<span class='text-end'>{{form.groupsArraysName}}</span>
</template>
</van-field>
<van-popup v-model:show='showGroupsArrays' position='bottom'> <van-popup v-model:show='showGroupsArrays' position='bottom'>
<div class='p-4'> <div class='p-4'>
<div class='flex justify-between mb-4'> <div class='flex justify-between mb-4'>
......
...@@ -25,27 +25,29 @@ ...@@ -25,27 +25,29 @@
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
/> />
</div> </div>
<!-- 健康指导-->
<div v-if='showTwo'> <div v-if='showTwo'>
<div class='flex justify-between items-center mt-5'> <div class='flex justify-between items-center mt-5'>
<div class='label-title '>健康指导</div> <div class='label-title '>健康指导</div>
<van-button class='doc-btn-p' @click='toShowTem'>选择内容</van-button> <van-button class='doc-btn-p' @click='toShowTem(1)'>选择内容</van-button>
</div> </div>
<div class='health mt-2'> <div class='mt-2'>
<div class='health-cell mt-2' v-for='item in form.visitHealthGuideList'> <GuideTextVideo :file-type="[1]"
<div class='no-req-label' v-if="item.name != '无'">{{ item.name }}</div> :info="form.guide"
<van-field :content-title="'指导内容'"
v-model='item.templateContent' :classify="1"
rows='1' ref="guideRef"></GuideTextVideo>
autosize
type='textarea'
placeholder='请输入'
class='input-back mt-2 form-input'
/>
</div> </div>
</div>
<!-- 宣教内容-->
<div v-if='showThree'>
<div class='flex justify-between items-center mt-5'>
<div class='label-title '>宣教内容</div>
<van-button class='doc-btn-p' @click='toShowTem(2)'>选择内容</van-button>
</div> </div>
</div> </div>
<!-- 催检--> <!-- 催检-->
<div v-if='showFour'> <div v-if='showFour'>
<div class='no-req-label mt-5'>催检内容</div> <div class='no-req-label mt-5'>催检内容</div>
...@@ -132,10 +134,11 @@ import { fetchDataHandle } from '@/utils/common' ...@@ -132,10 +134,11 @@ import { fetchDataHandle } from '@/utils/common'
import DocImageUpload from '@/doctor/components/docImageUpload/DocImageUpload' import DocImageUpload from '@/doctor/components/docImageUpload/DocImageUpload'
import TemList from '@/doctor/components/template/temList' import TemList from '@/doctor/components/template/temList'
import { getTemplateDetail } from '@/api/doctor/workbench' import { getTemplateDetail } from '@/api/doctor/workbench'
import GuideTextVideo from '@/doctor/followUp/generalFU/form/GuideTextVideo'
export default { export default {
name: 'GeneralFUForm', name: 'GeneralFUForm',
components: { TemList, DocImageUpload, DocIcon }, components: { GuideTextVideo, TemList, DocImageUpload, DocIcon },
props: { props: {
info: { info: {
default: () => { default: () => {
...@@ -157,18 +160,11 @@ export default { ...@@ -157,18 +160,11 @@ export default {
return { return {
store: useStore(), store: useStore(),
form: {}, form: {},
//展示用
imgList: [],
imgList2: [],
//input图片值
imgInputList1: [],
imgInputList2: [],
showDate: false, showDate: false,
showTime1: false, showTime1: false,
showTem: false, showTem: false,
currentTime1: null, currentTime1: null,
showImgList: [], citeInfo: 1,
initSwipe: 0,
rules: { rules: {
visitContent: [{ required: true, message: '请输入' }], visitContent: [{ required: true, message: '请输入' }],
nextVisitDate: [{ required: true, message: '请选择' }] nextVisitDate: [{ required: true, message: '请选择' }]
...@@ -283,7 +279,8 @@ export default { ...@@ -283,7 +279,8 @@ export default {
this.form.screenTime = selectedValues.join('-') this.form.screenTime = selectedValues.join('-')
this.showTime1 = false this.showTime1 = false
}, },
toShowTem() { toShowTem(val) {
this.citeInfo =val
this.showTem = true this.showTem = true
}, },
closedTem(val) { closedTem(val) {
...@@ -294,7 +291,12 @@ export default { ...@@ -294,7 +291,12 @@ export default {
if (val) { if (val) {
let par = { id: val } let par = { id: val }
let result = await getTemplateDetail(par) let result = await getTemplateDetail(par)
console.log(result) //健康指导
if (this.citeInfo == 1) {
} else { //宣教内容
}
} }
}, },
onSubmit() { onSubmit() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment