Merge branch 'master' of https://gitee.com/qtvbidt/mrr.sj.front
This commit is contained in:
commit
5d10a155c0
|
|
@ -78,22 +78,22 @@
|
|||
</view>
|
||||
|
||||
<!-- 个人信息(手艺人显示) -->
|
||||
<!-- <view class="info-item" @click="navigateToimg">
|
||||
<view class="info-item" @click="navigateToimg">
|
||||
<view class="info-left">
|
||||
<image class="item-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/53a9d1e1-e2d2-4001-b599-82e0c0747f1a.png" mode="aspectFit"></image>
|
||||
<text class="item-label">相册管理</text>
|
||||
</view>
|
||||
<image class="arrow-right" src="/static/images/arrow_right.png" mode="aspectFit"></image>
|
||||
</view> -->
|
||||
</view>
|
||||
|
||||
<!-- 个人信息(手艺人显示) -->
|
||||
<!-- <view class="info-item" @click="navigateTovideo">
|
||||
<view class="info-item" @click="navigateTovideo">
|
||||
<view class="info-left">
|
||||
<image class="item-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/6fc821cd-8dd1-41f1-8854-889fb5f76b78.png" mode="aspectFit"></image>
|
||||
<text class="item-label">视频管理</text>
|
||||
</view>
|
||||
<image class="arrow-right" src="/static/images/arrow_right.png" mode="aspectFit"></image>
|
||||
</view> -->
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -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