方法
goAnchor (selector) {
this.$el.querySelector(selector).scrollIntoView({
behavior: 'smooth',
block: 'start'
...
yekong
3年前 (2022-05-21)
喜欢
访问页面,如果需要登录后才可以访问,则弹出确认框提示是否跳转。使用element-ui的MessageBox进行提示。
代码
import Vue from 'vue'
import Router from 'vue-router'
import {MessageBox} fr...
yekong
3年前 (2022-05-21)
喜欢
处理前数据
0,1,2
处理后数据
发送电子档、邮寄纸质档、现场领取
代码
/**
* @Author: 858834013@qq.com
* @Name: transactManner
* @Date: 2022-02-27
* @Desc:
*/
<template...
yekong
3年前 (2022-05-20)
喜欢
vue3 安装使用postcss-pxtorem
vue.config.js
module.exports = {
css: {
loaderOptions: {
postcss: {
exclude...
yekong
3年前 (2022-05-19)
喜欢
安装依赖
npm i postcss-pxtorem@5.1.1 -D
配置postcss.config.js
module.exports = {
plugins: {
autoprefixer: {},
'postcss-pxtorem': {
...
yekong
3年前 (2022-05-19)
喜欢
是postcss-pxtorem版本太高了
降到5.1.1就可以正常运行了
"postcss-pxtorem": "^5.1.1",
安装依赖
cnpm i postcss-pxtorem@5.1.1 -D
...
yekong
3年前 (2022-05-19)
喜欢
使用
<getRole :roleId="userInfo.userRoleId"></getRole>
组件代码
/**
* @Author: 858834013@qq.com
* @Name: getRole
* @Date: 2...
yekong
3年前 (2022-05-18)
喜欢
代码
<input confirm-type="search" @confirm="getdata" type="text" v-model="data.KeyWord" placeholde...
yekong
3年前 (2022-05-17)
喜欢
使用
<add @getdata="getlist"></add>
代码
/**
* @Author: 858834013@qq.com
* @Name: add
* @Date: 2022-05-17
* @Desc:
*/
<...
yekong
3年前 (2022-05-17)
喜欢
方法封装
export default function base64ToBlob(base64Data) {
var byteString
if (base64Data.split(',')[0].indexOf('base64') >= 0) {
byt...
yekong
3年前 (2022-05-17)
喜欢