Commit 2fd993b3 authored by songrui's avatar songrui

列表查询修改

parent 823f8f06
...@@ -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 = '33ba1a56-770a-4fc4-83c7-68e1dc0abb15' token = 'faaa4626-dea4-43ab-98ba-ca1c200e1736'
} }
} }
if (token) { if (token) {
......
...@@ -140,12 +140,12 @@ export default { ...@@ -140,12 +140,12 @@ export default {
tabList() { tabList() {
const diseaseList = [ const diseaseList = [
{ name: '高血压', value: 1, code: '1', id: 'HYPERTENSION' }, { name: '高血压', value: 1, code: '1', id: 'HYPERTENSION' },
{ name: '糖尿病', value: 3, code: '2', id: 'DIABETE' }, { name: '糖尿病', value: 2, code: '2', id: 'DIABETE' },
{ name: '冠心病', value: 4, code: '4', id: 'COPD' }, { name: '冠心病', value: 3, code: '4', id: 'COPD' },
{ name: '脑卒中', value: 5, code: '8', id: 'STROKE' }, { name: '脑卒中', value: 4, code: '8', id: 'STROKE' },
{ name: '慢性阻塞性疾病', value: 6, code: '16', id: 'NEPHROPATHY' }, { name: '慢性阻塞性疾病', value: 5, code: '16', id: 'NEPHROPATHY' },
{ name: '慢性肾病', value: 7, code: '32', id: 'KIDNEY' }, { name: '慢性肾病', value: 6, code: '32', id: 'KIDNEY' },
{ name: '血脂异常', value: 8, code: '64', id: 'DYSLIPEMIA' } { name: '血脂异常', value: 7, code: '64', id: 'DYSLIPEMIA' }
] ]
const result = [ const result = [
{ name: '筛查管理', id: 'SCREENING' }, { name: '筛查管理', id: 'SCREENING' },
......
...@@ -194,7 +194,11 @@ export default { ...@@ -194,7 +194,11 @@ export default {
delBtn() { delBtn() {
} }
},
watch: {
diseaseType() {
this.load()
}
} }
} }
</script> </script>
......
...@@ -158,6 +158,11 @@ export default { ...@@ -158,6 +158,11 @@ export default {
delBtn() { delBtn() {
} }
},
watch: {
diseaseType() {
this.load()
}
} }
} }
</script> </script>
......
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
@click="() => { dateShow = true, dateMark = 2 }"/> @click="() => { dateShow = true, dateMark = 2 }"/>
</div> </div>
<van-popup v-model:show="dateShow" position="bottom"> <van-popup v-model:show="dateShow" position="bottom">
<van-date-picker @confirm="onDateConfirm" @cancel="dateShow = false" /> <van-date-picker @confirm="onDateConfirm" @cancel="dateShow = false"/>
</van-popup> </van-popup>
<div class="my-3">数据来源</div> <div class="my-3">数据来源</div>
<CheckBtn :options="store.getDict('CP00124')" v-model:value="form.source" column-3 <CheckBtn :options="store.getDict('CP00124')" v-model:value="form.source" column-3
......
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