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