mirror of
https://gitee.com/was666/as-editor.git
synced 2025-02-23 02:32:53 +08:00
feat: 底部导航组件添加新功能
This commit is contained in:
parent
ea381b4fe4
commit
197ad80fc3
@ -9,14 +9,17 @@
|
||||
:active-color="datas.activeColor"
|
||||
:inactive-color="datas.inactiveColor"
|
||||
>
|
||||
<van-tabbar-item
|
||||
<van-tabbar-item
|
||||
v-for="(item, index) in datas.iconList"
|
||||
:key="index"
|
||||
:name="item.iconName"
|
||||
:icon="item.iconPic"
|
||||
:dot="item.isDot"
|
||||
>{{ item.iconText }}</van-tabbar-item
|
||||
>
|
||||
<span>{{ item.iconText }}</span>
|
||||
<template #icon="props">
|
||||
<img :src="props.active ? item.iconPic : item.inactive" />
|
||||
</template>
|
||||
</van-tabbar-item>
|
||||
</van-tabbar>
|
||||
</div>
|
||||
|
||||
@ -29,7 +32,7 @@
|
||||
:active-color="datas.activeColor"
|
||||
:inactive-color="datas.inactiveColor"
|
||||
>
|
||||
<van-tabbar-item icon="search" dot name="home">标签</van-tabbar-item>
|
||||
<van-tabbar-item icon="search" name="home">标签</van-tabbar-item>
|
||||
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
|
||||
<van-tabbar-item icon="friends-o">标签</van-tabbar-item>
|
||||
<van-tabbar-item icon="setting-o">标签</van-tabbar-item>
|
||||
@ -46,11 +49,11 @@
|
||||
export default {
|
||||
name: 'tabBar',
|
||||
props: {
|
||||
datas: Object,
|
||||
datas: Object
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// active: 'home',
|
||||
active: 0
|
||||
}
|
||||
},
|
||||
|
||||
@ -71,7 +74,7 @@ export default {
|
||||
beforeDestroy() {
|
||||
document.querySelector('.phone-container').style.cssText =
|
||||
'padding-bottom: 0px'
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -1,10 +1,6 @@
|
||||
<template>
|
||||
<div class="phoneBottom">
|
||||
<p class="ft-links" v-show="datas.isShowBootom">
|
||||
<span>店铺主页</span>
|
||||
<span>个人中心</span>
|
||||
<!-- <span>关注我们</span> -->
|
||||
<!-- <span>店铺信息</span> -->
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
@ -13,11 +9,6 @@
|
||||
export default {
|
||||
name: 'phoneBottom',
|
||||
props:['datas'],
|
||||
watch: {
|
||||
datas() {
|
||||
// console.log(this.datas,'------------this.datas')
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -52,8 +52,22 @@
|
||||
>
|
||||
<i class="el-icon-circle-close" @click="deleteimg(index)" />
|
||||
<!-- 图片 -->
|
||||
<div class="imag">
|
||||
<img :src="item.iconPic" alt="" draggable="false" />
|
||||
<div>
|
||||
<div
|
||||
class="imagBox"
|
||||
v-for="replaceIconIndex in 2"
|
||||
:key="replaceIconIndex"
|
||||
@click="replaceIcon(replaceIconIndex, index)"
|
||||
>
|
||||
<img
|
||||
class="imag"
|
||||
:src="replaceIconIndex == 1 ? item.iconPic : item.inactive"
|
||||
draggable="false"
|
||||
/>
|
||||
<div>
|
||||
{{ replaceIconIndex == 1 ? '选中时' : '未选中时' }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 标题和链接 -->
|
||||
<div class="imgText">
|
||||
@ -112,7 +126,11 @@
|
||||
</el-form>
|
||||
|
||||
<!-- 上传图片 -->
|
||||
<uploadimg ref="upload" @uploadInformation="uploadInformation" />
|
||||
<uploadimg
|
||||
ref="upload"
|
||||
@uploadInformation="uploadInformation"
|
||||
@handleClose="handleClose"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -161,6 +179,8 @@ export default {
|
||||
dragOptions: {
|
||||
animation: 200,
|
||||
},
|
||||
replaceIconIndex: null,
|
||||
replaceIndex: null,
|
||||
}
|
||||
},
|
||||
|
||||
@ -171,11 +191,22 @@ export default {
|
||||
methods: {
|
||||
// 提交
|
||||
uploadInformation(res) {
|
||||
if (this.replaceIconIndex == 1) {
|
||||
this.datas.iconList[this.replaceIndex].iconPic = res
|
||||
this.replaceIconIndex = null
|
||||
return
|
||||
}
|
||||
if (this.replaceIconIndex == 2) {
|
||||
this.datas.iconList[this.replaceIndex].inactive = res
|
||||
this.replaceIconIndex = null
|
||||
return
|
||||
}
|
||||
this.datas.iconList.push({
|
||||
/** 图标名称文字 */
|
||||
iconText: '',
|
||||
/** 图标图片 */
|
||||
iconPic: res,
|
||||
inactive: res,
|
||||
/** 是否显示小圆点 */
|
||||
isDot: false,
|
||||
/** 跳转类型 */
|
||||
@ -184,12 +215,21 @@ export default {
|
||||
http: {},
|
||||
})
|
||||
},
|
||||
|
||||
/* 取消上传 */
|
||||
handleClose() {
|
||||
this.replaceIconIndex = null
|
||||
},
|
||||
/* 删除图片 */
|
||||
deleteimg(index) {
|
||||
this.datas.iconList.splice(index, 1)
|
||||
},
|
||||
|
||||
/* 点击图片 */
|
||||
replaceIcon(replaceIconIndex, replaceIndex) {
|
||||
this.replaceIconIndex = replaceIconIndex
|
||||
this.replaceIndex = replaceIndex
|
||||
console.log(replaceIconIndex, replaceIndex)
|
||||
this.$refs.upload.showUpload()
|
||||
},
|
||||
},
|
||||
|
||||
computed: {},
|
||||
@ -257,40 +297,35 @@ export default {
|
||||
}
|
||||
|
||||
/* 图片 */
|
||||
.imag {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
.imagBox {
|
||||
position: relative;
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
.imag {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
span {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
font-size: 12px;
|
||||
div {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
width: 60px;
|
||||
line-height: 60px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
color: #fff;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
/* 图片字 */
|
||||
.imgText {
|
||||
width: 80%;
|
||||
padding-left: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
padding-left: 20px;
|
||||
justify-content: space-between;
|
||||
justify-content: space-around;
|
||||
/* 图片字 */
|
||||
.imgTextChild {
|
||||
width: 100%;
|
||||
|
@ -81,6 +81,7 @@ export default {
|
||||
this.$confirm('点击取消后您填写的信息将丢失,您确定取消?')
|
||||
.then(() => {
|
||||
this.handleRemove()
|
||||
this.$emit('handleClose')
|
||||
// 隐藏上传文件
|
||||
this.dialogVisible = false
|
||||
this.dialogImageUrl = ''
|
||||
|
@ -49,7 +49,6 @@
|
||||
<!-- 左半部分 -->
|
||||
<div class="lef" v-show="pageSetup.isBack">
|
||||
<van-icon name="arrow-left" />
|
||||
<!-- <span>首页</span> -->
|
||||
</div>
|
||||
<!-- 标题 -->
|
||||
<div
|
||||
@ -866,26 +865,11 @@ export default {
|
||||
position: relative;
|
||||
/* 左边 */
|
||||
.lef {
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// height: 100%;
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
|
||||
/* 图标 */
|
||||
i {
|
||||
padding: 2px;
|
||||
border: 1px solid #dcdcdc;
|
||||
border-radius: 50%;
|
||||
margin-right: 8px;
|
||||
|
||||
&::before {
|
||||
color: #dcdcdc;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: #000;
|
||||
font-weight: 400;
|
||||
|
Loading…
Reference in New Issue
Block a user