修改处理样式
This commit is contained in:
parent
b014088d22
commit
9c616fc467
BIN
frontend/src/renderer/src/assets/process/add.png
Normal file
BIN
frontend/src/renderer/src/assets/process/add.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
frontend/src/renderer/src/assets/process/del.png
Normal file
BIN
frontend/src/renderer/src/assets/process/del.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 401 B |
BIN
frontend/src/renderer/src/assets/process/selected.png
Normal file
BIN
frontend/src/renderer/src/assets/process/selected.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 454 B |
BIN
frontend/src/renderer/src/assets/process/set.png
Normal file
BIN
frontend/src/renderer/src/assets/process/set.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
@ -11,27 +11,40 @@
|
|||||||
<el-form-item label="记录">
|
<el-form-item label="记录">
|
||||||
<el-input v-model="diagnosticForm.diagnosis_info" resize="none" :rows="10" type="textarea" placeholder="记录信息" />
|
<el-input v-model="diagnosticForm.diagnosis_info" resize="none" :rows="10" type="textarea" placeholder="记录信息" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="处理/建议">
|
<el-form-item label="处理">
|
||||||
<div style="display:flex;gap:6px;align-items:center;">
|
<div style="display:flex;width: 100%;align-items:center;">
|
||||||
<el-select v-model="diagnosticForm.treatment_info" placeholder="请选择" filterable allow-create default-first-option clearable style="flex:1;">
|
<el-select v-model="diagnosticForm.treatment_info" placeholder="请选择"
|
||||||
|
filterable allow-create default-first-option clearable style="width:calc(100% - 70px);">
|
||||||
<el-option v-for="opt in commonItems.treatment" :key="opt" :label="opt" :value="opt" />
|
<el-option v-for="opt in commonItems.treatment" :key="opt" :label="opt" :value="opt" />
|
||||||
</el-select>
|
</el-select>
|
||||||
|
<el-tooltip content="新增到常用项" placement="top">
|
||||||
|
<img src="@/assets/process/add.png" alt="" @click="addTreatmentFromInput"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
|
</el-tooltip>
|
||||||
<el-tooltip content="选择处理" placement="top">
|
<el-tooltip content="选择处理" placement="top">
|
||||||
<el-button circle :icon="List" size="small" @click="treatmentDialogVisible=true" />
|
<img src="@/assets/process/set.png" alt="" @click="treatmentDialogVisible=true"
|
||||||
</el-tooltip>
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
<el-tooltip content="新增到常用项" placement="top">
|
|
||||||
<el-button circle :icon="Plus" size="small" @click="addTreatmentFromInput" />
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<el-input v-model="diagnosticForm.suggestion_info" resize="none" :rows="5" type="textarea" placeholder="备注信息" style="margin-top:8px;" />
|
</el-form-item>
|
||||||
<div style="margin-top:8px;display:flex;gap:6px;align-items:center;">
|
<el-form-item label="备注">
|
||||||
<el-tooltip content="选择建议" placement="top">
|
<div style="display: flex;width: 100%;">
|
||||||
<el-button circle :icon="List" size="small" @click="suggestionDialogVisible=true" />
|
<el-input v-model="diagnosticForm.suggestion_info" resize="none" :rows="5" type="textarea" placeholder="备注信息"
|
||||||
</el-tooltip>
|
style="margin-top:8px;width:calc(100% - 70px)" />
|
||||||
<el-tooltip content="新增到常用项" placement="top">
|
<div style="margin-top:8px;display:flex;align-items:center;">
|
||||||
<el-button circle :icon="Plus" size="small" @click="addSuggestionFromInput" />
|
<el-tooltip content="新增到常用项" placement="top">
|
||||||
</el-tooltip>
|
<img src="@/assets/process/add.png" alt="" @click="addSuggestionFromInput"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="选择建议" placement="top">
|
||||||
|
<img src="@/assets/process/set.png" alt="" @click="suggestionDialogVisible=true"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
|
</el-tooltip>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div class="form-actions-display">
|
<div class="form-actions-display">
|
||||||
@ -47,44 +60,57 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-dialog v-model="suggestionDialogVisible" title="选择建议" width="800px" class="treatmentDialogVisible">
|
|
||||||
<el-input v-model="suggestionSearch" placeholder="搜索建议" clearable />
|
|
||||||
<div style="margin-top:8px;max-height:240px;overflow:auto;">
|
|
||||||
<div v-for="opt in filteredSuggestions10" :key="opt" style="display:flex;align-items:center;justify-content:space-between;padding:6px 8px;border-bottom:1px solid #f0f0f0;color:#fff;">
|
|
||||||
<span>{{opt}}</span>
|
|
||||||
<div style="display:flex;gap:6px;">
|
|
||||||
<el-tooltip content="选中" placement="top">
|
|
||||||
<el-button circle :icon="CircleCheck" size="small" @click="onPickSuggestion(opt)" />
|
|
||||||
</el-tooltip>
|
|
||||||
<el-tooltip content="删除" placement="top">
|
|
||||||
<el-button circle :icon="Delete" size="small" type="danger" @click="removeCommonItem('suggestion',opt)" />
|
|
||||||
</el-tooltip>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<template #footer>
|
|
||||||
<el-button @click="suggestionDialogVisible=false">关闭</el-button>
|
|
||||||
</template>
|
|
||||||
</el-dialog>
|
|
||||||
<el-dialog v-model="treatmentDialogVisible" title="选择处理" width="800px" class="treatmentDialogVisible">
|
<el-dialog v-model="treatmentDialogVisible" title="选择处理" width="800px" class="treatmentDialogVisible">
|
||||||
<el-input v-model="treatmentSearch" placeholder="搜索处理" clearable />
|
<el-input v-model="treatmentSearch" placeholder="搜索处理" clearable />
|
||||||
<div style="margin-top:8px;max-height:240px;overflow:auto;">
|
<div style="margin-top:8px;height: calc(100vh - 500px);overflow:auto;">
|
||||||
<div v-for="opt in filteredTreatments10" :key="opt" style="display:flex;align-items:center;justify-content:space-between;padding:6px 8px;border-bottom:1px solid #f0f0f0;color:#fff;">
|
<div v-for="opt in filteredTreatments10"
|
||||||
<span>{{opt}}</span>
|
:key="opt"
|
||||||
<div style="display:flex;gap:6px;">
|
style="display:flex;align-items:center;
|
||||||
<el-tooltip content="选中" placement="top">
|
justify-content:space-between;padding:10px 8px;
|
||||||
<el-button circle :icon="CircleCheck" size="small" @click="onPickTreatment(opt)" />
|
border-bottom:1px solid #374151;color:#fff;background: #252f3f;">
|
||||||
</el-tooltip>
|
<span>{{opt}}</span>
|
||||||
<el-tooltip content="删除" placement="top">
|
<div style="display:flex;gap:6px;">
|
||||||
<el-button circle :icon="Delete" size="small" type="danger" @click="removeCommonItem('treatment',opt)" />
|
<el-tooltip content="选中" placement="top">
|
||||||
</el-tooltip>
|
<img src="@/assets/process/selected.png" alt="" @click="onPickTreatment(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<img src="@/assets/process/del.png" alt="" @click="removeCommonItem(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<template #footer>
|
||||||
<template #footer>
|
<div style="display: flex;justify-content: flex-end;">
|
||||||
<el-button @click="treatmentDialogVisible=false">关闭</el-button>
|
<div class="pop-up-tip-cancelbutton" @click="treatmentDialogVisible=false">关闭</div>
|
||||||
</template>
|
</div>
|
||||||
</el-dialog>
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
<el-dialog v-model="suggestionDialogVisible" title="选择建议" width="800px" class="treatmentDialogVisible">
|
||||||
|
<el-input v-model="suggestionSearch" placeholder="搜索建议" clearable />
|
||||||
|
<div style="margin-top:8px;height:calc(100vh - 500px);overflow:auto;">
|
||||||
|
<div v-for="opt in filteredSuggestions10" :key="opt" style="background: #252f3f;display:flex;align-items:center;justify-content:space-between;padding:10px 8px;border-bottom:1px solid #374151;color:#fff;">
|
||||||
|
<span>{{opt}}</span>
|
||||||
|
<div style="display:flex;gap:6px;">
|
||||||
|
<el-tooltip content="选中" placement="top">
|
||||||
|
<img src="@/assets/process/selected.png" alt="" @click="onPickSuggestion(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<img src="@/assets/process/del.png" alt="" @click="removeCommonItem('suggestion',opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<template #footer>
|
||||||
|
<div style="display: flex;justify-content: flex-end;">
|
||||||
|
<div class="pop-up-tip-cancelbutton" @click="suggestionDialogVisible=false">关闭</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@ -165,7 +191,7 @@ const filteredSuggestions10 = computed(() => {
|
|||||||
const arr = Array.isArray(commonItems.suggestion) ? commonItems.suggestion : []
|
const arr = Array.isArray(commonItems.suggestion) ? commonItems.suggestion : []
|
||||||
const q = (suggestionSearch.value || '').trim()
|
const q = (suggestionSearch.value || '').trim()
|
||||||
const res = q ? arr.filter(s => s.includes(q)) : arr
|
const res = q ? arr.filter(s => s.includes(q)) : arr
|
||||||
return res.slice(0, 10)
|
return res
|
||||||
})
|
})
|
||||||
const treatmentDialogVisible = ref(false)
|
const treatmentDialogVisible = ref(false)
|
||||||
const treatmentSearch = ref('')
|
const treatmentSearch = ref('')
|
||||||
@ -173,7 +199,7 @@ const filteredTreatments10 = computed(() => {
|
|||||||
const arr = Array.isArray(commonItems.treatment) ? commonItems.treatment : []
|
const arr = Array.isArray(commonItems.treatment) ? commonItems.treatment : []
|
||||||
const q = (treatmentSearch.value || '').trim()
|
const q = (treatmentSearch.value || '').trim()
|
||||||
const res = q ? arr.filter(s => s.includes(q)) : arr
|
const res = q ? arr.filter(s => s.includes(q)) : arr
|
||||||
return res.slice(0, 10)
|
return res
|
||||||
})
|
})
|
||||||
const onPickTreatment = (val) => {
|
const onPickTreatment = (val) => {
|
||||||
if (diagnosticForm && diagnosticForm.value) {
|
if (diagnosticForm && diagnosticForm.value) {
|
||||||
@ -390,4 +416,26 @@ async function handleDiagnosticInfo(status) {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
.treatmentDialogVisible .pop-up-tip-cancelbutton{
|
||||||
|
width: 80px;
|
||||||
|
height: 40px;
|
||||||
|
background-color: #597194;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-right: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.treatmentDialogVisible .pop-up-tip-cancelbutton:hover{
|
||||||
|
background-color: #14aaff;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.el-select__input{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -9,7 +9,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="system-title">
|
<div class="system-title">
|
||||||
平衡体态检测系统
|
平衡体态检测系统
|
||||||
<span v-if="licenseBadge" :class="['license-badge', licenseClass]">{{ licenseBadge }}</span>
|
<span v-if="licenseBadge" v-show="!isTrialText"
|
||||||
|
:class="['license-badge', licenseClass]">{{ licenseBadge }}</span>
|
||||||
<button v-if="showActivateButton" class="activate-btn" @click="goActivate">激活</button>
|
<button v-if="showActivateButton" class="activate-btn" @click="goActivate">激活</button>
|
||||||
<span v-if="isTrialText" class="trial-text">{{ trialText }}</span>
|
<span v-if="isTrialText" class="trial-text">{{ trialText }}</span>
|
||||||
</div>
|
</div>
|
||||||
@ -19,7 +20,8 @@
|
|||||||
<div class="user-line"></div>
|
<div class="user-line"></div>
|
||||||
<div class="user-info">
|
<div class="user-info">
|
||||||
<img src="@/assets/new/u13.png" alt="Avatar" style="width: 30px;height: 30px;">
|
<img src="@/assets/new/u13.png" alt="Avatar" style="width: 30px;height: 30px;">
|
||||||
<span class="username" @click="isUpdateUserInfo = true">{{ userInfo.name }}</span>
|
<!-- @click="isUpdateUserInfo = true" -->
|
||||||
|
<span class="username" >{{ userInfo.name }}</span>
|
||||||
<div class="user-line"></div>
|
<div class="user-line"></div>
|
||||||
<span class="username user-return" @click="isTip = true">退出登录</span>
|
<span class="username user-return" @click="isTip = true">退出登录</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -271,23 +271,27 @@
|
|||||||
style="width:100%;">
|
style="width:100%;">
|
||||||
<el-option v-for="opt in commonItems.treatment" :key="opt" :label="opt" :value="opt" />
|
<el-option v-for="opt in commonItems.treatment" :key="opt" :label="opt" :value="opt" />
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-tooltip content="选择处理" placement="top">
|
|
||||||
<el-button circle :icon="List" size="small" @click="treatmentDialogVisible=true" />
|
|
||||||
</el-tooltip>
|
|
||||||
<el-tooltip content="新增到常用项" placement="top">
|
<el-tooltip content="新增到常用项" placement="top">
|
||||||
<el-button circle :icon="Plus" size="small" @click="addTreatmentFromInput" />
|
<img src="@/assets/process/add.png" alt="" @click="addTreatmentFromInput"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="选择处理" placement="top">
|
||||||
|
<img src="@/assets/process/set.png" alt="" @click="treatmentDialogVisible=true"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="patientprofile-container-dataInfobg-rightbottombox">
|
<div class="patientprofile-container-dataInfobg-rightbottombox">
|
||||||
<div class="patientprofile-container-dataInfobg-lefttext" style="padding-top:0px">建议</div>
|
<div class="patientprofile-container-dataInfobg-lefttext" style="padding-top:0px">建议</div>
|
||||||
<el-input type="textarea" v-model="profileInfo.suggestion_info" :resize="'none'" class="patientprofile-container-dataInfobg-textarea"></el-input>
|
<el-input type="textarea" v-model="profileInfo.suggestion_info" :resize="'none'" class="patientprofile-container-dataInfobg-textarea"></el-input>
|
||||||
<div style="margin-top:8px;display:flex;gap:6px;align-items:center;">
|
<div style="margin-top:8px;display:flex;align-items:center;">
|
||||||
<el-tooltip content="选择建议" placement="top">
|
|
||||||
<el-button circle :icon="List" size="small" @click="suggestionDialogVisible=true" />
|
|
||||||
</el-tooltip>
|
|
||||||
<el-tooltip content="新增到常用项" placement="top">
|
<el-tooltip content="新增到常用项" placement="top">
|
||||||
<el-button circle :icon="Plus" size="small" @click="addSuggestionFromInput" />
|
<img src="@/assets/process/add.png" alt="" @click="addSuggestionFromInput"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="选择建议" placement="top">
|
||||||
|
<img src="@/assets/process/set.png" alt="" @click="suggestionDialogVisible=true"
|
||||||
|
style="cursor: pointer;margin-left: 5px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -329,7 +333,7 @@
|
|||||||
|
|
||||||
<el-dialog v-model="treatmentDialogVisible" title="选择处理" width="800px" class="treatmentDialogVisible">
|
<el-dialog v-model="treatmentDialogVisible" title="选择处理" width="800px" class="treatmentDialogVisible">
|
||||||
<el-input v-model="treatmentSearch" placeholder="搜索处理" clearable />
|
<el-input v-model="treatmentSearch" placeholder="搜索处理" clearable />
|
||||||
<div style="margin-top:8px;height: calc(100vh - 400px);overflow:auto;">
|
<div style="margin-top:8px;height: calc(100vh - 500px);overflow:auto;">
|
||||||
<div v-for="opt in filteredTreatments10"
|
<div v-for="opt in filteredTreatments10"
|
||||||
:key="opt"
|
:key="opt"
|
||||||
style="display:flex;align-items:center;
|
style="display:flex;align-items:center;
|
||||||
@ -338,10 +342,12 @@
|
|||||||
<span>{{opt}}</span>
|
<span>{{opt}}</span>
|
||||||
<div style="display:flex;gap:6px;">
|
<div style="display:flex;gap:6px;">
|
||||||
<el-tooltip content="选中" placement="top">
|
<el-tooltip content="选中" placement="top">
|
||||||
<el-button circle :icon="CircleCheck" size="small" @click="onPickTreatment(opt)" />
|
<img src="@/assets/process/selected.png" alt="" @click="onPickTreatment(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-tooltip content="删除" placement="top">
|
<el-tooltip content="删除" placement="top">
|
||||||
<el-button circle :icon="Delete" size="small" type="danger" @click="removeCommonItem('treatment',opt)" />
|
<img src="@/assets/process/del.png" alt="" @click="removeCommonItem(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -349,21 +355,22 @@
|
|||||||
<template #footer>
|
<template #footer>
|
||||||
<div style="display: flex;justify-content: flex-end;">
|
<div style="display: flex;justify-content: flex-end;">
|
||||||
<div class="pop-up-tip-cancelbutton" @click="treatmentDialogVisible=false">关闭</div>
|
<div class="pop-up-tip-cancelbutton" @click="treatmentDialogVisible=false">关闭</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-dialog v-model="suggestionDialogVisible" title="选择建议" width="800px" class="treatmentDialogVisible">
|
<el-dialog v-model="suggestionDialogVisible" title="选择建议" width="800px" class="treatmentDialogVisible">
|
||||||
<el-input v-model="suggestionSearch" placeholder="搜索建议" clearable />
|
<el-input v-model="suggestionSearch" placeholder="搜索建议" clearable />
|
||||||
<div style="margin-top:8px;height:calc(100vh - 400px);overflow:auto;">
|
<div style="margin-top:8px;height:calc(100vh - 500px);overflow:auto;">
|
||||||
<div v-for="opt in filteredSuggestions10" :key="opt" style="background: #252f3f;display:flex;align-items:center;justify-content:space-between;padding:10px 8px;border-bottom:1px solid #374151;color:#fff;">
|
<div v-for="opt in filteredSuggestions10" :key="opt" style="background: #252f3f;display:flex;align-items:center;justify-content:space-between;padding:10px 8px;border-bottom:1px solid #374151;color:#fff;">
|
||||||
<span>{{opt}}</span>
|
<span>{{opt}}</span>
|
||||||
<div style="display:flex;gap:6px;">
|
<div style="display:flex;gap:6px;">
|
||||||
<el-tooltip content="选中" placement="top">
|
<el-tooltip content="选中" placement="top">
|
||||||
<el-button circle :icon="CircleCheck" size="small" @click="onPickSuggestion(opt)" />
|
<img src="@/assets/process/selected.png" alt="" @click="onPickSuggestion(opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-tooltip content="删除" placement="top">
|
<el-tooltip content="删除" placement="top">
|
||||||
<el-button circle :icon="Delete" size="small" type="danger" @click="removeCommonItem('suggestion',opt)" />
|
<img src="@/assets/process/del.png" alt="" @click="removeCommonItem('suggestion',opt)"
|
||||||
|
style="cursor: pointer;margin-left: 10px;">
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -481,7 +488,7 @@ const filteredSuggestions10 = computed(() => {
|
|||||||
const arr = Array.isArray(commonItems.suggestion) ? commonItems.suggestion : []
|
const arr = Array.isArray(commonItems.suggestion) ? commonItems.suggestion : []
|
||||||
const q = (suggestionSearch.value || '').trim()
|
const q = (suggestionSearch.value || '').trim()
|
||||||
const res = q ? arr.filter(s => s.includes(q)) : arr
|
const res = q ? arr.filter(s => s.includes(q)) : arr
|
||||||
return res.slice(0, 10)
|
return res
|
||||||
})
|
})
|
||||||
const treatmentDialogVisible = ref(false)
|
const treatmentDialogVisible = ref(false)
|
||||||
const treatmentSearch = ref('')
|
const treatmentSearch = ref('')
|
||||||
@ -489,7 +496,7 @@ const filteredTreatments10 = computed(() => {
|
|||||||
const arr = Array.isArray(commonItems.treatment) ? commonItems.treatment : []
|
const arr = Array.isArray(commonItems.treatment) ? commonItems.treatment : []
|
||||||
const q = (treatmentSearch.value || '').trim()
|
const q = (treatmentSearch.value || '').trim()
|
||||||
const res = q ? arr.filter(s => s.includes(q)) : arr
|
const res = q ? arr.filter(s => s.includes(q)) : arr
|
||||||
return res.slice(0, 10)
|
return res
|
||||||
})
|
})
|
||||||
const onPickTreatment = (val) => {
|
const onPickTreatment = (val) => {
|
||||||
if (profileInfo && profileInfo.value) {
|
if (profileInfo && profileInfo.value) {
|
||||||
@ -1665,4 +1672,7 @@ historyAPI.VideoDelById(ids).then((response)=>{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
.el-select__input{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user