bug修改
This commit is contained in:
parent
81c34f7559
commit
591cb7ee0b
|
|
@ -768,11 +768,13 @@ export default {
|
|||
top: calc(var(--status-bar-height) + 88rpx);
|
||||
z-index: 9999;
|
||||
white-space: nowrap;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.icon-tab-scroll {
|
||||
position: relative;
|
||||
z-index: 1999;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.main-tabs {
|
||||
|
|
|
|||
|
|
@ -16,10 +16,10 @@
|
|||
<!-- 显示当前生效的服务技能 -->
|
||||
<view class="skills-list" v-if="!showPendingSkills">
|
||||
<view class="skill-item" v-for="(skill, index) in serviceList" :key="skill.id"
|
||||
:class="{ disabled: true }">
|
||||
:class="{ disabled: true }" v-if="isCurrentSkillSelected(skill.id)">
|
||||
<view class="checkbox-wrapper">
|
||||
<view class="checkbox" :class="{ checked: isCurrentSkillSelected(skill.id) }">
|
||||
<image v-if="isCurrentSkillSelected(skill.id)" class="check-icon"
|
||||
<image class="check-icon"
|
||||
src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/66325904-4603-48fd-b03b-90c684af96e9"
|
||||
mode="aspectFit">
|
||||
</image>
|
||||
|
|
@ -225,7 +225,7 @@
|
|||
// 加载服务技能列表
|
||||
async loadServiceSkills() {
|
||||
try {
|
||||
const res = await request.post('/sj/firstclass',{id:this.sjInformation.data.id});
|
||||
const res = await request.post('/sj/firstclass');
|
||||
this.serviceList = res.data.map(item => ({
|
||||
...item,
|
||||
checked: false
|
||||
|
|
|
|||
Loading…
Reference in New Issue