|
|
@@ -25,6 +25,9 @@
|
|
|
<bottomBtn :tabVal="tabVal" ref="bottomBtn"></bottomBtn>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="positionContent AIIcon" @click="deepseek">
|
|
|
+ <van-icon class="img" :name="require('@/assets/ai.png')" size="50" />
|
|
|
+ </div>
|
|
|
<tab-bar></tab-bar>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -142,6 +145,9 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ deepseek() {
|
|
|
+ window.location.href = 'https://deepseek.nipponpaint.com.cn';
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
@@ -205,5 +211,24 @@ export default {
|
|
|
.bottomBtn {
|
|
|
margin-bottom: 55px;
|
|
|
}
|
|
|
+ .positionContent {
|
|
|
+ position: fixed;
|
|
|
+ /* color: #666; */
|
|
|
+ display: inline-block;
|
|
|
+ /* box-shadow: 0px 2px 7px -5px #000; */
|
|
|
+ /* border-radius: 100px; */
|
|
|
+ /* overflow: hidden; */
|
|
|
+ right: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+ bottom: 96px;
|
|
|
+ /* background-color: white; */
|
|
|
+ }
|
|
|
+ .positionContent .img {
|
|
|
+ border-radius: 100px;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
+ .positionContent .img .van-icon__image {
|
|
|
+ border-radius: 100px;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|