@ -0,0 +1,64 @@ |
||||
import { |
||||
POST |
||||
} from './Request.js'; |
||||
let app = getApp(); |
||||
let base = app.globalData.url; |
||||
// 登录接口
|
||||
export const userLogin = params => { |
||||
return POST('POST', `${base}/login/userLogin`, params).then(res => res.data); |
||||
} |
||||
//退出登录
|
||||
export const logout = params => { |
||||
return POST('POST', `${base}/login/logout`, params).then(res => res.data); |
||||
} |
||||
//查询数据字典
|
||||
export const getDictionaryByCodeType = params => { |
||||
return POST('GET', `${base}/common/getDictionaryByCodeType`, params).then(res => res.data); |
||||
} |
||||
//查询加油站油品
|
||||
export const getOilPriceListByStore = params => { |
||||
return POST('GET', `${base}/gasOilPrice/getOilPriceListByStore`, params).then(res => res.data); |
||||
} |
||||
//新增,修改油品
|
||||
export const editGasOilPrice = params => { |
||||
return POST('POST', `${base}/gasOilPrice/editGasOilPrice`, params).then(res => res.data); |
||||
} |
||||
//删除加油站油品
|
||||
export const delOilPrice = params => { |
||||
return POST('POST', `${base}/gasOilPrice/delOilPrice`, params).then(res => res.data); |
||||
} |
||||
//查询加油站油品详情
|
||||
export const getOilPriceDetail = params => { |
||||
return POST('GET', `${base}/gasOilPrice/getOilPriceDetail`, params).then(res => res.data); |
||||
} |
||||
//查询油品油枪列表
|
||||
export const getGunNoListByOilPrice = params => { |
||||
return POST('GET', `${base}/gasOilGunNo/getGunNoListByOilPrice`, params).then(res => res.data); |
||||
} |
||||
//增加油枪
|
||||
export const addGasOilPrice = params => { |
||||
return POST('POST', `${base}/gasOilGunNo/addGasOilPrice`, params).then(res => res.data); |
||||
} |
||||
//删除油枪
|
||||
export const delGunNo = params => { |
||||
return POST('POST', `${base}/gasOilGunNo/delGunNo`, params).then(res => res.data); |
||||
} |
||||
//修改密码
|
||||
export const sendUserPass = params => { |
||||
return POST('POST', `${base}/secUser/sendUserPass`, params).then(res => res.data); |
||||
} |
||||
//我的信息
|
||||
export const getGasStatistical = params => { |
||||
return POST('POST', `${base}/highGas/getGasStatistical`, params).then(res => res.data); |
||||
} |
||||
//订单列表
|
||||
export const getGasOrderList = params => { |
||||
return POST('GET', `${base}/highGas/getGasOrderList`, params).then(res => res.data); |
||||
} |
||||
//订单详情
|
||||
export const getGasOrderDetail = params => { |
||||
return POST('GET', `${base}/highGas/getGasOrderDetail`, params).then(res => res.data); |
||||
} |
||||
|
||||
|
||||
|
@ -0,0 +1,61 @@ |
||||
let app = getApp(); |
||||
|
||||
function request(method, url, data) { |
||||
return new Promise((resolve) => { |
||||
uni.request({ |
||||
method: method, |
||||
url: url, |
||||
data: data, |
||||
header: { |
||||
'Accept': "*/*", |
||||
'content-type': 'application/json;charset=utf-8', |
||||
'Authorization': app.globalData.token |
||||
}, //有的时候这里不一定是 token 还可能是 Authorization
|
||||
success(res) { |
||||
resolve(res) |
||||
if (res.statusCode === 401 || res.data.return_code == 102014 || res.data.return_code == |
||||
104001) { |
||||
app.globalData.userInfo = ''; |
||||
app.globalData.token = ''; |
||||
uni.setStorage({ |
||||
key: "user", |
||||
data: '' |
||||
}) |
||||
uni.setStorage({ |
||||
key: "token", |
||||
data: '' |
||||
}) |
||||
uni.showToast({ |
||||
title: '登录信息过期,请重新授权', |
||||
icon: 'none', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.reLaunch({ |
||||
url:'/pages/login/login/login' |
||||
}) |
||||
}, 2000); |
||||
} |
||||
}) |
||||
} |
||||
}, |
||||
fail(err) { |
||||
uni.showToast({ |
||||
title: '请求失败', |
||||
icon: 'none', |
||||
duration: 1500, |
||||
}) |
||||
} |
||||
}) |
||||
}) |
||||
} |
||||
|
||||
|
||||
function POST(method, url, data) { |
||||
return request(method, url, data) |
||||
} |
||||
|
||||
|
||||
module.exports = { |
||||
POST |
||||
} |
@ -0,0 +1,55 @@ |
||||
const isNullOrEmpty = function(val) { |
||||
if (val == null || val == "" || typeof(val) == undefined) { |
||||
return true; |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
const timeFormat = (value, format) => { |
||||
let date = new Date(value); |
||||
let y = date.getFullYear(); |
||||
let m = date.getMonth() + 1; |
||||
let d = date.getDate(); |
||||
let h = date.getHours(); |
||||
let min = date.getMinutes(); |
||||
let s = date.getSeconds(); |
||||
let result = ""; |
||||
if (format == undefined) { |
||||
result = `${y}-${m < 10 ? "0" + m : m}-${d < 10 ? "0" + d : d} ${ |
||||
h < 10 ? "0" + h : h |
||||
}:${min < 10 ? "0" + min : min}:${s < 10 ? "0" + s : s}`;
|
||||
} |
||||
if (format == "yyyy-mm-dd hh:mm:ss") { |
||||
result = `${y}-${m < 10 ? "0" + m : m}-${d < 10 ? "0" + d : d} ${h < 10 ? "0" + h : h}:${min < 10 ? "0" + min : min}:${s < 10 ? "0" + s : s} `; |
||||
} |
||||
if (format == "yyyy-mm-dd") { |
||||
result = `${y}-${m < 10 ? "0" + m : m}-${d < 10 ? "0" + d : d} `; |
||||
} |
||||
if (format == "yyyy-mm") { |
||||
result = `${y}-${m < 10 ? "0" + m : m}`; |
||||
} |
||||
if (format == "mm-dd") { |
||||
result = ` ${mm < 10 ? "0" + mm : mm}:${ddmin < 10 ? "0" + dd : dd}`; |
||||
} |
||||
if (format == "hh:mm") { |
||||
result = ` ${h < 10 ? "0" + h : h}:${min < 10 ? "0" + min : min}`; |
||||
} |
||||
if (format == "yyyy") { |
||||
result = `${y}`; |
||||
} |
||||
return result; |
||||
}; |
||||
|
||||
|
||||
// {{date|isNullOrEmpty}}
|
||||
// {{date|timeFormat('yyyy-mm-dd')}}
|
||||
// {{date|timeFormat('yyyy-mm')}}
|
||||
// {{date|timeFormat('hh:mm')}}
|
||||
// {{date|timeFormat('yyyy')}}
|
||||
// {{date|timeFormat}}
|
||||
|
||||
export { |
||||
isNullOrEmpty, |
||||
timeFormat |
||||
} |
@ -0,0 +1,484 @@ |
||||
<template> |
||||
<view class="QS-tabs" :style="{ |
||||
'z-index': zIndex, |
||||
'font-size': getFontSize + 'rpx', |
||||
'background-color': getBgColor, |
||||
'transition-duration': getDuration + 's' |
||||
}"> |
||||
<scroll-view scroll-x class="QS-tabs-scroll" :scroll-left="left" scroll-with-animation :style="{ |
||||
'z-index': (Number(zIndex) + 1) |
||||
}"> |
||||
<view class="QS-tabs-scroll-box"> |
||||
<!-- 循环tabs --> |
||||
<view class="QS-tabs-scroll-item" :style="{ |
||||
'height':'100rpx', |
||||
'line-height': getHeight + 'rpx', |
||||
'min-width': getWidth + 'rpx', |
||||
'padding': '0 ' + space + 'rpx', |
||||
'color': index===getCurrent?getActiveColor:getDefaultColor, |
||||
'font-weight': activeBold&&index===getCurrent?'bold':'', |
||||
'transition-duration': getDuration + 's', |
||||
'z-index': (Number(zIndex) + 2) |
||||
}" |
||||
v-for="(item, index) in getTabs" :key="index" @tap="emit(index)" :id="preId + index"> |
||||
<!-- line1 --> |
||||
<view v-if="animationMode==='line1'" class="boxStyle" :style="getDurationStyle +( index===getCurrent?getActiveStyle:getDefaultStyle)"></view> |
||||
{{item.name || item}} |
||||
</view> |
||||
<!-- itemBackground --> |
||||
<view v-if="hasItemBackground" class="itemBackgroundBox" :style="{ |
||||
'height': getHeight + 'rpx', |
||||
'width': (isLine3&&tabsInfo[animationFinishCurrent]?tabsInfo[animationFinishCurrent].width:tabsInfo[getCurrent].width) + 'px', |
||||
'z-index': Number(zIndex) + 1, |
||||
'transition-duration': getDuration + 's', |
||||
'left': (tabsInfo[getCurrent]?tabsInfo[getCurrent].left:0) + 'px' |
||||
}"> |
||||
<view class="itemBackground" :style="'transition-duration:' + getDuration + 's;' + |
||||
'background-color:' + getItemBackgroundColor + ';' + |
||||
'box-shadow: 0 0 5rpx 5rpx ' + getItemBackgroundColor + ';' + |
||||
itemBackgroundStyle + ';'" /> |
||||
</view> |
||||
<!-- line2 --> |
||||
<view v-if="animationMode==='line2'" class="boxStyle2" :style="getLinezIndex + getDurationStyle + |
||||
'width:' + lW + 'px;' + |
||||
'background-color:' + (lineColor||getActiveColor) + ';' + |
||||
line2Style + ';' + |
||||
'left:' + line2Dx + 'px;'" /> |
||||
|
||||
<view v-if="animationMode==='line3'" class="boxStyle2" :style="getLinezIndex + |
||||
'width:' + lW + 'px;' + |
||||
'background-color:' + (lineColor||getActiveColor) + ';' + |
||||
line2Style + ';' + |
||||
'left:' + getLine3Dx + 'px'" /> |
||||
|
||||
</view> |
||||
</scroll-view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
const { |
||||
windowWidth |
||||
} = uni.getSystemInfoSync(); |
||||
const preId = 'QSTabsID_'; |
||||
export default { |
||||
props: { |
||||
tabs: { //需循环的标签列表 |
||||
type: Array, |
||||
default () { |
||||
return []; |
||||
} |
||||
}, |
||||
current: { //当前所在滑块的 index |
||||
type: Number, |
||||
default: 0 |
||||
}, |
||||
height: { //QS-tabs的高度和行高 |
||||
type: [String, Number], |
||||
default: 80 |
||||
}, |
||||
minWidth: { //单个tab的最小宽度 //v1.4修改 |
||||
type: [String, Number], |
||||
default: 250 |
||||
}, |
||||
fontSize: { //字体大小 |
||||
type: [String, Number], |
||||
default: 30 |
||||
}, |
||||
duration: { //过渡动画时长, 单位 s |
||||
type: [String, Number], |
||||
default: .5 |
||||
}, |
||||
activeColor: { //选中项的主题颜色 |
||||
type: String, |
||||
default: '#33cc33' |
||||
}, |
||||
defaultColor: { //未选中项的主题颜色 |
||||
type: String, |
||||
default: '#888' |
||||
}, |
||||
animationLineWidth: { //动画线条的宽度 |
||||
type: [String, Number], |
||||
default: 20 |
||||
}, |
||||
line2Style: { //line2线条的样式 |
||||
type: String, |
||||
default: 'height: 8rpx;border-radius: 4rpx;' |
||||
}, |
||||
animationMode: { //动画类型 |
||||
type: String, |
||||
default: 'line1' |
||||
}, |
||||
autoCenter: { //是否自动滚动至中心目标 |
||||
type: Boolean, |
||||
default: true |
||||
}, |
||||
autoCenterMode: { //滚动至中心目标类型 |
||||
type: String, |
||||
default: 'component' |
||||
}, |
||||
activeStyle: { //line1模式选中项的样式 |
||||
type: String, |
||||
default: 'bottom:0;left:50%;transform: translate(-50%,-100%);height: 8rpx;border-radius:4rpx;' |
||||
}, |
||||
defaultStyle: { //line1模式未选中项的样式 |
||||
type: String, |
||||
default: 'bottom:0;left:50%;transform: translate(-50%,-100%);height: 8rpx;border-radius:4rpx;' |
||||
}, |
||||
backgroundColor: { //统一背景颜色 |
||||
type: String, |
||||
default: 'rgba(255,255,255,0)' |
||||
}, |
||||
hasItemBackground: { //是否开启背景追光 |
||||
type: Boolean, |
||||
default: false |
||||
}, |
||||
itemBackgroundColor: { //统一追光背景颜色 |
||||
type: String, |
||||
default: 'rgba(255,255,255,0)' |
||||
}, |
||||
itemBackgroundStyle: { //追光样式 |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
zIndex: { //css的z-index属性值 |
||||
type: [String, Number], |
||||
default: 99 |
||||
}, |
||||
swiperWidth: { //line3生效, 外部swiper的宽度, 单位rpx |
||||
type: [String, Number], |
||||
default: 750 |
||||
}, |
||||
space: { //tab间距 |
||||
type: [String, Number], |
||||
default: '0' |
||||
}, |
||||
activeBold: { //当前tab字体是否加粗 |
||||
type: Boolean, |
||||
default: true |
||||
}, |
||||
lineColor: { //line颜色 |
||||
type: String, |
||||
default: '' |
||||
} |
||||
}, |
||||
computed: { |
||||
isLine3() { |
||||
return this.animationMode === 'line3'; |
||||
}, |
||||
getCurrent() { |
||||
const current = Number(this.current); |
||||
if (current > (this.getTabs.length - 1)) { |
||||
return (this.getTabs.length - 1) |
||||
} |
||||
return current; |
||||
}, |
||||
getTabs() { |
||||
return this.tabs; |
||||
}, |
||||
getHeight() { |
||||
return Number(this.height); |
||||
}, |
||||
getWidth() { |
||||
return Number(this.minWidth); |
||||
}, |
||||
getFontSize() { |
||||
return this.fontSize; |
||||
}, |
||||
getDuration() { |
||||
return Number(this.duration); |
||||
}, |
||||
getBgColor() { |
||||
const defaultColor = this.backgroundColor || 'rgba(255,255,255,0)'; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
return this.getTabs[this.getCurrent].backgroundColor || defaultColor; |
||||
} else { |
||||
return defaultColor; |
||||
} |
||||
}, |
||||
getItemBackgroundColor() { |
||||
const defaultColor = this.itemBackgroundColor || 'rgba(255,255,255,0)'; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
return this.getTabs[this.getCurrent].itemBackgroundColor || defaultColor; |
||||
} else { |
||||
return defaultColor; |
||||
} |
||||
}, |
||||
getDurationStyle() { |
||||
return `transition-duration: ${this.getDuration}s;` |
||||
}, |
||||
getActiveColor() { |
||||
let activeColor; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
if (this.getTabs[this.getCurrent].activeColor) { |
||||
activeColor = this.getTabs[this.getCurrent].activeColor; |
||||
} else { |
||||
activeColor = this.activeColor; |
||||
} |
||||
} else { |
||||
activeColor = this.activeColor; |
||||
} |
||||
return activeColor; |
||||
}, |
||||
getDefaultColor() { |
||||
let defaultColor; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
if (this.getTabs[this.getCurrent].defaultColor) { |
||||
defaultColor = this.getTabs[this.getCurrent].defaultColor; |
||||
} else { |
||||
defaultColor = this.defaultColor; |
||||
} |
||||
} else { |
||||
defaultColor = this.defaultColor; |
||||
} |
||||
return defaultColor; |
||||
}, |
||||
getActiveStyle() { |
||||
return `width:${this.animationLineWidth}%;background-color:${this.getActiveColor};${this.activeStyle};`; |
||||
}, |
||||
getDefaultStyle() { |
||||
return `width:0;background-color:${this.getActiveColor};${this.defaultStyle};`; |
||||
}, |
||||
getLinezIndexNum() { |
||||
return Number(this.zIndex) + 2; |
||||
}, |
||||
getLinezIndex() { |
||||
return `z-index: ${this.getLinezIndexNum};`; |
||||
}, |
||||
getLine3Dx() { |
||||
return Number(this.line3Dx) + Number(this.line3AddDx); |
||||
} |
||||
}, |
||||
watch: { |
||||
current(n, o) { |
||||
this.change(n); |
||||
}, |
||||
tabs() { |
||||
this.init(); |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
left: 0, |
||||
tabsInfo: [], |
||||
line2Width: Number(this.animationLineWidth), |
||||
setTimeoutFc: null, |
||||
componentsWidth: 0, |
||||
animationFinishCurrent: this.current, |
||||
pxWidth: 0, |
||||
lW: 0, |
||||
sW: 0, |
||||
preId, |
||||
line3Dx: 0, |
||||
line3AddDx: 0, |
||||
line2Dx: 0 |
||||
} |
||||
}, |
||||
// #ifndef H5 |
||||
onReady() { |
||||
this.init(); |
||||
}, |
||||
// #endif |
||||
// #ifdef H5 |
||||
mounted() { |
||||
this.init(); |
||||
}, |
||||
// #endif |
||||
methods: { |
||||
init() { |
||||
this.countPx(); |
||||
let view = uni.createSelectorQuery().in(this); |
||||
for (let i = 0; i < this.tabs.length; i++) { |
||||
view.select('#' + preId + i).boundingClientRect(); |
||||
} |
||||
view.exec((res) => { |
||||
const arr = []; |
||||
for (let i = 0; i < res.length; i++) { |
||||
arr.push(res[i]); |
||||
} |
||||
this.tabsInfo = arr; |
||||
this.countLine2Dx(); |
||||
this.countLine3Dx(); |
||||
let _this = this; |
||||
_this.getQuery(() => { |
||||
_this.countScrollX(); |
||||
}); |
||||
}) |
||||
}, |
||||
countLine2Dx() { |
||||
if (this.animationMode === 'line2') { |
||||
const tab = this.tabsInfo[this.getCurrent]; |
||||
if(tab) this.line2Dx = tab.left + tab.width / 2 - this.lW / 2; |
||||
} |
||||
}, |
||||
countLine3Dx() { |
||||
if (this.animationMode === 'line3') { |
||||
const tab = this.tabsInfo[this.animationFinishCurrent]; |
||||
if(tab) this.line3Dx = tab.left + tab.width / 2 - this.lW / 2; |
||||
} |
||||
}, |
||||
countPx() { |
||||
const w = uni.upx2px(this.getWidth); |
||||
this.pxWidth = w; |
||||
this.lW = (w * (Number(this.animationLineWidth) / 100))+20; |
||||
this.sW = uni.upx2px(Number(this.swiperWidth)); |
||||
}, |
||||
emit(index) { |
||||
this.$emit('change', index); |
||||
}, |
||||
change() { |
||||
this.countScrollX(); |
||||
if (this.animationMode === 'line2') { |
||||
this.line2Width = 2; |
||||
if (this.setTimeoutFc) clearTimeout(this.setTimeoutFc); |
||||
this.setTimeoutFc = setTimeout(() => { |
||||
this.line2Width = this.animationLineWidth; |
||||
}, this.getDuration * 1000 * 3 / 4); |
||||
this.countLine2Dx(); |
||||
} |
||||
}, |
||||
getQuery(cb) { |
||||
try { |
||||
let view = uni.createSelectorQuery().in(this).select('.QS-tabs'); |
||||
view.fields({ |
||||
size: true |
||||
}, data => { |
||||
if (data) { |
||||
this.componentsWidth = data.width; |
||||
if (cb && typeof cb === 'function') cb(data); |
||||
} else { |
||||
this.retryGetQuery(cb); |
||||
} |
||||
}).exec(); |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
}, |
||||
retryGetQuery(cb) { |
||||
try { |
||||
let view = uni.createSelectorQuery().select('.QS-tabs'); |
||||
view.fields({ |
||||
size: true |
||||
}, data => { |
||||
if (data) { |
||||
this.componentsWidth = data.width; |
||||
} else { |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
if (cb && typeof cb === 'function') cb(data); |
||||
}).exec(); |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
}, |
||||
countScrollX() { |
||||
if (this.autoCenter) { |
||||
let tab; |
||||
if(this.isLine3) { |
||||
tab = this.tabsInfo[this.animationFinishCurrent]; |
||||
}else{ |
||||
tab = this.tabsInfo[this.getCurrent]; |
||||
} |
||||
if(tab) { |
||||
let tabCenter = tab.left + tab.width/2; |
||||
let fatherWidth; |
||||
if (this.autoCenterMode === 'window') { |
||||
fatherWidth = windowWidth; |
||||
} else { |
||||
fatherWidth = this.componentsWidth; |
||||
} |
||||
this.left = tabCenter - fatherWidth / 2; |
||||
} |
||||
} |
||||
}, |
||||
setDx(dx) { |
||||
const tab = this.tabsInfo[dx>0?(this.animationFinishCurrent + 1):(this.animationFinishCurrent - 1)]; |
||||
this.line3AddDx = dx / this.sW * (tab?tab.width:this.pxWidth); |
||||
}, |
||||
setFinishCurrent(current) { |
||||
this.line3AddDx = 0; |
||||
this.animationFinishCurrent = current; |
||||
this.countLine3Dx(); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
view, |
||||
scroll-view { |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.QS-tabs { |
||||
width: 100%; |
||||
transition-property: background-color, color; |
||||
} |
||||
|
||||
.QS-tabs::-webkit-scrollbar { |
||||
display: none; |
||||
width: 0 !important; |
||||
height: 0 !important; |
||||
-webkit-appearance: none; |
||||
background: transparent; |
||||
} |
||||
|
||||
.QS-tabs-scroll { |
||||
width: 100%; |
||||
white-space: nowrap; |
||||
position: relative; |
||||
} |
||||
|
||||
.QS-tabs-scroll-box { |
||||
position: relative; |
||||
display: flex; |
||||
white-space: nowrap !important; |
||||
display: block !important; |
||||
} |
||||
|
||||
.QS-tabs-scroll-item { |
||||
position: relative; |
||||
display: inline-block; |
||||
text-align: center; |
||||
transition-property: background-color, color, font-weight; |
||||
} |
||||
|
||||
.content { |
||||
overflow: hidden; |
||||
white-space: nowrap; |
||||
text-overflow: ellipsis; |
||||
} |
||||
|
||||
.boxStyle { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
transition-property: all; |
||||
} |
||||
|
||||
.boxStyle2 { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
bottom: 0; |
||||
transition-property: all; |
||||
transform: translateY(-100%); |
||||
} |
||||
|
||||
.itemBackgroundBox { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
top: 0; |
||||
transition-property: left, background-color; |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: center; |
||||
align-items: center; |
||||
} |
||||
|
||||
.itemBackground { |
||||
height: 100%; |
||||
width: 100%; |
||||
transition-property: all; |
||||
} |
||||
</style> |
@ -0,0 +1,467 @@ |
||||
<template> |
||||
<view class="evan-step" :class="'evan-step--'+direction"> |
||||
<view v-if="customizeIcon" class="evan-step__icon-wrapper" :class="'evan-step__icon-wrapper--'+direction"> |
||||
<slot name="icon"></slot> |
||||
</view> |
||||
<view class="evan-step__icon-wrapper" :class="'evan-step__icon-wrapper--'+direction" v-else-if="icon"> |
||||
<uni-icons :type="icon" size="22" :color="customIconColor" class="evan-step__custom-icon" :class="'evan-step__custom-icon--'+direction"></uni-icons> |
||||
</view> |
||||
<view v-else class="evan-step__circle" :class="['evan-step__circle--'+direction,'evan-step__circle--'+currentStatus]" |
||||
:style="{borderColor:circleStyle.borderColor,backgroundColor:circleStyle.backgroundColor}"> |
||||
<uni-icons v-if="currentStatus==='finish'" type="checkmarkempty" :color="primaryColor" :size="circleIconSize"></uni-icons> |
||||
<uni-icons v-else-if="currentStatus==='error'" type="closeempty" color="#fff" :size="circleIconSize"></uni-icons> |
||||
<text class="evan-step__circle__text" :class="'evan-step__circle__text--'+currentStatus" :style="{color:circleStyle.color}" |
||||
v-else>{{index+1}}</text> |
||||
</view> |
||||
<view class="evan-step__content" :class="'evan-step__content--'+direction" :style="{height:contentHeight}"> |
||||
<text ref="content" class="evan-step__content__title" :class="'evan-step__content__title--'+direction" :style="{color:titleColor}">{{title}}</text> |
||||
<text ref="description" v-if="description" class="evan-step__content__description" :class="'evan-step__content__description--'+direction" |
||||
:style="{color:descriptionColor}">{{description}}</text> |
||||
</view> |
||||
<view class="evan-step__line" :class="'evan-step__line--'+direction" v-if="!isLast"> |
||||
<view :class="'evan-step__line--'+direction+'__inner'" :style="{backgroundColor:lineColor}"></view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import UniIcons from '@/components/uni-icons/uni-icons.vue' |
||||
export default { |
||||
name: 'EvanStep', |
||||
components: { |
||||
UniIcons |
||||
}, |
||||
props: { |
||||
title: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
description: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
// wait process finish error success |
||||
status: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
icon: { |
||||
type: String, |
||||
default: '' |
||||
} |
||||
}, |
||||
computed: { |
||||
direction() { |
||||
const parent = this.getParent() |
||||
return parent.direction |
||||
}, |
||||
activeIndex() { |
||||
const parent = this.getParent() |
||||
return parent.active |
||||
}, |
||||
primaryColor() { |
||||
const parent = this.getParent() |
||||
return parent.primaryColor |
||||
}, |
||||
errorColor() { |
||||
const parent = this.getParent() |
||||
return parent.errorColor |
||||
}, |
||||
isLast() { |
||||
if (this.index === null) { |
||||
return true |
||||
} |
||||
const parent = this.getParent() |
||||
return parent.steps.length - 1 === this.index |
||||
}, |
||||
currentStatus() { |
||||
if (this.status) { |
||||
return this.status |
||||
} |
||||
const parent = this.getParent() |
||||
const active = parent.active |
||||
if (this.index < active) { |
||||
return 'finish' |
||||
} else if (this.index === active) { |
||||
return parent.status |
||||
} else { |
||||
return 'wait' |
||||
} |
||||
}, |
||||
nextStatus() { |
||||
const parent = this.getParent() |
||||
const steps = parent.steps |
||||
if (this.index === steps.length - 1) { |
||||
return '' |
||||
} |
||||
const nextIndex = this.index + 1 |
||||
if (steps && steps[nextIndex] && steps[nextIndex].status) { |
||||
return steps[nextIndex].status |
||||
} |
||||
const active = parent.active |
||||
if (nextIndex < active) { |
||||
return 'finish' |
||||
} else if (nextIndex === active) { |
||||
return 'process' |
||||
} else { |
||||
return 'wait' |
||||
} |
||||
}, |
||||
circleStyle() { |
||||
switch (this.currentStatus) { |
||||
case 'finish': |
||||
return { |
||||
backgroundColor: '#fff', |
||||
borderColor: this.primaryColor, |
||||
color: this.primaryColor |
||||
} |
||||
case 'process': |
||||
return { |
||||
backgroundColor: this.primaryColor, |
||||
borderColor: this.primaryColor, |
||||
color: '#fff' |
||||
} |
||||
case 'wait': |
||||
return { |
||||
backgroundColor: '#ccc', |
||||
borderColor: '#ccc', |
||||
color: '#fff' |
||||
} |
||||
case 'error': |
||||
return { |
||||
backgroundColor: this.errorColor, |
||||
borderColor: this.errorColor, |
||||
color: '#fff' |
||||
} |
||||
default: |
||||
return { |
||||
backgroundColor: '#fff', |
||||
borderColor: this.primaryColor, |
||||
color: this.primaryColor |
||||
} |
||||
} |
||||
}, |
||||
titleColor() { |
||||
switch (this.currentStatus) { |
||||
case 'finish': |
||||
return 'rgba(0,0,0,0.65)' |
||||
case 'process': |
||||
return 'rgba(0,0,0,0.85)' |
||||
case 'wait': |
||||
return 'rgba(0,0,0,0.45)' |
||||
case 'error': |
||||
return this.errorColor |
||||
default: |
||||
return 'rgba(0,0,0,0.85)' |
||||
} |
||||
}, |
||||
descriptionColor() { |
||||
switch (this.currentStatus) { |
||||
case 'finish': |
||||
return 'rgba(0,0,0,0.45)' |
||||
case 'process': |
||||
return 'rgba(0,0,0,0.65)' |
||||
case 'wait': |
||||
return 'rgba(0,0,0,0.45)' |
||||
case 'error': |
||||
return this.errorColor |
||||
default: |
||||
return 'rgba(0,0,0,0.85)' |
||||
} |
||||
}, |
||||
customIconColor() { |
||||
switch (this.currentStatus) { |
||||
case 'finish': |
||||
return this.primaryColor |
||||
case 'process': |
||||
return this.primaryColor |
||||
case 'wait': |
||||
return '#ccc' |
||||
case 'error': |
||||
return this.errorColor |
||||
default: |
||||
return this.primaryColor |
||||
} |
||||
}, |
||||
lineColor() { |
||||
switch (this.nextStatus) { |
||||
case 'finish': |
||||
return this.primaryColor |
||||
case 'process': |
||||
return this.primaryColor |
||||
case 'wait': |
||||
return '#ddd' |
||||
case 'error': |
||||
return this.errorColor |
||||
default: |
||||
return this.primaryColor |
||||
} |
||||
}, |
||||
contentHeight() { |
||||
// #ifdef APP-NVUE |
||||
if (this.direction === 'vertical') { |
||||
if (this.titleHeight + this.descriptionHeight < 35) { |
||||
return '60px' |
||||
} |
||||
return this.titleHeight + this.descriptionHeight + 25 + 'px' |
||||
} else { |
||||
return 'auto' |
||||
} |
||||
// #endif |
||||
// #ifndef APP-NVUE |
||||
return 'auto' |
||||
// #endif |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
index: null, |
||||
customizeIcon: false, |
||||
circleIconSize: 30, |
||||
titleHeight: 0, |
||||
descriptionHeight: 0 |
||||
} |
||||
}, |
||||
methods: { |
||||
getParent() { |
||||
let parent = this.$parent |
||||
let parentName = parent.$options.name |
||||
while (parentName !== 'EvanSteps') { |
||||
parent = parent.$parent |
||||
parentName = parent.$options.name |
||||
} |
||||
return parent |
||||
} |
||||
}, |
||||
mounted() { |
||||
this.customizeIcon = this.$scopedSlots.icon || false |
||||
const parent = this.getParent() |
||||
this.index = parent.steps.length |
||||
parent.steps.push({ |
||||
title: this.title, |
||||
description: this.description, |
||||
status: this.status |
||||
}) |
||||
// #ifndef APP-PLUS |
||||
this.circleIconSize = 30 |
||||
// #endif |
||||
// #ifdef APP-PLUS |
||||
this.circleIconSize = 24 |
||||
// #endif |
||||
// #ifdef APP-NVUE |
||||
this.circleIconSize = 30 |
||||
// TODO nvue模式下description过长时高度无法自动撑开(目前没找到原因),因此暂时通过计算高度方式来直接给height赋值 |
||||
if (this.direction === 'vertical') { |
||||
this.$nextTick(() => { |
||||
const dom = weex.requireModule('dom') |
||||
dom.getComponentRect(this.$refs.title, option => { |
||||
if (option) { |
||||
const size = option.size |
||||
if (size) { |
||||
this.titleHeight = size.height |
||||
} |
||||
} |
||||
}) |
||||
dom.getComponentRect(this.$refs.description, option => { |
||||
if (option) { |
||||
const size = option.size |
||||
if (size) { |
||||
this.descriptionHeight = size.height |
||||
} |
||||
} |
||||
}) |
||||
}) |
||||
} |
||||
// #endif |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.evan-step { |
||||
position: relative; |
||||
} |
||||
|
||||
.evan-step--vertical { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: row; |
||||
} |
||||
|
||||
.evan-step--horizontal { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: column; |
||||
justify-content: center; |
||||
align-items: center; |
||||
flex: 1; |
||||
} |
||||
|
||||
.evan-step__icon-wrapper { |
||||
width: 30px; |
||||
height: 30px; |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: column; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.evan-step__icon-wrapper--vertical { |
||||
margin-right: 8px; |
||||
} |
||||
|
||||
.evan-step__icon-wrapper--horizontal { |
||||
margin-left: 39px; |
||||
} |
||||
|
||||
.evan-step__line { |
||||
/* #ifndef APP-NVUE */ |
||||
box-sizing: border-box; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.evan-step__line--vertical { |
||||
position: absolute; |
||||
width: 30px; |
||||
bottom: 0; |
||||
top: 0; |
||||
left: 0; |
||||
padding: 28px 0 6px 0; |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: column; |
||||
align-items: center; |
||||
} |
||||
|
||||
.evan-step__line--vertical__inner { |
||||
width: 1px; |
||||
flex: 1; |
||||
} |
||||
|
||||
.evan-step__line--horizontal { |
||||
position: absolute; |
||||
height: 30px; |
||||
top: 0; |
||||
left: 30px; |
||||
/* #ifdef APP-NVUE */ |
||||
right: -39px; |
||||
/* #endif */ |
||||
padding: 0 0px 0 40px; |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
width: 100%; |
||||
/* #endif */ |
||||
flex-direction: row; |
||||
align-items: center; |
||||
} |
||||
|
||||
.evan-step__line--horizontal__inner { |
||||
/* #ifndef APP-NVUE */ |
||||
width: 100%; |
||||
/* #endif */ |
||||
height: 1px; |
||||
flex: 1; |
||||
} |
||||
|
||||
.evan-step__circle { |
||||
width: 30px; |
||||
height: 30px; |
||||
border-radius: 50%; |
||||
border-color: #fff; |
||||
border-width: 1px; |
||||
border-style: solid; |
||||
background-color: #fff; |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
box-sizing: border-box; |
||||
/* #endif */ |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.evan-step__circle--vertical { |
||||
margin-right: 8px; |
||||
} |
||||
|
||||
.evan-step__circle--horizontal { |
||||
margin-left: 0px; |
||||
} |
||||
|
||||
.evan-step__circle--finish {} |
||||
|
||||
.evan-step__circle--process {} |
||||
|
||||
.evan-step__circle--wait {} |
||||
|
||||
.evan-step__circle__text { |
||||
font-size: 14px; |
||||
} |
||||
|
||||
.evan-step__circle__text--process { |
||||
color: #fff; |
||||
} |
||||
|
||||
.evan-step__content { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
word-break: break-all; |
||||
/* #endif */ |
||||
flex-direction: column; |
||||
} |
||||
|
||||
.evan-step__content--horizontal { |
||||
// width: 100px; |
||||
margin-top: 8px; |
||||
} |
||||
|
||||
.evan-step__content--vertical { |
||||
flex: 1; |
||||
/* #ifndef APP-NVUE */ |
||||
min-height: 60px; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.evan-step__content__title { |
||||
font-size: 14px; |
||||
/* #ifndef APP-NVUE */ |
||||
margin-bottom: 3px; |
||||
/* #endif */ |
||||
/* #ifdef APP-NVUE */ |
||||
margin-bottom: 8px; |
||||
/* #endif */ |
||||
font-weight: 500; |
||||
} |
||||
|
||||
.evan-step__content__title--horizontal { |
||||
text-align: center; |
||||
} |
||||
|
||||
.evan-step__content__title--vertical { |
||||
/* #ifndef APP-NVUE */ |
||||
width: 100%; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.evan-step__content__description { |
||||
font-size: 12px; |
||||
} |
||||
|
||||
.evan-step__content__description--vertical { |
||||
/* #ifndef APP-NVUE */ |
||||
padding-bottom: 12px; |
||||
width: 100%; |
||||
/* #endif */ |
||||
/* #ifdef APP-NVUE */ |
||||
padding-bottom: 17px; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.evan-step__content__description--horizontal { |
||||
text-align: center; |
||||
} |
||||
</style> |
@ -0,0 +1,66 @@ |
||||
<template> |
||||
<view class="evan-steps" :class="'evan-steps--'+direction"> |
||||
<slot></slot> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'EvanSteps', |
||||
props: { |
||||
direction: { |
||||
type: String, |
||||
default: 'vertical' |
||||
}, |
||||
active: { |
||||
type: Number, |
||||
default: 0 |
||||
}, |
||||
// wait process finish error |
||||
status: { |
||||
type: String, |
||||
default: 'process' |
||||
}, |
||||
primaryColor: { |
||||
type: String, |
||||
default: '#108ee9' |
||||
}, |
||||
errorColor: { |
||||
type: String, |
||||
default: '#F43347' |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
steps: [] |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.evan-steps { |
||||
/* #ifdef APP-NVUE */ |
||||
flex: 1; |
||||
/* #endif */ |
||||
/* #ifndef APP-NVUE */ |
||||
width: 100%; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.evan-steps--vertical {} |
||||
|
||||
.evan-steps--horizontal { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: row; |
||||
align-items: flex-start; |
||||
|
||||
/* #ifndef APP-NVUE */ |
||||
evan-step { |
||||
flex: 1; |
||||
} |
||||
/* #endif */ |
||||
} |
||||
</style> |
@ -0,0 +1,160 @@ |
||||
## 功能介绍 |
||||
- 全端支持(含 `v3、NVUE`) |
||||
- 支持丰富的标签(包括 `table`、`video`、`svg` 等) |
||||
- 支持丰富的事件效果(自动预览图片、链接处理等) |
||||
- 支持设置占位图(加载中、出错时、预览时) |
||||
- 支持锚点跳转、长按复制等丰富功能 |
||||
- 支持大部分 *html* 实体 |
||||
- 丰富的插件(关键词搜索、内容 **编辑** 等) |
||||
- 效率高、容错性强且轻量化 |
||||
|
||||
查看 [功能介绍](https://jin-yufeng.gitee.io/mp-html/#/overview/feature) 了解更多 |
||||
|
||||
## 使用方法 |
||||
- 源码方式 |
||||
1. 点击上方的使用 `HBuilder X` 导入插件或将下载的插件包拷贝到项目根目录下 |
||||
由于插件市场的 **非 uni_modules 版本** 无法更新,若需使用请从 [github](https://github.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 或 [gitee](https://gitee.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 获取最新版本 |
||||
2. 在需要使用页面的 `(n)vue` 文件中添加 |
||||
```html |
||||
<mp-html :content="html" /> |
||||
``` |
||||
```javascript |
||||
import mpHtml from '@/components/mp-html/mp-html' |
||||
export default { |
||||
// HBuilderX 2.5.5+ 可以通过 easycom 自动引入 |
||||
components: { |
||||
mpHtml |
||||
}, |
||||
data() { |
||||
return { |
||||
html: '<div>Hello World!</div>' |
||||
} |
||||
} |
||||
} |
||||
``` |
||||
|
||||
- npm 方式 |
||||
1. 在项目根目录下执行 |
||||
```bash |
||||
npm install mp-html |
||||
``` |
||||
2. 在需要使用页面的 `(n)vue` 文件中添加 |
||||
```html |
||||
<mp-html :content="html" /> |
||||
``` |
||||
```javascript |
||||
import mpHtml from 'mp-html/dist/uni-app/components/mp-html/mp-html' |
||||
export default { |
||||
// 不可省略 |
||||
components: { |
||||
mpHtml |
||||
}, |
||||
data() { |
||||
return { |
||||
html: '<div>Hello World!</div>' |
||||
} |
||||
} |
||||
} |
||||
``` |
||||
|
||||
使用 *cli* 方式运行的项目,通过 *npm* 方式引入时,需要在 *vue.config.js* 中配置 *transpileDependencies*,详情可见 [#330](https://github.com/jin-yufeng/mp-html/issues/330#issuecomment-913617687) |
||||
如果在 **nvue** 中使用还要将 `dist/uni-app/static` 目录下的内容拷贝到项目的 `static` 目录下,否则无法运行 |
||||
|
||||
查看 [快速开始](https://jin-yufeng.gitee.io/mp-html/#/overview/quickstart) 了解更多 |
||||
|
||||
## 组件属性 |
||||
|
||||
| 属性 | 类型 | 默认值 | 说明 | |
||||
|:---:|:---:|:---:|---| |
||||
| container-style | String | | 容器的样式([2.1.0+](https://jin-yufeng.gitee.io/mp-html/#/changelog/changelog#v210)) | |
||||
| content | String | | 用于渲染的 html 字符串 | |
||||
| copy-link | Boolean | true | 是否允许外部链接被点击时自动复制 | |
||||
| domain | String | | 主域名(用于链接拼接) | |
||||
| error-img | String | | 图片出错时的占位图链接 | |
||||
| lazy-load | Boolean | false | 是否开启图片懒加载 | |
||||
| loading-img | String | | 图片加载过程中的占位图链接 | |
||||
| pause-video | Boolean | true | 是否在播放一个视频时自动暂停其他视频 | |
||||
| preview-img | Boolean | true | 是否允许图片被点击时自动预览 | |
||||
| scroll-table | Boolean | false | 是否给每个表格添加一个滚动层使其能单独横向滚动 | |
||||
| selectable | Boolean | false | 是否开启文本长按复制 | |
||||
| set-title | Boolean | true | 是否将 title 标签的内容设置到页面标题 | |
||||
| show-img-menu | Boolean | true | 是否允许图片被长按时显示菜单 | |
||||
| tag-style | Object | | 设置标签的默认样式 | |
||||
| use-anchor | Boolean | false | 是否使用锚点链接 | |
||||
|
||||
查看 [属性](https://jin-yufeng.gitee.io/mp-html/#/basic/prop) 了解更多 |
||||
|
||||
## 组件事件 |
||||
|
||||
| 名称 | 触发时机 | |
||||
|:---:|---| |
||||
| load | dom 树加载完毕时 | |
||||
| ready | 图片加载完毕时 | |
||||
| error | 发生渲染错误时 | |
||||
| imgtap | 图片被点击时 | |
||||
| linktap | 链接被点击时 | |
||||
|
||||
查看 [事件](https://jin-yufeng.gitee.io/mp-html/#/basic/event) 了解更多 |
||||
|
||||
## api |
||||
组件实例上提供了一些 `api` 方法可供调用 |
||||
|
||||
| 名称 | 作用 | |
||||
|:---:|---| |
||||
| in | 将锚点跳转的范围限定在一个 scroll-view 内 | |
||||
| navigateTo | 锚点跳转 | |
||||
| getText | 获取文本内容 | |
||||
| getRect | 获取富文本内容的位置和大小 | |
||||
| setContent | 设置富文本内容 | |
||||
| imgList | 获取所有图片的数组 | |
||||
|
||||
查看 [api](https://jin-yufeng.gitee.io/mp-html/#/advanced/api) 了解更多 |
||||
|
||||
## 插件扩展 |
||||
除基本功能外,本组件还提供了丰富的扩展,可按照需要选用 |
||||
|
||||
| 名称 | 作用 | |
||||
|:---:|---| |
||||
| audio | 音乐播放器 | |
||||
| editable | 富文本编辑([示例项目](https://6874-html-foe72-1259071903.tcb.qcloud.la/editable.zip?sign=cc0017be203fb3dbca62d33a0c15792e&t=1608447445)) | |
||||
| emoji | 解析 emoji | |
||||
| highlight | 代码块高亮显示 | |
||||
| markdown | 渲染 markdown | |
||||
| search | 关键词搜索 | |
||||
| style | 匹配 style 标签中的样式 | |
||||
| txv-video | 使用腾讯视频 | |
||||
| img-cache | 图片缓存 by [@PentaTea](https://github.com/PentaTea) | |
||||
|
||||
从插件市场导入的包中 **不含有** 扩展插件,需要使用插件参考以下方法: |
||||
1. 获取完整组件包 |
||||
```bash |
||||
npm install mp-html |
||||
``` |
||||
2. 编辑 `tools/config.js` 中的 `plugins` 项,选择需要的插件 |
||||
3. 生成新的组件包 |
||||
在 `node_modules/mp-html` 目录下执行 |
||||
```bash |
||||
npm install |
||||
npm run build:uni-app |
||||
``` |
||||
4. 拷贝 `dist/uni-app` 中的内容到项目根目录 |
||||
|
||||
查看 [插件](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin) 了解更多 |
||||
|
||||
## 示例体验 |
||||
 |
||||
|
||||
## 关于 nvue |
||||
`nvue` 使用原生渲染,不支持部分 `css` 样式,为实现和 `html` 相同的效果,组件内部通过 `web-view` 进行渲染,性能上差于原生,根据 `weex` 官方建议,`web` 标签仅应用在非常规的降级场景。因此,如果通过原生的方式(如 `richtext`)能够满足需要,则不建议使用本组件,如果有较多的富文本内容,则可以直接使用 `vue` 页面 |
||||
由于渲染方式与其他端不同,有以下限制: |
||||
1. 不支持 `lazy-load` 属性 |
||||
2. 视频不支持全屏播放 |
||||
|
||||
纯 `nvue` 模式下,[此问题](https://ask.dcloud.net.cn/question/119678) 修复前,不支持通过 `uni_modules` 引入,需要本地引入(将 [dist/uni-app](https://github.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 中的内容拷贝到项目根目录下) |
||||
|
||||
## 问题反馈 |
||||
遇到问题时,请先查阅 [常见问题](https://jin-yufeng.gitee.io/mp-html/#/question/faq) 和 [issue](https://github.com/jin-yufeng/mp-html/issues) 中是否已有相同的问题 |
||||
可通过 [issue](https://github.com/jin-yufeng/mp-html/issues/new/choose) 、插件问答或发送邮件到 [mp_html@126.com](mailto:mp_html@126.com) 提问,不建议在评论区提问(不方便回复) |
||||
提问请严格按照 [issue 模板](https://github.com/jin-yufeng/mp-html/issues/new/choose) ,描述清楚使用环境、`html` 内容或可复现的 `demo` 项目以及复现方式,对于 **描述不清**、**无法复现** 或重复的问题将不予回复 |
||||
|
||||
查看 [问题反馈](https://jin-yufeng.gitee.io/mp-html/#/question/feedback) 了解更多 |
@ -0,0 +1,62 @@ |
||||
## v2.2.0(2021-10-12) |
||||
1. `A` 增加 `customElements` 配置项,便于添加自定义功能性标签 [详细](https://github.com/jin-yufeng/mp-html/issues/350) |
||||
2. `A` `editable` 插件增加切换音视频自动播放状态的功能 [详细](https://github.com/jin-yufeng/mp-html/pull/341) by [@leeseett](https://github.com/leeseett) |
||||
3. `A` `editable` 插件删除媒体标签时触发 `remove` 事件,便于删除已上传的文件 |
||||
4. `U` `editable` 插件 `insertImg` 方法支持同时插入多张图片 [详细](https://github.com/jin-yufeng/mp-html/issues/342) |
||||
5. `U` `editable` 插入图片和音视频时支持拼接 `domian` 主域名 |
||||
6. `F` 修复了内部链接参数中包含 `://` 时被认为是外部链接的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/356) |
||||
7. `F` 修复了部分 `svg` 标签名或属性名大小写不正确时不生效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/351) |
||||
8. `F` 修复了 `nvue` 页面运行到非 `app` 平台时可能样式错误的问题 |
||||
## v2.1.5(2021-08-13) |
||||
1. `A` 增加支持标签的 `dir` 属性 |
||||
2. `F` 修复了 `ruby` 标签文字与拼音没有居中对齐的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/325) |
||||
3. `F` 修复了音视频标签内有 `a` 标签时可能无法播放的问题 |
||||
4. `F` 修复了 `externStyle` 中的 `class` 名包含下划线或数字时可能失效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/326) |
||||
5. `F` 修复了 `h5` 端引入 `externStyle` 可能不生效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/326) |
||||
## v2.1.4(2021-07-14) |
||||
1. `F` 修复了 `rt` 标签无法设置样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/318) |
||||
2. `F` 修复了表格中有单元格同时合并行和列时可能显示不正确的问题 |
||||
3. `F` 修复了 `app` 端无法关闭图片长按菜单的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/322) |
||||
4. `F` 修复了 `editable` 插件只能添加图片链接不能修改的问题 [详细](https://github.com/jin-yufeng/mp-html/pull/312) by [@leeseett](https://github.com/leeseett) |
||||
## v2.1.3(2021-06-12) |
||||
1. `A` `editable` 插件增加 `insertTable` 方法 |
||||
2. `U` `editable` 插件支持编辑表格中的空白单元格 [详细](https://github.com/jin-yufeng/mp-html/issues/310) |
||||
3. `F` 修复了 `externStyle` 中使用伪类可能失效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/298) |
||||
4. `F` 修复了多个组件同时使用时 `tag-style` 属性时可能互相影响的问题 [详细](https://github.com/jin-yufeng/mp-html/pull/305) by [@woodguoyu](https://github.com/woodguoyu) |
||||
5. `F` 修复了包含 `linearGradient` 的 `svg` 可能无法显示的问题 |
||||
6. `F` 修复了编译到头条小程序时可能报错的问题 |
||||
7. `F` 修复了 `nvue` 端不触发 `click` 事件的问题 |
||||
8. `F` 修复了 `editable` 插件尾部插入时无法撤销的问题 |
||||
9. `F` 修复了 `editable` 插件的 `insertHtml` 方法只能在末尾插入的问题 |
||||
10. `F` 修复了 `editable` 插件插入音频不显示的问题 |
||||
## v2.1.2(2021-04-24) |
||||
1. `A` 增加了 [img-cache](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#img-cache) 插件,可以在 `app` 端缓存图片 [详细](https://github.com/jin-yufeng/mp-html/issues/292) by [@PentaTea](https://github.com/PentaTea) |
||||
2. `U` 支持通过 `container-style` 属性设置 `white-space` 来保留连续空格和换行符 [详细](https://jin-yufeng.gitee.io/mp-html/#/question/faq#space) |
||||
3. `U` 代码风格符合 [standard](https://standardjs.com) 标准 |
||||
4. `U` `editable` 插件编辑状态下支持预览视频 [详细](https://github.com/jin-yufeng/mp-html/issues/286) |
||||
5. `F` 修复了 `svg` 标签内嵌 `svg` 时无法显示的问题 |
||||
6. `F` 修复了编译到支付宝和头条小程序时部分区域不可复制的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/291) |
||||
## v2.1.1(2021-04-09) |
||||
1. 修复了对 `p` 标签设置 `tag-style` 可能不生效的问题 |
||||
2. 修复了 `svg` 标签中的文本无法显示的问题 |
||||
3. 修复了使用 `editable` 插件编辑表格时可能报错的问题 |
||||
4. 修复了使用 `highlight` 插件运行到头条小程序时可能没有样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/280) |
||||
5. 修复了使用 `editable` 插件 `editable` 属性为 `false` 时会报错的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/284) |
||||
6. 修复了 `style` 插件连续子选择器失效的问题 |
||||
7. 修复了 `editable` 插件无法修改图片和字体大小的问题 |
||||
## v2.1.0.2(2021-03-21) |
||||
修复了 `nvue` 端使用可能报错的问题 |
||||
## v2.1.0(2021-03-20) |
||||
1. `A` 增加了 [container-style](https://jin-yufeng.gitee.io/mp-html/#/basic/prop#container-style) 属性 [详细](https://gitee.com/jin-yufeng/mp-html/pulls/1) |
||||
2. `A` 增加支持 `strike` 标签 |
||||
3. `A` `editable` 插件增加 `placeholder` 属性 [详细](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#editable) |
||||
4. `A` `editable` 插件增加 `insertHtml` 方法 [详细](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#editable) |
||||
5. `U` 外部样式支持标签名选择器 [详细](https://jin-yufeng.gitee.io/mp-html/#/overview/quickstart#setting) |
||||
6. `F` 修复了 `nvue` 端部分情况下可能不显示的问题 |
||||
## v2.0.5(2021-03-12) |
||||
1. `U` [linktap](https://jin-yufeng.gitee.io/mp-html/#/basic/event#linktap) 事件增加返回内部文本内容 `innerText` [详细](https://github.com/jin-yufeng/mp-html/issues/271) |
||||
2. `U` [selectable](https://jin-yufeng.gitee.io/mp-html/#/basic/prop#selectable) 属性设置为 `force` 时能够在微信 `iOS` 端生效(文本块会变成 `inline-block`) [详细](https://github.com/jin-yufeng/mp-html/issues/267) |
||||
3. `F` 修复了部分情况下竖向无法滚动的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/182) |
||||
4. `F` 修复了多次修改富文本数据时部分内容可能不显示的问题 |
||||
5. `F` 修复了 [腾讯视频](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#txv-video) 插件可能无法播放的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/265) |
||||
6. `F` 修复了 [highlight](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#highlight) 插件没有设置高亮语言时没有应用默认样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/276) by [@fuzui](https://github.com/fuzui) |
@ -0,0 +1,432 @@ |
||||
<template> |
||||
<view id="_root" :class="(selectable?'_select ':'')+'_root'" class="width92" :style="containerStyle"> |
||||
<slot v-if="!nodes[0]" /> |
||||
<!-- #ifndef APP-PLUS-NVUE --> |
||||
<node v-else :childs="nodes" :opts="[lazyLoad,loadingImg,errorImg,showImgMenu]" name="span" /> |
||||
<!-- #endif --> |
||||
<!-- #ifdef APP-PLUS-NVUE --> |
||||
<web-view ref="web" src="/uni_modules/mp-html/static/app-plus/mp-html/local.html" :style="'margin-top:-2px;height:' + height + 'px'" @onPostMessage="_onMessage" /> |
||||
<!-- #endif --> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
/** |
||||
* mp-html v2.2.0 |
||||
* @description 富文本组件 |
||||
* @tutorial https://github.com/jin-yufeng/mp-html |
||||
* @property {String} container-style 容器的样式 |
||||
* @property {String} content 用于渲染的 html 字符串 |
||||
* @property {Boolean} copy-link 是否允许外部链接被点击时自动复制 |
||||
* @property {String} domain 主域名,用于拼接链接 |
||||
* @property {String} error-img 图片出错时的占位图链接 |
||||
* @property {Boolean} lazy-load 是否开启图片懒加载 |
||||
* @property {string} loading-img 图片加载过程中的占位图链接 |
||||
* @property {Boolean} pause-video 是否在播放一个视频时自动暂停其他视频 |
||||
* @property {Boolean} preview-img 是否允许图片被点击时自动预览 |
||||
* @property {Boolean} scroll-table 是否给每个表格添加一个滚动层使其能单独横向滚动 |
||||
* @property {Boolean | String} selectable 是否开启长按复制 |
||||
* @property {Boolean} set-title 是否将 title 标签的内容设置到页面标题 |
||||
* @property {Boolean} show-img-menu 是否允许图片被长按时显示菜单 |
||||
* @property {Object} tag-style 标签的默认样式 |
||||
* @property {Boolean | Number} use-anchor 是否使用锚点链接 |
||||
* @event {Function} load dom 结构加载完毕时触发 |
||||
* @event {Function} ready 所有图片加载完毕时触发 |
||||
* @event {Function} imgTap 图片被点击时触发 |
||||
* @event {Function} linkTap 链接被点击时触发 |
||||
* @event {Function} error 媒体加载出错时触发 |
||||
*/ |
||||
// #ifndef APP-PLUS-NVUE |
||||
import node from './node/node' |
||||
// #endif |
||||
const plugins=[] |
||||
const Parser = require('./parser') |
||||
// #ifdef APP-PLUS-NVUE |
||||
const dom = weex.requireModule('dom') |
||||
// #endif |
||||
export default { |
||||
name: 'mp-html', |
||||
data () { |
||||
return { |
||||
nodes: [], |
||||
// #ifdef APP-PLUS-NVUE |
||||
height: 3 |
||||
// #endif |
||||
} |
||||
}, |
||||
props: { |
||||
containerStyle: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
content: String, |
||||
copyLink: { |
||||
type: [Boolean, String], |
||||
default: true |
||||
}, |
||||
domain: String, |
||||
errorImg: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
lazyLoad: { |
||||
type: [Boolean, String], |
||||
default: false |
||||
}, |
||||
loadingImg: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
pauseVideo: { |
||||
type: [Boolean, String], |
||||
default: true |
||||
}, |
||||
previewImg: { |
||||
type: [Boolean, String], |
||||
default: true |
||||
}, |
||||
scrollTable: [Boolean, String], |
||||
selectable: [Boolean, String], |
||||
setTitle: { |
||||
type: [Boolean, String], |
||||
default: true |
||||
}, |
||||
showImgMenu: { |
||||
type: [Boolean, String], |
||||
default: true |
||||
}, |
||||
tagStyle: Object, |
||||
useAnchor: [Boolean, Number] |
||||
}, |
||||
// #ifndef APP-PLUS-NVUE |
||||
components: { |
||||
node |
||||
}, |
||||
// #endif |
||||
watch: { |
||||
content (content) { |
||||
this.setContent(content) |
||||
} |
||||
}, |
||||
created () { |
||||
this.plugins = [] |
||||
for (let i = plugins.length; i--;) { |
||||
this.plugins.push(new plugins[i](this)) |
||||
} |
||||
}, |
||||
mounted () { |
||||
if (this.content && !this.nodes.length) { |
||||
this.setContent(this.content) |
||||
} |
||||
}, |
||||
beforeDestroy () { |
||||
this._hook('onDetached') |
||||
clearInterval(this._timer) |
||||
}, |
||||
methods: { |
||||
/** |
||||
* @description 将锚点跳转的范围限定在一个 scroll-view 内 |
||||
* @param {Object} page scroll-view 所在页面的示例 |
||||
* @param {String} selector scroll-view 的选择器 |
||||
* @param {String} scrollTop scroll-view scroll-top 属性绑定的变量名 |
||||
*/ |
||||
in (page, selector, scrollTop) { |
||||
// #ifndef APP-PLUS-NVUE |
||||
if (page && selector && scrollTop) { |
||||
this._in = { |
||||
page, |
||||
selector, |
||||
scrollTop |
||||
} |
||||
} |
||||
// #endif |
||||
}, |
||||
|
||||
/** |
||||
* @description 锚点跳转 |
||||
* @param {String} id 要跳转的锚点 id |
||||
* @param {Number} offset 跳转位置的偏移量 |
||||
* @returns {Promise} |
||||
*/ |
||||
navigateTo (id, offset) { |
||||
return new Promise((resolve, reject) => { |
||||
if (!this.useAnchor) { |
||||
reject(Error('Anchor is disabled')) |
||||
return |
||||
} |
||||
offset = offset || parseInt(this.useAnchor) || 0 |
||||
// #ifdef APP-PLUS-NVUE |
||||
if (!id) { |
||||
dom.scrollToElement(this.$refs.web, { |
||||
offset |
||||
}) |
||||
resolve() |
||||
} else { |
||||
this._navigateTo = { |
||||
resolve, |
||||
reject, |
||||
offset |
||||
} |
||||
this.$refs.web.evalJs('uni.postMessage({data:{action:"getOffset",offset:(document.getElementById(' + id + ')||{}).offsetTop}})') |
||||
} |
||||
// #endif |
||||
// #ifndef APP-PLUS-NVUE |
||||
let deep = ' ' |
||||
// #ifdef MP-WEIXIN || MP-QQ || MP-TOUTIAO |
||||
deep = '>>>' |
||||
// #endif |
||||
const selector = uni.createSelectorQuery() |
||||
// #ifndef MP-ALIPAY |
||||
.in(this._in ? this._in.page : this) |
||||
// #endif |
||||
.select((this._in ? this._in.selector : '._root') + (id ? `${deep}#${id}` : '')).boundingClientRect() |
||||
if (this._in) { |
||||
selector.select(this._in.selector).scrollOffset() |
||||
.select(this._in.selector).boundingClientRect() |
||||
} else { |
||||
// 获取 scroll-view 的位置和滚动距离 |
||||
selector.selectViewport().scrollOffset() // 获取窗口的滚动距离 |
||||
} |
||||
selector.exec(res => { |
||||
if (!res[0]) { |
||||
reject(Error('Label not found')) |
||||
return |
||||
} |
||||
const scrollTop = res[1].scrollTop + res[0].top - (res[2] ? res[2].top : 0) + offset |
||||
if (this._in) { |
||||
// scroll-view 跳转 |
||||
this._in.page[this._in.scrollTop] = scrollTop |
||||
} else { |
||||
// 页面跳转 |
||||
uni.pageScrollTo({ |
||||
scrollTop, |
||||
duration: 300 |
||||
}) |
||||
} |
||||
resolve() |
||||
}) |
||||
// #endif |
||||
}) |
||||
}, |
||||
|
||||
/** |
||||
* @description 获取文本内容 |
||||
* @return {String} |
||||
*/ |
||||
getText (nodes) { |
||||
let text = ''; |
||||
(function traversal (nodes) { |
||||
for (let i = 0; i < nodes.length; i++) { |
||||
const node = nodes[i] |
||||
if (node.type === 'text') { |
||||
text += node.text.replace(/&/g, '&') |
||||
} else if (node.name === 'br') { |
||||
text += '\n' |
||||
} else { |
||||
// 块级标签前后加换行 |
||||
const isBlock = node.name === 'p' || node.name === 'div' || node.name === 'tr' || node.name === 'li' || (node.name[0] === 'h' && node.name[1] > '0' && node.name[1] < '7') |
||||
if (isBlock && text && text[text.length - 1] !== '\n') { |
||||
text += '\n' |
||||
} |
||||
// 递归获取子节点的文本 |
||||
if (node.children) { |
||||
traversal(node.children) |
||||
} |
||||
if (isBlock && text[text.length - 1] !== '\n') { |
||||
text += '\n' |
||||
} else if (node.name === 'td' || node.name === 'th') { |
||||
text += '\t' |
||||
} |
||||
} |
||||
} |
||||
})(nodes || this.nodes) |
||||
return text |
||||
}, |
||||
|
||||
/** |
||||
* @description 获取内容大小和位置 |
||||
* @return {Promise} |
||||
*/ |
||||
getRect () { |
||||
return new Promise((resolve, reject) => { |
||||
uni.createSelectorQuery() |
||||
// #ifndef MP-ALIPAY |
||||
.in(this) |
||||
// #endif |
||||
.select('#_root').boundingClientRect().exec(res => res[0] ? resolve(res[0]) : reject(Error('Root label not found'))) |
||||
}) |
||||
}, |
||||
|
||||
/** |
||||
* @description 设置内容 |
||||
* @param {String} content html 内容 |
||||
* @param {Boolean} append 是否在尾部追加 |
||||
*/ |
||||
setContent (content, append) { |
||||
if (!append || !this.imgList) { |
||||
this.imgList = [] |
||||
} |
||||
const nodes = new Parser(this).parse(content) |
||||
// #ifdef APP-PLUS-NVUE |
||||
if (this._ready) { |
||||
this._set(nodes, append) |
||||
} |
||||
// #endif |
||||
this.$set(this, 'nodes', append ? (this.nodes || []).concat(nodes) : nodes) |
||||
|
||||
// #ifndef APP-PLUS-NVUE |
||||
this._videos = [] |
||||
this.$nextTick(() => { |
||||
this._hook('onLoad') |
||||
this.$emit('load') |
||||
}) |
||||
|
||||
// 等待图片加载完毕 |
||||
let height |
||||
clearInterval(this._timer) |
||||
this._timer = setInterval(() => { |
||||
this.getRect().then(rect => { |
||||
// 350ms 总高度无变化就触发 ready 事件 |
||||
if (rect.height === height) { |
||||
this.$emit('ready', rect) |
||||
clearInterval(this._timer) |
||||
} |
||||
height = rect.height |
||||
}).catch(() => { }) |
||||
}, 350) |
||||
// #endif |
||||
}, |
||||
|
||||
/** |
||||
* @description 调用插件钩子函数 |
||||
*/ |
||||
_hook (name) { |
||||
for (let i = plugins.length; i--;) { |
||||
if (this.plugins[i][name]) { |
||||
this.plugins[i][name]() |
||||
} |
||||
} |
||||
}, |
||||
|
||||
// #ifdef APP-PLUS-NVUE |
||||
/** |
||||
* @description 设置内容 |
||||
*/ |
||||
_set (nodes, append) { |
||||
this.$refs.web.evalJs('setContent(' + JSON.stringify(nodes) + ',' + JSON.stringify([this.containerStyle.replace(/(?:margin|padding)[^;]+/g, ''), this.errorImg, this.loadingImg, this.pauseVideo, this.scrollTable, this.selectable]) + ',' + append + ')') |
||||
}, |
||||
|
||||
/** |
||||
* @description 接收到 web-view 消息 |
||||
*/ |
||||
_onMessage (e) { |
||||
const message = e.detail.data[0] |
||||
switch (message.action) { |
||||
// web-view 初始化完毕 |
||||
case 'onJSBridgeReady': |
||||
this._ready = true |
||||
if (this.nodes) { |
||||
this._set(this.nodes) |
||||
} |
||||
break |
||||
// 内容 dom 加载完毕 |
||||
case 'onLoad': |
||||
this.height = message.height |
||||
this._hook('onLoad') |
||||
this.$emit('load') |
||||
break |
||||
// 所有图片加载完毕 |
||||
case 'onReady': |
||||
this.getRect().then(res => { |
||||
this.$emit('ready', res) |
||||
}).catch(() => { }) |
||||
break |
||||
// 总高度发生变化 |
||||
case 'onHeightChange': |
||||
this.height = message.height |
||||
break |
||||
// 图片点击 |
||||
case 'onImgTap': |
||||
this.$emit('imgtap', message.attrs) |
||||
if (this.previewImg) { |
||||
uni.previewImage({ |
||||
current: parseInt(message.attrs.i), |
||||
urls: this.imgList |
||||
}) |
||||
} |
||||
break |
||||
// 链接点击 |
||||
case 'onLinkTap': { |
||||
const href = message.attrs.href |
||||
this.$emit('linktap', message.attrs) |
||||
if (href) { |
||||
// 锚点跳转 |
||||
if (href[0] === '#') { |
||||
if (this.useAnchor) { |
||||
dom.scrollToElement(this.$refs.web, { |
||||
offset: message.offset |
||||
}) |
||||
} |
||||
} else if (href.includes('://')) { |
||||
// 打开外链 |
||||
if (this.copyLink) { |
||||
plus.runtime.openWeb(href) |
||||
} |
||||
} else { |
||||
uni.navigateTo({ |
||||
url: href, |
||||
fail () { |
||||
uni.switchTab({ |
||||
url: href |
||||
}) |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
break |
||||
} |
||||
// 获取到锚点的偏移量 |
||||
case 'getOffset': |
||||
if (typeof message.offset === 'number') { |
||||
dom.scrollToElement(this.$refs.web, { |
||||
offset: message.offset + this._navigateTo.offset |
||||
}) |
||||
this._navigateTo.resolve() |
||||
} else { |
||||
this._navigateTo.reject(Error('Label not found')) |
||||
} |
||||
break |
||||
// 点击 |
||||
case 'onClick': |
||||
this.$emit('tap') |
||||
this.$emit('click') |
||||
break |
||||
// 出错 |
||||
case 'onError': |
||||
this.$emit('error', { |
||||
source: message.source, |
||||
attrs: message.attrs |
||||
}) |
||||
} |
||||
} |
||||
// #endif |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
/* #ifndef APP-PLUS-NVUE */ |
||||
/* 根节点样式 */ |
||||
._root { |
||||
padding: 1px 0; |
||||
overflow-x: auto; |
||||
overflow-y: hidden; |
||||
-webkit-overflow-scrolling: touch; |
||||
} |
||||
|
||||
/* 长按复制 */ |
||||
._select { |
||||
user-select: text; |
||||
} |
||||
/* #endif */ |
||||
</style> |
@ -0,0 +1,524 @@ |
||||
<template> |
||||
<view :id="attrs.id" :class="'_block _'+name+' '+attrs.class" :style="attrs.style"> |
||||
<block v-for="(n, i) in childs" v-bind:key="i"> |
||||
<!-- 图片 --> |
||||
<!-- 占位图 --> |
||||
<image v-if="n.name==='img'&&((opts[1]&&!ctrl[i])||ctrl[i]<0)" class="_img" :style="n.attrs.style" :src="ctrl[i]<0?opts[2]:opts[1]" mode="widthFix" /> |
||||
<!-- 显示图片 --> |
||||
<!-- #ifdef H5 || APP-PLUS --> |
||||
<img v-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+n.attrs.style" :src="n.attrs.src||(ctrl.load?n.attrs['data-src']:'')" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap"/> |
||||
<!-- #endif --> |
||||
<!-- #ifndef H5 || APP-PLUS --> |
||||
<image v-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+'width:'+(ctrl[i]||1)+'px;height:1px;'+n.attrs.style" :src="n.attrs.src" :mode="n.h?'':'widthFix'" :lazy-load="opts[0]" :webp="n.webp" :show-menu-by-longpress="opts[3]&&!n.attrs.ignore" :image-menu-prevent="!opts[3]||n.attrs.ignore" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" /> |
||||
<!-- #endif --> |
||||
<!-- 文本 --> |
||||
<!-- #ifndef MP-BAIDU || MP-ALIPAY || MP-TOUTIAO --> |
||||
<text v-else-if="n.text" :user-select="n.us" decode>{{n.text}}</text> |
||||
<!-- #endif --> |
||||
<text v-else-if="n.name==='br'">\n</text> |
||||
<!-- 链接 --> |
||||
<view v-else-if="n.name==='a'" :id="n.attrs.id" :class="(n.attrs.href?'_a ':'')+n.attrs.class" hover-class="_hover" :style="'display:inline;'+n.attrs.style" :data-i="i" @tap.stop="linkTap"> |
||||
<node name="span" :childs="n.children" :opts="opts" style="display:inherit" /> |
||||
</view> |
||||
<!-- 视频 --> |
||||
<!-- #ifdef APP-PLUS --> |
||||
<view v-else-if="n.html" :id="n.attrs.id" :class="'_video '+n.attrs.class" :style="n.attrs.style" v-html="n.html" /> |
||||
<!-- #endif --> |
||||
<!-- #ifndef APP-PLUS --> |
||||
<video v-else-if="n.name==='video'" :id="n.attrs.id" :class="n.attrs.class" :style="n.attrs.style" :autoplay="n.attrs.autoplay" :controls="n.attrs.controls" :loop="n.attrs.loop" :muted="n.attrs.muted" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" /> |
||||
<!-- #endif --> |
||||
<!-- #ifdef H5 || APP-PLUS --> |
||||
<iframe v-else-if="n.name==='iframe'" :style="n.attrs.style" :allowfullscreen="n.attrs.allowfullscreen" :frameborder="n.attrs.frameborder" :src="n.attrs.src" /> |
||||
<embed v-else-if="n.name==='embed'" :style="n.attrs.style" :src="n.attrs.src" /> |
||||
<!-- #endif --> |
||||
<!-- #ifndef MP-TOUTIAO --> |
||||
<!-- 音频 --> |
||||
<audio v-else-if="n.name==='audio'" :id="n.attrs.id" :class="n.attrs.class" :style="n.attrs.style" :author="n.attrs.author" :controls="n.attrs.controls" :loop="n.attrs.loop" :name="n.attrs.name" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" /> |
||||
<!-- #endif --> |
||||
<view v-else-if="(n.name==='table'&&n.c)||n.name==='li'" :id="n.attrs.id" :class="'_'+n.name+' '+n.attrs.class" :style="n.attrs.style"> |
||||
<node v-if="n.name==='li'" :childs="n.children" :opts="opts" /> |
||||
<view v-else v-for="(tbody, x) in n.children" v-bind:key="x" :class="'_'+tbody.name+' '+tbody.attrs.class" :style="tbody.attrs.style"> |
||||
<node v-if="tbody.name==='td'||tbody.name==='th'" :childs="tbody.children" :opts="opts" /> |
||||
<block v-else v-for="(tr, y) in tbody.children" v-bind:key="y"> |
||||
<view v-if="tr.name==='td'||tr.name==='th'" :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style"> |
||||
<node :childs="tr.children" :opts="opts" /> |
||||
</view> |
||||
<view v-else :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style"> |
||||
<view v-for="(td, z) in tr.children" v-bind:key="z" :class="'_'+td.name+' '+td.attrs.class" :style="td.attrs.style"> |
||||
<node :childs="td.children" :opts="opts" /> |
||||
</view> |
||||
</view> |
||||
</block> |
||||
</view> |
||||
</view> |
||||
|
||||
<!-- 富文本 --> |
||||
<!-- #ifdef H5 || MP-WEIXIN || MP-QQ || APP-PLUS || MP-360 --> |
||||
<rich-text v-else-if="handler.use(n)" :id="n.attrs.id" :style="n.f" :nodes="[n]" /> |
||||
<!-- #endif --> |
||||
<!-- #ifndef H5 || MP-WEIXIN || MP-QQ || APP-PLUS || MP-360 --> |
||||
<rich-text v-else-if="!n.c" :id="n.attrs.id" :style="n.f+';display:inline'" :preview="false" :nodes="[n]" /> |
||||
<!-- #endif --> |
||||
<!-- 继续递归 --> |
||||
<view v-else-if="n.c===2" :id="n.attrs.id" :class="'_block _'+n.name+' '+n.attrs.class" :style="n.f+';'+n.attrs.style"> |
||||
<node v-for="(n2, j) in n.children" v-bind:key="j" :style="n2.f" :name="n2.name" :attrs="n2.attrs" :childs="n2.children" :opts="opts" /> |
||||
</view> |
||||
<node v-else :style="n.f" :name="n.name" :attrs="n.attrs" :childs="n.children" :opts="opts" /> |
||||
</block> |
||||
</view> |
||||
</template> |
||||
<script module="handler" lang="wxs"> |
||||
// 行内标签列表 |
||||
var inlineTags = { |
||||
abbr: true, |
||||
b: true, |
||||
big: true, |
||||
code: true, |
||||
del: true, |
||||
em: true, |
||||
i: true, |
||||
ins: true, |
||||
label: true, |
||||
q: true, |
||||
small: true, |
||||
span: true, |
||||
strong: true, |
||||
sub: true, |
||||
sup: true |
||||
} |
||||
/** |
||||
* @description 是否使用 rich-text 显示剩余内容 |
||||
*/ |
||||
module.exports = { |
||||
use: function (item) { |
||||
if (item.c) return false |
||||
// 微信和 QQ 的 rich-text inline 布局无效 |
||||
return !inlineTags[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1 |
||||
} |
||||
} |
||||
</script> |
||||
<script> |
||||
|
||||
import node from './node' |
||||
export default { |
||||
name: 'node', |
||||
options: { |
||||
// #ifdef MP-WEIXIN |
||||
virtualHost: true, |
||||
// #endif |
||||
// #ifdef MP-TOUTIAO |
||||
addGlobalClass: false |
||||
// #endif |
||||
}, |
||||
data () { |
||||
return { |
||||
ctrl: {} |
||||
} |
||||
}, |
||||
props: { |
||||
name: String, |
||||
attrs: { |
||||
type: Object, |
||||
default () { |
||||
return {} |
||||
} |
||||
}, |
||||
childs: Array, |
||||
opts: Array |
||||
}, |
||||
components: { |
||||
|
||||
node |
||||
}, |
||||
mounted () { |
||||
this.$nextTick(() => { |
||||
for (this.root = this.$parent; this.root.$options.name !== 'mp-html'; this.root = this.root.$parent); |
||||
}) |
||||
// #ifdef H5 || APP-PLUS |
||||
if (this.opts[0]) { |
||||
let i |
||||
for (i = this.childs.length; i--;) { |
||||
if (this.childs[i].name === 'img') break |
||||
} |
||||
if (i !== -1) { |
||||
this.observer = uni.createIntersectionObserver(this).relativeToViewport({ |
||||
top: 500, |
||||
bottom: 500 |
||||
}) |
||||
this.observer.observe('._img', res => { |
||||
if (res.intersectionRatio) { |
||||
this.$set(this.ctrl, 'load', 1) |
||||
this.observer.disconnect() |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
// #endif |
||||
}, |
||||
beforeDestroy () { |
||||
// #ifdef H5 || APP-PLUS |
||||
if (this.observer) { |
||||
this.observer.disconnect() |
||||
} |
||||
// #endif |
||||
}, |
||||
methods:{ |
||||
// #ifdef MP-WEIXIN |
||||
toJSON () { }, |
||||
// #endif |
||||
/** |
||||
* @description 播放视频事件 |
||||
* @param {Event} e |
||||
*/ |
||||
play (e) { |
||||
// #ifndef APP-PLUS |
||||
if (this.root.pauseVideo) { |
||||
let flag = false; const id = e.target.id |
||||
for (let i = this.root._videos.length; i--;) { |
||||
if (this.root._videos[i].id === id) { |
||||
flag = true |
||||
} else { |
||||
this.root._videos[i].pause() // 自动暂停其他视频 |
||||
} |
||||
} |
||||
// 将自己加入列表 |
||||
if (!flag) { |
||||
const ctx = uni.createVideoContext(id |
||||
// #ifndef MP-BAIDU |
||||
, this |
||||
// #endif |
||||
) |
||||
ctx.id = id |
||||
this.root._videos.push(ctx) |
||||
} |
||||
} |
||||
// #endif |
||||
}, |
||||
|
||||
/** |
||||
* @description 图片点击事件 |
||||
* @param {Event} e |
||||
*/ |
||||
imgTap (e) { |
||||
const node = this.childs[e.currentTarget.dataset.i] |
||||
if (node.a) { |
||||
this.linkTap(node.a) |
||||
return |
||||
} |
||||
if (node.attrs.ignore) return |
||||
// #ifdef H5 || APP-PLUS |
||||
node.attrs.src = node.attrs.src || node.attrs['data-src'] |
||||
// #endif |
||||
this.root.$emit('imgtap', node.attrs) |
||||
// 自动预览图片 |
||||
if (this.root.previewImg) { |
||||
uni.previewImage({ |
||||
current: parseInt(node.attrs.i), |
||||
urls: this.root.imgList |
||||
}) |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* @description 图片长按 |
||||
*/ |
||||
imgLongTap (e) { |
||||
// #ifdef APP-PLUS |
||||
const attrs = this.childs[e.currentTarget.dataset.i].attrs |
||||
if (this.opts[3] && !attrs.ignore) { |
||||
uni.showActionSheet({ |
||||
itemList: ['保存图片'], |
||||
success: () => { |
||||
const save = path => { |
||||
uni.saveImageToPhotosAlbum({ |
||||
filePath: path, |
||||
success () { |
||||
uni.showToast({ |
||||
title: '保存成功' |
||||
}) |
||||
} |
||||
}) |
||||
} |
||||
if (this.root.imgList[attrs.i].startsWith('http')) { |
||||
uni.downloadFile({ |
||||
url: this.root.imgList[attrs.i], |
||||
success: res => save(res.tempFilePath) |
||||
}) |
||||
} else { |
||||
save(this.root.imgList[attrs.i]) |
||||
} |
||||
} |
||||
}) |
||||
} |
||||
// #endif |
||||
}, |
||||
|
||||
/** |
||||
* @description 图片加载完成事件 |
||||
* @param {Event} e |
||||
*/ |
||||
imgLoad (e) { |
||||
const i = e.currentTarget.dataset.i |
||||
/* #ifndef H5 || APP-PLUS */ |
||||
if (!this.childs[i].w) { |
||||
// 设置原宽度 |
||||
this.$set(this.ctrl, i, e.detail.width) |
||||
} else /* #endif */ if ((this.opts[1] && !this.ctrl[i]) || this.ctrl[i] === -1) { |
||||
// 加载完毕,取消加载中占位图 |
||||
this.$set(this.ctrl, i, 1) |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* @description 链接点击事件 |
||||
* @param {Event} e |
||||
*/ |
||||
linkTap (e) { |
||||
const node = e.currentTarget ? this.childs[e.currentTarget.dataset.i] : {} |
||||
const attrs = node.attrs || e |
||||
const href = attrs.href |
||||
this.root.$emit('linktap', Object.assign({ |
||||
innerText: this.root.getText(node.children || []) // 链接内的文本内容 |
||||
}, attrs)) |
||||
if (href) { |
||||
if (href[0] === '#') { |
||||
// 跳转锚点 |
||||
this.root.navigateTo(href.substring(1)).catch(() => { }) |
||||
} else if (href.split('?')[0].includes('://')) { |
||||
// 复制外部链接 |
||||
if (this.root.copyLink) { |
||||
// #ifdef H5 |
||||
window.open(href) |
||||
// #endif |
||||
// #ifdef MP |
||||
uni.setClipboardData({ |
||||
data: href, |
||||
success: () => |
||||
uni.showToast({ |
||||
title: '链接已复制' |
||||
}) |
||||
}) |
||||
// #endif |
||||
// #ifdef APP-PLUS |
||||
plus.runtime.openWeb(href) |
||||
// #endif |
||||
} |
||||
} else { |
||||
// 跳转页面 |
||||
uni.navigateTo({ |
||||
url: href, |
||||
fail () { |
||||
uni.switchTab({ |
||||
url: href, |
||||
fail () { } |
||||
}) |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* @description 错误事件 |
||||
* @param {Event} e |
||||
*/ |
||||
mediaError (e) { |
||||
const i = e.currentTarget.dataset.i |
||||
const node = this.childs[i] |
||||
// 加载其他源 |
||||
if (node.name === 'video' || node.name === 'audio') { |
||||
let index = (this.ctrl[i] || 0) + 1 |
||||
if (index > node.src.length) { |
||||
index = 0 |
||||
} |
||||
if (index < node.src.length) { |
||||
this.$set(this.ctrl, i, index) |
||||
return |
||||
} |
||||
} else if (node.name === 'img' && this.opts[2]) { |
||||
// 显示错误占位图 |
||||
this.$set(this.ctrl, i, -1) |
||||
} |
||||
if (this.root) { |
||||
this.root.$emit('error', { |
||||
source: node.name, |
||||
attrs: node.attrs, |
||||
errMsg: e.detail.errMsg |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style> |
||||
/* a 标签默认效果 */ |
||||
._a { |
||||
padding: 1.5px 0 1.5px 0; |
||||
color: #366092; |
||||
word-break: break-all; |
||||
} |
||||
|
||||
/* a 标签点击态效果 */ |
||||
._hover { |
||||
text-decoration: underline; |
||||
opacity: 0.7; |
||||
} |
||||
|
||||
/* 图片默认效果 */ |
||||
._img { |
||||
max-width: 100%; |
||||
-webkit-touch-callout: none; |
||||
} |
||||
|
||||
/* 内部样式 */ |
||||
|
||||
._block { |
||||
display: block; |
||||
} |
||||
|
||||
._b, |
||||
._strong { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
._code { |
||||
font-family: monospace; |
||||
} |
||||
|
||||
._del { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
._em, |
||||
._i { |
||||
font-style: italic; |
||||
} |
||||
|
||||
._h1 { |
||||
font-size: 2em; |
||||
} |
||||
|
||||
._h2 { |
||||
font-size: 1.5em; |
||||
} |
||||
|
||||
._h3 { |
||||
font-size: 1.17em; |
||||
} |
||||
|
||||
._h5 { |
||||
font-size: 0.83em; |
||||
} |
||||
|
||||
._h6 { |
||||
font-size: 0.67em; |
||||
} |
||||
|
||||
._h1, |
||||
._h2, |
||||
._h3, |
||||
._h4, |
||||
._h5, |
||||
._h6 { |
||||
display: block; |
||||
font-weight: bold; |
||||
} |
||||
|
||||
._image { |
||||
height: 1px; |
||||
} |
||||
|
||||
._ins { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
._li { |
||||
display: list-item; |
||||
} |
||||
|
||||
._ol { |
||||
list-style-type: decimal; |
||||
} |
||||
|
||||
._ol, |
||||
._ul { |
||||
display: block; |
||||
padding-left: 40px; |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
._q::before { |
||||
content: '"'; |
||||
} |
||||
|
||||
._q::after { |
||||
content: '"'; |
||||
} |
||||
|
||||
._sub { |
||||
font-size: smaller; |
||||
vertical-align: sub; |
||||
} |
||||
|
||||
._sup { |
||||
font-size: smaller; |
||||
vertical-align: super; |
||||
} |
||||
|
||||
._thead, |
||||
._tbody, |
||||
._tfoot { |
||||
display: table-row-group; |
||||
} |
||||
|
||||
._tr { |
||||
display: table-row; |
||||
} |
||||
|
||||
._td, |
||||
._th { |
||||
display: table-cell; |
||||
vertical-align: middle; |
||||
} |
||||
|
||||
._th { |
||||
font-weight: bold; |
||||
text-align: center; |
||||
} |
||||
|
||||
._ul { |
||||
list-style-type: disc; |
||||
} |
||||
|
||||
._ul ._ul { |
||||
margin: 0; |
||||
list-style-type: circle; |
||||
} |
||||
|
||||
._ul ._ul ._ul { |
||||
list-style-type: square; |
||||
} |
||||
|
||||
._abbr, |
||||
._b, |
||||
._code, |
||||
._del, |
||||
._em, |
||||
._i, |
||||
._ins, |
||||
._label, |
||||
._q, |
||||
._span, |
||||
._strong, |
||||
._sub, |
||||
._sup { |
||||
display: inline; |
||||
} |
||||
|
||||
/* #ifdef APP-PLUS */ |
||||
._video { |
||||
width: 300px; |
||||
height: 225px; |
||||
} |
||||
/* #endif */ |
||||
</style> |
@ -0,0 +1,79 @@ |
||||
{ |
||||
"id": "mp-html", |
||||
"displayName": "mp-html 富文本组件【全端支持,可编辑】", |
||||
"version": "v2.2.0", |
||||
"description": "一个强大的富文本组件,高效轻量,功能丰富", |
||||
"keywords": [ |
||||
"富文本", |
||||
"编辑器", |
||||
"html", |
||||
"rich-text", |
||||
"editor" |
||||
], |
||||
"repository": "https://github.com/jin-yufeng/mp-html", |
||||
"dcloudext": { |
||||
"category": [ |
||||
"前端组件", |
||||
"通用组件" |
||||
], |
||||
"sale": { |
||||
"regular": { |
||||
"price": "0.00" |
||||
}, |
||||
"sourcecode": { |
||||
"price": "0.00" |
||||
} |
||||
}, |
||||
"contact": { |
||||
"qq": "" |
||||
}, |
||||
"declaration": { |
||||
"ads": "无", |
||||
"data": "无", |
||||
"permissions": "无" |
||||
}, |
||||
"npmurl": "https://www.npmjs.com/package/mp-html" |
||||
}, |
||||
"uni_modules": { |
||||
"platforms": { |
||||
"cloud": { |
||||
"tcb": "y", |
||||
"aliyun": "y" |
||||
}, |
||||
"client": { |
||||
"App": { |
||||
"app-vue": "y", |
||||
"app-nvue": "y" |
||||
}, |
||||
"H5-mobile": { |
||||
"Safari": "y", |
||||
"Android Browser": "y", |
||||
"微信浏览器(Android)": "y", |
||||
"QQ浏览器(Android)": "y" |
||||
}, |
||||
"H5-pc": { |
||||
"Chrome": "y", |
||||
"IE": "u", |
||||
"Edge": "y", |
||||
"Firefox": "y", |
||||
"Safari": "y" |
||||
}, |
||||
"小程序": { |
||||
"微信": "y", |
||||
"阿里": "y", |
||||
"百度": "y", |
||||
"字节跳动": "y", |
||||
"QQ": "y" |
||||
}, |
||||
"快应用": { |
||||
"华为": "y", |
||||
"联盟": "y" |
||||
}, |
||||
"Vue": { |
||||
"vue2": "y", |
||||
"vue3": "u" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1 @@ |
||||
"use strict";function t(t){for(var e=Object.create(null),n=t.attributes.length;n--;)e[t.attributes[n].name]=t.attributes[n].value;return e}function e(){o[1]&&(this.src=o[1],this.onerror=null),this.onclick=null,this.ontouchstart=null,uni.postMessage({data:{action:"onError",source:"img",attrs:t(this)}})}function n(r,i,s){for(var c=0;c<r.length;c++)!function(c){var u=r[c],l=void 0;if(u.type&&"node"!==u.type)l=document.createTextNode(u.text.replace(/&/g,"&"));else{var d=u.name;"svg"===d&&(s="http://www.w3.org/2000/svg"),"html"!==d&&"body"!==d||(d="div"),l=s?document.createElementNS(s,d):document.createElement(d);for(var g in u.attrs)l.setAttribute(g,u.attrs[g]);if(u.children&&n(u.children,l,s),"img"===d){if(!l.src&&l.getAttribute("data-src")&&(l.src=l.getAttribute("data-src")),u.attrs.ignore||(l.onclick=function(e){e.stopPropagation(),uni.postMessage({data:{action:"onImgTap",attrs:t(this)}})}),o[2]){var p=new Image;p.src=l.src,l.src=o[2],p.onload=function(){l.src=this.src},p.onerror=function(){l.onerror()}}l.onerror=e}else if("a"===d)l.addEventListener("click",function(e){e.stopPropagation(),e.preventDefault();var n,o=this.getAttribute("href");o&&"#"===o[0]&&(n=(document.getElementById(o.substr(1))||{}).offsetTop),uni.postMessage({data:{action:"onLinkTap",attrs:t(this),offset:n}})},!0);else if("video"===d||"audio"===d)a.push(l),u.attrs.autoplay||u.attrs.controls||l.setAttribute("controls","true"),o[3]&&(l.onplay=function(){for(var t=0;t<a.length;t++)a[t]!==this&&a[t].pause()}),l.onerror=function(){uni.postMessage({data:{action:"onError",source:d,attrs:t(this)}})};else if("table"===d&&o[4]&&!l.style.cssText.includes("inline")){var h=document.createElement("div");h.style.overflow="auto",h.appendChild(l),l=h}else"svg"===d&&(s=void 0)}i.appendChild(l)}(c)}document.addEventListener("UniAppJSBridgeReady",function(){document.body.onclick=function(){return uni.postMessage({data:{action:"onClick"}})},uni.postMessage({data:{action:"onJSBridgeReady"}})});var o,a=[];window.setContent=function(t,e,r){var i=document.getElementById("content");e[0]&&(document.body.style.cssText=e[0]),e[5]||(i.style.userSelect="none"),r||(i.innerHTML="",a=[]),o=e;var s=document.createDocumentFragment();n(t,s),i.appendChild(s);var c=i.scrollHeight;uni.postMessage({data:{action:"onLoad",height:c}}),clearInterval(window.timer);var u=!1;window.timer=setInterval(function(){i.scrollHeight!==c?(c=i.scrollHeight,uni.postMessage({data:{action:"onHeightChange",height:c}})):u||(u=!0,uni.postMessage({data:{action:"onReady"}}))},350)},window.onunload=function(){clearInterval(window.timer)}; |
@ -0,0 +1 @@ |
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e=e||self).uni=n()}(this,(function(){"use strict";try{var e={};Object.defineProperty(e,"passive",{get:function(){!0}}),window.addEventListener("test-passive",null,e)}catch(e){}var n=Object.prototype.hasOwnProperty;function t(e,t){return n.call(e,t)}var i=[],a=function(e,n){var t={options:{timestamp:+new Date},name:e,arg:n};if(window.__dcloud_weex_postMessage||window.__dcloud_weex_){if("postMessage"===e){var a={data:[n]};return window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessage(a):window.__dcloud_weex_.postMessage(JSON.stringify(a))}var o={type:"WEB_INVOKE_APPSERVICE",args:{data:t,webviewIds:i}};window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessageToService(o):window.__dcloud_weex_.postMessageToService(JSON.stringify(o))}if(!window.plus)return window.parent.postMessage({type:"WEB_INVOKE_APPSERVICE",data:t,pageId:""},"*");if(0===i.length){var r=plus.webview.currentWebview();if(!r)throw new Error("plus.webview.currentWebview() is undefined");var d=r.parent(),s="";s=d?d.id:r.id,i.push(s)}if(plus.webview.getWebviewById("__uniapp__service"))plus.webview.postMessageToUniNView({type:"WEB_INVOKE_APPSERVICE",args:{data:t,webviewIds:i}},"__uniapp__service");else{var w=JSON.stringify(t);plus.webview.getLaunchWebview().evalJS('UniPlusBridge.subscribeHandler("'.concat("WEB_INVOKE_APPSERVICE",'",').concat(w,",").concat(JSON.stringify(i),");"))}},o={navigateTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("navigateTo",{url:encodeURI(n)})},navigateBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.delta;a("navigateBack",{delta:parseInt(n)||1})},switchTab:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("switchTab",{url:encodeURI(n)})},reLaunch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("reLaunch",{url:encodeURI(n)})},redirectTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("redirectTo",{url:encodeURI(n)})},getEnv:function(e){window.plus?e({plus:!0}):e({h5:!0})},postMessage:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a("postMessage",e.data||{})}},r=/uni-app/i.test(navigator.userAgent),d=/Html5Plus/i.test(navigator.userAgent),s=/complete|loaded|interactive/;var w=window.my&&navigator.userAgent.indexOf("AlipayClient")>-1;var u=window.swan&&window.swan.webView&&/swan/i.test(navigator.userAgent);var c=window.qq&&window.qq.miniProgram&&/QQ/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var g=window.tt&&window.tt.miniProgram&&/toutiaomicroapp/i.test(navigator.userAgent);var v=window.wx&&window.wx.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var p=window.qa&&/quickapp/i.test(navigator.userAgent);for(var l,_=function(){window.UniAppJSBridge=!0,document.dispatchEvent(new CustomEvent("UniAppJSBridgeReady",{bubbles:!0,cancelable:!0}))},f=[function(e){if(r||d)return window.__dcloud_weex_postMessage||window.__dcloud_weex_?document.addEventListener("DOMContentLoaded",e):window.plus&&s.test(document.readyState)?setTimeout(e,0):document.addEventListener("plusready",e),o},function(e){if(v)return window.WeixinJSBridge&&window.WeixinJSBridge.invoke?setTimeout(e,0):document.addEventListener("WeixinJSBridgeReady",e),window.wx.miniProgram},function(e){if(c)return window.QQJSBridge&&window.QQJSBridge.invoke?setTimeout(e,0):document.addEventListener("QQJSBridgeReady",e),window.qq.miniProgram},function(e){if(w){document.addEventListener("DOMContentLoaded",e);var n=window.my;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){if(u)return document.addEventListener("DOMContentLoaded",e),window.swan.webView},function(e){if(g)return document.addEventListener("DOMContentLoaded",e),window.tt.miniProgram},function(e){if(p){window.QaJSBridge&&window.QaJSBridge.invoke?setTimeout(e,0):document.addEventListener("QaJSBridgeReady",e);var n=window.qa;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){return document.addEventListener("DOMContentLoaded",e),o}],m=0;m<f.length&&!(l=f[m](_));m++);l||(l={});var E="undefined"!=typeof uni?uni:{};if(!E.navigateTo)for(var b in l)t(l,b)&&(E[b]=l[b]);return E.webView=l,E})); |
@ -0,0 +1 @@ |
||||
<head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"><style>body,html{width:100%;height:100%;overflow-x:scroll;overflow-y:hidden}body{margin:0}video{width:300px;height:225px}img{max-width:100%;-webkit-touch-callout:none}@keyframes show{0%{opacity:0}100%{opacity:1}}</style></head><body><div id="content"></div><script type="text/javascript" src="./js/uni.webview.min.js"></script><script type="text/javascript" src="./js/handler.js"></script></body> |
@ -0,0 +1,137 @@ |
||||
<template> |
||||
<picker mode="multiSelector" |
||||
:value="multiIndex" |
||||
:range="multiArray" |
||||
@change="handleValueChange" |
||||
@columnchange="handleColumnChange"> |
||||
<slot></slot> |
||||
</picker> |
||||
</template> |
||||
|
||||
<script> |
||||
const CHINA_REGIONS = require('./regions.json') |
||||
export default { |
||||
props:{ |
||||
defaultRegions:{ |
||||
type:Array, |
||||
default(){ |
||||
return [] |
||||
} |
||||
}, |
||||
defaultRegionCode:{ |
||||
type:String |
||||
}, |
||||
defaultRegion:[String,Array] |
||||
}, |
||||
data() { |
||||
return { |
||||
cityArr:CHINA_REGIONS[0].childs, |
||||
districtArr:CHINA_REGIONS[0].childs[0].childs, |
||||
multiIndex: [0, 0, 0], |
||||
isInitMultiArray:true, |
||||
} |
||||
}, |
||||
watch:{ |
||||
defaultRegion:{ |
||||
handler(region,oldRegion){ |
||||
if(Array.isArray(region)){ |
||||
// 避免传的是字面量的时候重复触发 |
||||
oldRegion = oldRegion || [] |
||||
if(region.join('')!==oldRegion.join('')){ |
||||
this.handleDefaultRegion(region) |
||||
} |
||||
}else if(region&®ion.length == 6){ |
||||
this.handleDefaultRegion(region) |
||||
}else{ |
||||
console.warn('defaultRegion非有效格式') |
||||
} |
||||
}, |
||||
immediate:true, |
||||
} |
||||
}, |
||||
computed:{ |
||||
multiArray(){ |
||||
return this.pickedArr.map(arr=>arr.map(item=>item.name)) |
||||
}, |
||||
pickedArr(){ |
||||
// 进行初始化 |
||||
if(this.isInitMultiArray){ |
||||
return [ |
||||
CHINA_REGIONS, |
||||
CHINA_REGIONS[0].childs, |
||||
CHINA_REGIONS[0].childs[0].childs |
||||
] |
||||
} |
||||
return [CHINA_REGIONS,this.cityArr,this.districtArr]; |
||||
} |
||||
}, |
||||
methods: { |
||||
handleColumnChange(e){ |
||||
// console.log(e); |
||||
this.isInitMultiArray = false; |
||||
const that = this; |
||||
let col = e.detail.column; |
||||
let row = e.detail.value; |
||||
that.multiIndex[col] = row; |
||||
try{ |
||||
switch(col){ |
||||
case 0: |
||||
if(CHINA_REGIONS[that.multiIndex[0]].childs.length==0){ |
||||
that.cityArr = that.districtArr = [CHINA_REGIONS[that.multiIndex[0]]] |
||||
break; |
||||
} |
||||
that.cityArr = CHINA_REGIONS[that.multiIndex[0]].childs |
||||
that.districtArr = CHINA_REGIONS[that.multiIndex[0]].childs[that.multiIndex[1]].childs |
||||
break; |
||||
case 1: |
||||
that.districtArr = CHINA_REGIONS[that.multiIndex[0]].childs[that.multiIndex[1]].childs |
||||
break; |
||||
case 2: |
||||
break; |
||||
} |
||||
}catch(e){ |
||||
// console.log(e); |
||||
that.districtArr = CHINA_REGIONS[that.multiIndex[0]].childs[0].childs |
||||
} |
||||
|
||||
}, |
||||
handleValueChange(e){ |
||||
// 结构赋值 |
||||
let [index0,index1,index2] = e.detail.value; |
||||
let [arr0,arr1,arr2] = this.pickedArr; |
||||
let address = [arr0[index0],arr1[index1],arr2[index2]]; |
||||
// console.log(address); |
||||
this.$emit('getRegion',address) |
||||
}, |
||||
handleDefaultRegion(region){ |
||||
const isCode = !Array.isArray(region) |
||||
this.isInitMultiArray = false; |
||||
let children = CHINA_REGIONS |
||||
for(let i=0;i<3;i++){ |
||||
for(let j=0;j<children.length;j++){ |
||||
let condition = isCode?children[j].code==region.slice(0,(i+1)*2):children[j].name.includes(region[i]); |
||||
if(condition){ |
||||
// 匹配成功进行赋值 |
||||
// console.log(i,j,children.length-1); |
||||
children = children[j].childs; |
||||
if(i==0){ |
||||
this.cityArr = children |
||||
}else if(i==1){ |
||||
this.districtArr = children |
||||
} |
||||
this.$set(this.multiIndex,i,j) |
||||
// console.log(this.multiIndex); |
||||
break; |
||||
}else{ |
||||
// 首次匹配失败就用默认的初始化 |
||||
// console.log(i,j,children.length-1); |
||||
if(i==0 && j==(children.length-1)){ |
||||
this.isInitMultiArray = true; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
} |
||||
</script> |
@ -0,0 +1,176 @@ |
||||
<template> |
||||
<view v-if="show" :style="{width: systemInfo.width + 'px', height: systemInfo.height + 'px', backgroundColor: bgcolor, position: 'absolute', left: 0, top: 0, zIndex: 9998, overflow: 'hidden'}"> |
||||
<view v-for="(item,rect_idx) in skeletonRectLists" :key="rect_idx + 'rect'" :class="[loading == 'chiaroscuro' ? 'chiaroscuro' : '']" |
||||
:style="{width: item.width + 'px', height: item.height + 'px', backgroundColor: 'rgb(194, 207, 214)', position: 'absolute', left: item.left + 'px', top: item.top + 'px'}"></view> |
||||
<view v-for="(item,circle_idx) in skeletonCircleLists" :key="circle_idx + 'circle'" :class="loading == 'chiaroscuro' ? 'chiaroscuro' : ''" |
||||
:style="{width: item.width + 'px', height: item.height + 'px', backgroundColor: 'rgb(194, 207, 214)', borderRadius: item.width + 'px', position: 'absolute', left: item.left + 'px', top: item.top + 'px'}"></view> |
||||
<view class="spinbox" v-if="loading == 'spin'"> |
||||
<view class="spin"></view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "quick-skeleton", |
||||
props: { |
||||
bgcolor: { |
||||
type: String, |
||||
value: '#FFF' |
||||
}, |
||||
selector: { |
||||
type: String, |
||||
value: 'skeleton' |
||||
}, |
||||
loading: { |
||||
type: String, |
||||
value: 'spin' |
||||
}, |
||||
show: { |
||||
type: Boolean, |
||||
value: false |
||||
}, |
||||
isNodes: { |
||||
type: Number, |
||||
value: false |
||||
} //控制什么时候开始抓取元素节点,只要数值改变就重新抓取 |
||||
}, |
||||
data() { |
||||
return { |
||||
loadingAni: ['spin', 'chiaroscuro'], |
||||
systemInfo: {}, |
||||
skeletonRectLists: [], |
||||
skeletonCircleLists: [] |
||||
} |
||||
}, |
||||
watch: { |
||||
isNodes (val) { |
||||
this.readyAction(); |
||||
} |
||||
}, |
||||
mounted() { |
||||
this.attachedAction(); |
||||
}, |
||||
methods: { |
||||
attachedAction: function(){ |
||||
//默认的首屏宽高,防止内容闪现 |
||||
const systemInfo = uni.getSystemInfoSync(); |
||||
this.systemInfo = { |
||||
width: systemInfo.windowWidth, |
||||
height: systemInfo.windowHeight |
||||
}; |
||||
this.loading = this.loadingAni.includes(this.loading) ? this.loading : 'spin'; |
||||
}, |
||||
readyAction: function(){ |
||||
const that = this; |
||||
//绘制背景 |
||||
uni.createSelectorQuery().selectAll(`.${this.selector}`).boundingClientRect().exec(function(res){ |
||||
that.systemInfo.height = res[0][0].height + res[0][0].top; |
||||
}); |
||||
|
||||
//绘制矩形 |
||||
this.rectHandle(); |
||||
|
||||
//绘制圆形 |
||||
this.radiusHandle(); |
||||
}, |
||||
rectHandle: function(){ |
||||
const that = this; |
||||
|
||||
//绘制不带样式的节点 |
||||
uni.createSelectorQuery().selectAll(`.${this.selector}-rect`).boundingClientRect().exec(function(res){ |
||||
that.skeletonRectLists = res[0]; |
||||
}); |
||||
|
||||
}, |
||||
radiusHandle(){ |
||||
const that = this; |
||||
|
||||
uni.createSelectorQuery().selectAll(`.${this.selector}-radius`).boundingClientRect().exec(function(res){ |
||||
that.skeletonCircleLists = res[0]; |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
.spinbox{ |
||||
position: fixed; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
height: 100%; |
||||
width: 100%; |
||||
z-index: 9999 |
||||
} |
||||
.spin { |
||||
display: inline-block; |
||||
width: 64rpx; |
||||
height: 64rpx; |
||||
} |
||||
.spin:after { |
||||
content: " "; |
||||
display: block; |
||||
width: 46rpx; |
||||
height: 46rpx; |
||||
margin: 1rpx; |
||||
border-radius: 50%; |
||||
border: 5rpx solid #409eff; |
||||
border-color: #409eff transparent #409eff transparent; |
||||
animation: spin 1.2s linear infinite; |
||||
} |
||||
@keyframes spin { |
||||
0% { |
||||
transform: rotate(0deg); |
||||
} |
||||
100% { |
||||
transform: rotate(360deg); |
||||
} |
||||
} |
||||
|
||||
.chiaroscuro{ |
||||
width: 100%; |
||||
height: 100%; |
||||
background: rgb(194, 207, 214); |
||||
animation-duration: 2s; |
||||
animation-name: blink; |
||||
animation-iteration-count: infinite; |
||||
} |
||||
|
||||
@keyframes blink { |
||||
0% { |
||||
opacity: .4; |
||||
} |
||||
50% { |
||||
opacity: 1; |
||||
} |
||||
100% { |
||||
opacity: .4; |
||||
} |
||||
} |
||||
|
||||
@keyframes flush { |
||||
0% { |
||||
left: -100%; |
||||
} |
||||
50% { |
||||
left: 0; |
||||
} |
||||
100% { |
||||
left: 100%; |
||||
} |
||||
} |
||||
.shine { |
||||
animation: flush 2s linear infinite; |
||||
position: absolute; |
||||
top: 0; |
||||
bottom: 0; |
||||
width: 100%; |
||||
background: linear-gradient(to left, |
||||
rgba(255, 255, 255, 0) 0%, |
||||
rgba(255, 255, 255, .85) 50%, |
||||
rgba(255, 255, 255, 0) 100% |
||||
) |
||||
} |
||||
</style> |
@ -0,0 +1,96 @@ |
||||
export default { |
||||
'contact': '\ue100', |
||||
'person': '\ue101', |
||||
'personadd': '\ue102', |
||||
'contact-filled': '\ue130', |
||||
'person-filled': '\ue131', |
||||
'personadd-filled': '\ue132', |
||||
'phone': '\ue200', |
||||
'email': '\ue201', |
||||
'chatbubble': '\ue202', |
||||
'chatboxes': '\ue203', |
||||
'phone-filled': '\ue230', |
||||
'email-filled': '\ue231', |
||||
'chatbubble-filled': '\ue232', |
||||
'chatboxes-filled': '\ue233', |
||||
'weibo': '\ue260', |
||||
'weixin': '\ue261', |
||||
'pengyouquan': '\ue262', |
||||
'chat': '\ue263', |
||||
'qq': '\ue264', |
||||
'videocam': '\ue300', |
||||
'camera': '\ue301', |
||||
'mic': '\ue302', |
||||
'location': '\ue303', |
||||
'mic-filled': '\ue332', |
||||
'speech': '\ue332', |
||||
'location-filled': '\ue333', |
||||
'micoff': '\ue360', |
||||
'image': '\ue363', |
||||
'map': '\ue364', |
||||
'compose': '\ue400', |
||||
'trash': '\ue401', |
||||
'upload': '\ue402', |
||||
'download': '\ue403', |
||||
'close': '\ue404', |
||||
'redo': '\ue405', |
||||
'undo': '\ue406', |
||||
'refresh': '\ue407', |
||||
'star': '\ue408', |
||||
'plus': '\ue409', |
||||
'minus': '\ue410', |
||||
'circle': '\ue411', |
||||
'checkbox': '\ue411', |
||||
'close-filled': '\ue434', |
||||
'clear': '\ue434', |
||||
'refresh-filled': '\ue437', |
||||
'star-filled': '\ue438', |
||||
'plus-filled': '\ue439', |
||||
'minus-filled': '\ue440', |
||||
'circle-filled': '\ue441', |
||||
'checkbox-filled': '\ue442', |
||||
'closeempty': '\ue460', |
||||
'refreshempty': '\ue461', |
||||
'reload': '\ue462', |
||||
'starhalf': '\ue463', |
||||
'spinner': '\ue464', |
||||
'spinner-cycle': '\ue465', |
||||
'search': '\ue466', |
||||
'plusempty': '\ue468', |
||||
'forward': '\ue470', |
||||
'back': '\ue471', |
||||
'left-nav': '\ue471', |
||||
'checkmarkempty': '\ue472', |
||||
'home': '\ue500', |
||||
'navigate': '\ue501', |
||||
'gear': '\ue502', |
||||
'paperplane': '\ue503', |
||||
'info': '\ue504', |
||||
'help': '\ue505', |
||||
'locked': '\ue506', |
||||
'more': '\ue507', |
||||
'flag': '\ue508', |
||||
'home-filled': '\ue530', |
||||
'gear-filled': '\ue532', |
||||
'info-filled': '\ue534', |
||||
'help-filled': '\ue535', |
||||
'more-filled': '\ue537', |
||||
'settings': '\ue560', |
||||
'list': '\ue562', |
||||
'bars': '\ue563', |
||||
'loop': '\ue565', |
||||
'paperclip': '\ue567', |
||||
'eye': '\ue568', |
||||
'arrowup': '\ue580', |
||||
'arrowdown': '\ue581', |
||||
'arrowleft': '\ue582', |
||||
'arrowright': '\ue583', |
||||
'arrowthinup': '\ue584', |
||||
'arrowthindown': '\ue585', |
||||
'arrowthinleft': '\ue586', |
||||
'arrowthinright': '\ue587', |
||||
'pulldown': '\ue588', |
||||
'closefill': '\ue589', |
||||
'sound': '\ue590', |
||||
'scan': '\ue612' |
||||
} |
@ -0,0 +1,24 @@ |
||||
## 1.1.2(2021-08-30) |
||||
- 修复 value 属性与 modelValue 属性不兼容的Bug |
||||
## 1.1.1(2021-08-24) |
||||
- 新增 支持国际化 |
||||
## 1.1.0(2021-07-30) |
||||
- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) |
||||
## 1.0.9(2021-05-12) |
||||
- 新增 项目示例地址 |
||||
## 1.0.8(2021-04-21) |
||||
- 优化 添加依赖 uni-icons, 导入后自动下载依赖 |
||||
## 1.0.7(2021-04-15) |
||||
- uni-ui 新增 uni-search-bar 的 focus 事件 |
||||
|
||||
## 1.0.6(2021-02-05) |
||||
- 优化 组件引用关系,通过uni_modules引用组件 |
||||
|
||||
## 1.0.5(2021-02-05) |
||||
- 调整为uni_modules目录规范 |
||||
- 新增 支持双向绑定 |
||||
- 更改 input 事件的返回值,e={value:Number} --> e=value |
||||
- 新增 支持图标插槽 |
||||
- 新增 支持 clear、blur 事件 |
||||
- 新增 支持 focus 属性 |
||||
- 去掉组件背景色 |
@ -0,0 +1,4 @@ |
||||
{ |
||||
"uni-search-bar.cancel": "cancel", |
||||
"uni-search-bar.placeholder": "Search enter content" |
||||
} |
@ -0,0 +1,8 @@ |
||||
import en from './en.json' |
||||
import zhHans from './zh-Hans.json' |
||||
import zhHant from './zh-Hant.json' |
||||
export default { |
||||
en, |
||||
'zh-Hans': zhHans, |
||||
'zh-Hant': zhHant |
||||
} |
@ -0,0 +1,4 @@ |
||||
{ |
||||
"uni-search-bar.cancel": "cancel", |
||||
"uni-search-bar.placeholder": "请输入搜索内容" |
||||
} |
@ -0,0 +1,4 @@ |
||||
{ |
||||
"uni-search-bar.cancel": "cancel", |
||||
"uni-search-bar.placeholder": "請輸入搜索內容" |
||||
} |
@ -0,0 +1,290 @@ |
||||
<template> |
||||
<view class="uni-searchbar"> |
||||
<view :style="{borderRadius:radius+'px',backgroundColor: bgColor}" class="uni-searchbar__box" @click="searchClick"> |
||||
<view class="uni-searchbar__box-icon-search"> |
||||
<slot name="searchIcon"> |
||||
<uni-icons color="#999999" size="18" type="search" /> |
||||
</slot> |
||||
</view> |
||||
<input v-if="show || searchVal" :focus="showSync" :placeholder="placeholderText" :maxlength="maxlength" class="uni-searchbar__box-search-input" |
||||
confirm-type="search" type="text" v-model="searchVal" @confirm="confirm" @blur="blur" @focus="emitFocus" /> |
||||
<text v-else class="uni-searchbar__text-placeholder">{{ placeholder }}</text> |
||||
<view v-if="show && (clearButton==='always'||clearButton==='auto'&&searchVal!=='')" class="uni-searchbar__box-icon-clear" |
||||
@click="clear"> |
||||
<slot name="clearIcon"> |
||||
<uni-icons color="#c0c4cc" size="15" type="clear" /> |
||||
</slot> |
||||
</view> |
||||
</view> |
||||
<text @click="cancel" class="uni-searchbar__cancel" v-if="cancelButton ==='always' || show && cancelButton ==='auto'">{{cancelTextI18n}}</text> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
initVueI18n |
||||
} from '@dcloudio/uni-i18n' |
||||
import messages from './i18n/index.js' |
||||
const { t } = initVueI18n(messages) |
||||
|
||||
/** |
||||
* SearchBar 搜索栏 |
||||
* @description 评分组件 |
||||
* @tutorial https://ext.dcloud.net.cn/plugin?id=866 |
||||
* @property {Number} radius 搜索栏圆角 |
||||
* @property {Number} maxlength 输入最大长度 |
||||
* @property {String} placeholder 搜索栏Placeholder |
||||
* @property {String} clearButton = [always|auto|none] 是否显示清除按钮 |
||||
* @value always 一直显示 |
||||
* @value auto 输入框不为空时显示 |
||||
* @value none 一直不显示 |
||||
* @property {String} cancelButton = [always|auto|none] 是否显示取消按钮 |
||||
* @value always 一直显示 |
||||
* @value auto 输入框不为空时显示 |
||||
* @value none 一直不显示 |
||||
* @property {String} cancelText 取消按钮的文字 |
||||
* @property {String} bgColor 输入框背景颜色 |
||||
* @property {Boolean} focus 是否自动聚焦 |
||||
* @event {Function} confirm uniSearchBar 的输入框 confirm 事件,返回参数为uniSearchBar的value,e={value:Number} |
||||
* @event {Function} input uniSearchBar 的 value 改变时触发事件,返回参数为uniSearchBar的value,e=value |
||||
* @event {Function} cancel 点击取消按钮时触发事件,返回参数为uniSearchBar的value,e={value:Number} |
||||
* @event {Function} clear 点击清除按钮时触发事件,返回参数为uniSearchBar的value,e={value:Number} |
||||
* @event {Function} blur input失去焦点时触发事件,返回参数为uniSearchBar的value,e={value:Number} |
||||
*/ |
||||
|
||||
export default { |
||||
name: "UniSearchBar", |
||||
emits:['input','update:modelValue','clear','cancel','confirm','blur','focus'], |
||||
props: { |
||||
placeholder: { |
||||
type: String, |
||||
default: "" |
||||
}, |
||||
radius: { |
||||
type: [Number, String], |
||||
default: 5 |
||||
}, |
||||
clearButton: { |
||||
type: String, |
||||
default: "auto" |
||||
}, |
||||
cancelButton: { |
||||
type: String, |
||||
default: "auto" |
||||
}, |
||||
cancelText: { |
||||
type: String, |
||||
default: '取消' |
||||
}, |
||||
bgColor: { |
||||
type: String, |
||||
default: "#F8F8F8" |
||||
}, |
||||
maxlength: { |
||||
type: [Number, String], |
||||
default: 100 |
||||
}, |
||||
value: { |
||||
type: [Number, String], |
||||
default: "" |
||||
}, |
||||
modelValue: { |
||||
type: [Number, String], |
||||
default: "" |
||||
}, |
||||
focus: { |
||||
type: Boolean, |
||||
default: false |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
show: false, |
||||
showSync: false, |
||||
searchVal: '' |
||||
} |
||||
}, |
||||
computed:{ |
||||
cancelTextI18n() { |
||||
return this.cancelText || t("uni-search-bar.cancel") |
||||
}, |
||||
placeholderText() { |
||||
return this.placeholder || t("uni-search-bar.placeholder") |
||||
} |
||||
}, |
||||
watch: { |
||||
// #ifndef VUE3 |
||||
value: { |
||||
immediate: true, |
||||
handler(newVal) { |
||||
this.searchVal = newVal |
||||
if (newVal) { |
||||
this.show = true |
||||
} |
||||
} |
||||
}, |
||||
// #endif |
||||
// #ifdef VUE3 |
||||
modelValue: { |
||||
immediate: true, |
||||
handler(newVal) { |
||||
this.searchVal = newVal |
||||
if (newVal) { |
||||
this.show = true |
||||
} |
||||
} |
||||
}, |
||||
// #endif |
||||
focus: { |
||||
immediate: true, |
||||
handler(newVal) { |
||||
if (newVal) { |
||||
this.show = true; |
||||
this.$nextTick(() => { |
||||
this.showSync = true |
||||
}) |
||||
} |
||||
} |
||||
}, |
||||
searchVal(newVal, oldVal) { |
||||
// #ifndef VUE3 |
||||
this.$emit("input", newVal) |
||||
// #endif |
||||
// #ifdef VUE3 |
||||
this.$emit("update:modelValue", newVal) |
||||
// #endif |
||||
} |
||||
}, |
||||
methods: { |
||||
searchClick() { |
||||
if (this.show) { |
||||
return |
||||
} |
||||
this.show = true; |
||||
this.$nextTick(() => { |
||||
this.showSync = true |
||||
}) |
||||
}, |
||||
clear() { |
||||
this.$emit("clear", { |
||||
value: this.searchVal |
||||
}) |
||||
this.searchVal = "" |
||||
}, |
||||
cancel() { |
||||
this.$emit("cancel", { |
||||
value: this.searchVal |
||||
}); |
||||
this.searchVal = "" |
||||
this.show = false |
||||
this.showSync = false |
||||
// #ifndef APP-PLUS |
||||
uni.hideKeyboard() |
||||
// #endif |
||||
// #ifdef APP-PLUS |
||||
plus.key.hideSoftKeybord() |
||||
// #endif |
||||
}, |
||||
confirm() { |
||||
// #ifndef APP-PLUS |
||||
uni.hideKeyboard(); |
||||
// #endif |
||||
// #ifdef APP-PLUS |
||||
plus.key.hideSoftKeybord() |
||||
// #endif |
||||
this.$emit("confirm", { |
||||
value: this.searchVal |
||||
}) |
||||
}, |
||||
blur() { |
||||
// #ifndef APP-PLUS |
||||
uni.hideKeyboard(); |
||||
// #endif |
||||
// #ifdef APP-PLUS |
||||
plus.key.hideSoftKeybord() |
||||
// #endif |
||||
this.$emit("blur", { |
||||
value: this.searchVal |
||||
}) |
||||
}, |
||||
emitFocus(e) { |
||||
this.$emit("focus", e.detail) |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
$uni-searchbar-height: 36px; |
||||
|
||||
.uni-searchbar { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: row; |
||||
position: relative; |
||||
padding: $uni-spacing-col-base; |
||||
// background-color: $uni-bg-color; |
||||
} |
||||
|
||||
.uni-searchbar__box { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
box-sizing: border-box; |
||||
/* #endif */ |
||||
overflow: hidden; |
||||
position: relative; |
||||
flex: 1; |
||||
justify-content: center; |
||||
flex-direction: row; |
||||
align-items: center; |
||||
height: $uni-searchbar-height; |
||||
padding: 5px 8px 5px 0px; |
||||
border-width: 0.5px; |
||||
border-style: solid; |
||||
border-color: $uni-border-color; |
||||
} |
||||
|
||||
.uni-searchbar__box-icon-search { |
||||
/* #ifndef APP-NVUE */ |
||||
display: flex; |
||||
/* #endif */ |
||||
flex-direction: row; |
||||
// width: 32px; |
||||
padding: 0 8px; |
||||
justify-content: center; |
||||
align-items: center; |
||||
color: $uni-text-color-placeholder; |
||||
} |
||||
|
||||
.uni-searchbar__box-search-input { |
||||
flex: 1; |
||||
font-size: $uni-font-size-base; |
||||
color: $uni-text-color; |
||||
} |
||||
|
||||
.uni-searchbar__box-icon-clear { |
||||
align-items: center; |
||||
line-height: 24px; |
||||
padding-left: 8px; |
||||
/* #ifdef H5 */ |
||||
cursor: pointer; |
||||
/* #endif */ |
||||
} |
||||
|
||||
.uni-searchbar__text-placeholder { |
||||
font-size: $uni-font-size-base; |
||||
color: $uni-text-color-placeholder; |
||||
margin-left: 5px; |
||||
} |
||||
|
||||
.uni-searchbar__cancel { |
||||
padding-left: 10px; |
||||
line-height: $uni-searchbar-height; |
||||
font-size: 14px; |
||||
color: $uni-text-color; |
||||
/* #ifdef H5 */ |
||||
cursor: pointer; |
||||
/* #endif */ |
||||
} |
||||
</style> |
@ -0,0 +1,88 @@ |
||||
{ |
||||
"id": "uni-search-bar", |
||||
"displayName": "uni-search-bar 搜索栏", |
||||
"version": "1.1.2", |
||||
"description": "搜索栏组件,通常用于搜索商品、文章等", |
||||
"keywords": [ |
||||
"uni-ui", |
||||
"uniui", |
||||
"搜索框", |
||||
"搜索栏" |
||||
], |
||||
"repository": "https://github.com/dcloudio/uni-ui", |
||||
"engines": { |
||||
"HBuilderX": "" |
||||
}, |
||||
"directories": { |
||||
"example": "../../temps/example_temps" |
||||
}, |
||||
"dcloudext": { |
||||
"category": [ |
||||
"前端组件", |
||||
"通用组件" |
||||
], |
||||
"sale": { |
||||
"regular": { |
||||
"price": "0.00" |
||||
}, |
||||
"sourcecode": { |
||||
"price": "0.00" |
||||
} |
||||
}, |
||||
"contact": { |
||||
"qq": "" |
||||
}, |
||||
"declaration": { |
||||
"ads": "无", |
||||
"data": "无", |
||||
"permissions": "无" |
||||
}, |
||||
"npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" |
||||
}, |
||||
"uni_modules": { |
||||
"dependencies": [ |
||||
"uni-icons" |
||||
], |
||||
"encrypt": [], |
||||
"platforms": { |
||||
"cloud": { |
||||
"tcb": "y", |
||||
"aliyun": "y" |
||||
}, |
||||
"client": { |
||||
"App": { |
||||
"app-vue": "y", |
||||
"app-nvue": "y" |
||||
}, |
||||
"H5-mobile": { |
||||
"Safari": "y", |
||||
"Android Browser": "y", |
||||
"微信浏览器(Android)": "y", |
||||
"QQ浏览器(Android)": "y" |
||||
}, |
||||
"H5-pc": { |
||||
"Chrome": "y", |
||||
"IE": "y", |
||||
"Edge": "y", |
||||
"Firefox": "y", |
||||
"Safari": "y" |
||||
}, |
||||
"小程序": { |
||||
"微信": "y", |
||||
"阿里": "y", |
||||
"百度": "y", |
||||
"字节跳动": "y", |
||||
"QQ": "y" |
||||
}, |
||||
"快应用": { |
||||
"华为": "u", |
||||
"联盟": "u" |
||||
}, |
||||
"Vue": { |
||||
"vue2": "y", |
||||
"vue3": "u" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,86 @@ |
||||
|
||||
|
||||
## SearchBar 搜索栏 |
||||
|
||||
> **组件名:uni-search-bar** |
||||
> 代码块: `uSearchBar` |
||||
|
||||
|
||||
评分组件 |
||||
|
||||
### 安装方式 |
||||
|
||||
本组件符合[easycom](https://uniapp.dcloud.io/collocation/pages?id=easycom)规范,`HBuilderX 2.5.5`起,只需将本组件导入项目,在页面`template`中即可直接使用,无需在页面中`import`和注册`components`。 |
||||
|
||||
如需通过`npm`方式使用`uni-ui`组件,另见文档:[https://ext.dcloud.net.cn/plugin?id=55](https://ext.dcloud.net.cn/plugin?id=55) |
||||
|
||||
### 基本用法 |
||||
|
||||
在 ``template`` 中使用组件 |
||||
|
||||
```html |
||||
<!-- 基本用法 --> |
||||
<uni-search-bar @confirm="search" @input="input" ></uni-search-bar> |
||||
|
||||
<!-- v-model 用法 --> |
||||
<uni-search-bar @confirm="search" :focus="true" v-model="searchValue" @blur="blur" @focus="focus" @input="input" @cancel="cancel" @change="change" @clear="clear"> |
||||
|
||||
<!-- 自定义Placeholder --> |
||||
<uni-search-bar placeholder="自定placeholder" @confirm="search"></uni-search-bar> |
||||
|
||||
<!-- 设置圆角 --> |
||||
<uni-search-bar :radius="100" @confirm="search"></uni-search-bar> |
||||
``` |
||||
|
||||
|
||||
## API |
||||
### SearchBar Props |
||||
|
||||
|属性名 |类型 |默认值 |说明 | |
||||
|:-: |:-: |:-: |:-: | |
||||
|value/v-model |StringNumber | |搜索栏绑定值 | |
||||
|placeholder |String |搜索 |搜索栏Placeholder | |
||||
|radius |Number |10 |搜索栏圆角,单位px | |
||||
|clearButton |String |auto |是否显示清除按钮,可选值`always`-一直显示、`auto`-输入框不为空时显示、`none`-一直不显示 | |
||||
|cancelButton |String |auto |是否显示取消按钮,可选值`always`-一直显示、`auto`-输入框不为空时显示、`none`-一直不显示 | |
||||
|cancelText |String |取消 |取消按钮的文字 | |
||||
|bgColor |String |#F8F8F8|输入框背景颜色 | |
||||
|maxlength |Number |100 |输入最大长度 | |
||||
|focus |Boolean |false | | |
||||
|
||||
|
||||
### SearchBar Events |
||||
|
||||
|事件称名 |说明 |返回参数 | |
||||
|:-: |:-: |:-: | |
||||
|@confirm |uniSearchBar 的输入框 confirm 事件,返回参数为uniSearchBar的value |e={value:Number} | |
||||
|@input |uniSearchBar 的 value 改变时触发事件,返回参数为uniSearchBar的value|e=value | |
||||
|@cancel |点击取消按钮时触发事件,返回参数为uniSearchBar的value |e={value:Number} | |
||||
|@clear |点击清除按钮时触发事件,返回参数为uniSearchBar的value |e={value:Number} | |
||||
|@focus |input 获取焦点时触发事件,返回参数为uniSearchBar的value |e={value:Number} | |
||||
|@blur |input 失去焦点时触发事件,返回参数为uniSearchBar的value |e={value:Number} | |
||||
|
||||
### 替换 icon 的 slot 插槽 |
||||
|
||||
|插槽称名 |说明 | |
||||
|:-: |:-: | |
||||
|searchIcon |替换组件的搜索图标| |
||||
|clearIcon |替换组件的清除图标| |
||||
|
||||
```html |
||||
<!-- 替换组件的搜索图标 --> |
||||
<uni-search-bar placeholder="自定义searchIcon" @confirm="search" @cancel="cancel" cancel-text="cancel"> |
||||
<uni-icons slot="searchIcon" color="#999999" size="18" type="home" /> |
||||
</uni-search-bar> |
||||
|
||||
<!-- 替换组件的清除图标 --> |
||||
<uni-search-bar placeholder="自定义clearIcon" @confirm="search" @cancel="cancel" cancel-text="cancel"> |
||||
<view slot="clearIcon" style="color: #999999" >X</view> |
||||
</uni-search-bar> |
||||
|
||||
``` |
||||
|
||||
|
||||
## 组件示例 |
||||
|
||||
点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/search-bar/search-bar](https://hellouniapp.dcloud.net.cn/pages/extUI/search-bar/search-bar) |
@ -0,0 +1,134 @@ |
||||
<template> |
||||
<view> |
||||
<!-- 按钮 --> |
||||
<button |
||||
:class="['buttonBorder',!_rotate?'dlbutton':'dlbutton_loading']" |
||||
:style="{'background':bgColor, 'color': fontColor}" |
||||
|
||||
@click="$emit('click', $event)" |
||||
@contact="$emit('contact', $event)" |
||||
@error="$emit('error', $event)" |
||||
@getphonenumber="$emit('getphonenumber', $event)" |
||||
@getuserinfo="$emit('getuserinfo', $event)" |
||||
@launchapp="$emit('launchapp', $event)" |
||||
@longtap="$emit('longtap', $event)" |
||||
@opensetting="$emit('opensetting', $event)" |
||||
@touchcancel="$emit('touchcancel', $event)" |
||||
@touchend="$emit('touchend', $event)" |
||||
@touchmove="$emit('touchmove', $event)" |
||||
@touchstart="$emit('touchstart', $event)" |
||||
> |
||||
<view :class="_rotate?'rotate_loop':''"> |
||||
<text v-if="_rotate" class="cuIcon cuIcon-loading1 "></text> |
||||
<view v-if="!_rotate"><slot name="text">{{ text }}</slot></view> |
||||
</view> |
||||
</button> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default{ |
||||
props:{ |
||||
text: String, //显示文本 |
||||
rotate:{ |
||||
//是否启动加载 |
||||
type: [Boolean,String], |
||||
default: false, |
||||
}, |
||||
bgColor:{ |
||||
//按钮背景颜色 |
||||
type: String, |
||||
default: "linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.6))", |
||||
}, |
||||
fontColor:{ |
||||
//按钮字体颜色 |
||||
type: String, |
||||
default: "#FFFFFF", |
||||
}, |
||||
}, |
||||
computed:{ |
||||
_rotate() { |
||||
//处理值 |
||||
return String(this.rotate) !== 'false' |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
@import url("./css/icon.css"); |
||||
|
||||
button{ |
||||
outline: none; /* 或者 outline: 0 */ |
||||
} |
||||
button:after { |
||||
border: none; |
||||
} |
||||
button:focus{ |
||||
outline: none; /* 或者 outline: 0 */ |
||||
} |
||||
|
||||
.dlbutton { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
color: #FFFFFF; |
||||
font-size: 30rpx; |
||||
white-space:nowrap; |
||||
overflow: hidden; |
||||
width:601rpx; |
||||
height:100rpx; |
||||
background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.6)); |
||||
box-shadow:0rpx 0rpx 13rpx 0rpx rgba(164,217,228,0.4); |
||||
border-radius:2.5rem; |
||||
margin-top: 0rpx; |
||||
} |
||||
.dlbutton_loading { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
color: #FFFFFF; |
||||
font-size: 30rpx; |
||||
width:100rpx; |
||||
height:100rpx; |
||||
background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.6)); |
||||
box-shadow:0rpx 0rpx 13rpx 0rpx rgba(164,217,228,0.4); |
||||
border-radius:2.5rem; |
||||
margin-top: 0rpx; |
||||
} |
||||
.buttonBorder{ |
||||
border: none ; |
||||
border-radius: 2.5rem ; |
||||
-webkit-box-shadow: 0 0 60rpx 0 rgba(0,0,0,.2) ; |
||||
box-shadow: 0 0 60rpx 0 rgba(0,0,0,.2) ; |
||||
-webkit-transition: all 0.4s cubic-bezier(.57,.19,.51,.95); |
||||
-moz-transition: all 0.4s cubic-bezier(.57,.19,.51,.95); |
||||
-ms-transition: all 0.4s cubic-bezier(.57,.19,.51,.95); |
||||
-o-transition: all 0.4s cubic-bezier(.57,.19,.51,.95); |
||||
transition: all 0.4s cubic-bezier(.57,.19,.51,.95); |
||||
} |
||||
|
||||
/* 旋转动画 */ |
||||
.rotate_loop{ |
||||
-webkit-transition-property: -webkit-transform; |
||||
-webkit-transition-duration: 1s; |
||||
-moz-transition-property: -moz-transform; |
||||
-moz-transition-duration: 1s; |
||||
-webkit-animation: rotate 1s linear infinite; |
||||
-moz-animation: rotate 1s linear infinite; |
||||
-o-animation: rotate 1s linear infinite; |
||||
animation: rotate 1s linear infinite; |
||||
} |
||||
@-webkit-keyframes rotate{from{-webkit-transform: rotate(0deg)} |
||||
to{-webkit-transform: rotate(360deg)} |
||||
} |
||||
@-moz-keyframes rotate{from{-moz-transform: rotate(0deg)} |
||||
to{-moz-transform: rotate(359deg)} |
||||
} |
||||
@-o-keyframes rotate{from{-o-transform: rotate(0deg)} |
||||
to{-o-transform: rotate(359deg)} |
||||
} |
||||
@keyframes rotate{from{transform: rotate(0deg)} |
||||
to{transform: rotate(359deg)} |
||||
} |
||||
</style> |
@ -0,0 +1,218 @@ |
||||
<template> |
||||
<view class="main-list oBorder"> |
||||
<!-- 文本框 --> |
||||
<input |
||||
class="main-input" |
||||
:value="value" |
||||
:type="_type" |
||||
:focus="_focus" |
||||
:maxlength="maxlength" |
||||
:placeholder="placeholder" |
||||
:password="type==='password'&&!showPassword" |
||||
|
||||
@input="$emit('input', $event.detail.value)" |
||||
@blur="$emit('blur', $event)" |
||||
@focus="$emit('focus', $event)" |
||||
@longpress="$emit('longpress', $event)" |
||||
@confirm="$emit('confirm', $event)" |
||||
@click="$emit('click', $event)" |
||||
@longtap="$emit('longtap', $event)" |
||||
@touchcancel="$emit('touchcancel', $event)" |
||||
@touchend="$emit('touchend', $event)" |
||||
@touchmove="$emit('touchmove', $event)" |
||||
@touchstart="$emit('touchstart', $event)" |
||||
/> |
||||
<!-- 是否可见密码 --> |
||||
<image |
||||
v-if="_isShowPass&&type==='password'&&!_isShowCode" |
||||
class="img cuIcon" |
||||
:class="showPassword?'cuIcon-attention':'cuIcon-attentionforbid'" |
||||
@tap="showPass" |
||||
></image> |
||||
<!-- 倒计时 --> |
||||
<view |
||||
v-if="_isShowCode&&!_isShowPass" |
||||
:class="['vercode',{'vercode-run': second>0}]" |
||||
@click="setCode" |
||||
>{{ getVerCodeSecond }}</view> |
||||
|
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
let _this, countDown; |
||||
export default{ |
||||
data(){ |
||||
return{ |
||||
showPassword: false, //是否显示明文 |
||||
second: 0, //倒计时 |
||||
isRunCode: false, //是否开始倒计时 |
||||
} |
||||
}, |
||||
props:{ |
||||
type: String, //类型 |
||||
value: String, //值 |
||||
placeholder: String, //框内提示 |
||||
maxlength: { |
||||
//最大长度 |
||||
type: [Number,String], |
||||
default: 20, |
||||
}, |
||||
isShowPass:{ |
||||
//是否显示密码图标(二选一) |
||||
type: [Boolean,String], |
||||
default: false, |
||||
}, |
||||
isShowCode:{ |
||||
//是否显示获取验证码(二选一) |
||||
type: [Boolean,String], |
||||
default: false, |
||||
}, |
||||
codeText:{ |
||||
type: String, |
||||
default: "获取验证码", |
||||
}, |
||||
setTime:{ |
||||
//倒计时时间设置 |
||||
type: [Number,String], |
||||
default: 60, |
||||
}, |
||||
focus:{ |
||||
//是否聚焦 |
||||
type: [Boolean,String], |
||||
default: false |
||||
} |
||||
}, |
||||
model: { |
||||
prop: 'value', |
||||
event: 'input' |
||||
}, |
||||
mounted() { |
||||
_this=this |
||||
//准备触发 |
||||
this.$on('runCode',(val)=>{ |
||||
this.runCode(val); |
||||
}); |
||||
clearInterval(countDown);//先清理一次循环,避免缓存 |
||||
}, |
||||
methods:{ |
||||
showPass(){ |
||||
//是否显示密码 |
||||
this.showPassword = !this.showPassword |
||||
}, |
||||
setCode(){ |
||||
//设置获取验证码的事件 |
||||
if(this.isRunCode){ |
||||
//判断是否开始倒计时,避免重复点击 |
||||
return false; |
||||
} |
||||
this.$emit('setCode') |
||||
}, |
||||
runCode(val){ |
||||
//开始倒计时 |
||||
if(String(val)=="0"){ |
||||
|
||||
//判断是否需要终止循环 |
||||
this.second = 0; //初始倒计时 |
||||
clearInterval(countDown);//清理循环 |
||||
this.isRunCode= false; //关闭循环状态 |
||||
return false; |
||||
} |
||||
if(this.isRunCode){ |
||||
//判断是否开始倒计时,避免重复点击 |
||||
return false; |
||||
} |
||||
this.isRunCode= true |
||||
this.second = this._setTime //倒数秒数 |
||||
|
||||
let _this=this; |
||||
countDown = setInterval(function(){ |
||||
_this.second-- |
||||
if(_this.second==0){ |
||||
_this.isRunCode= false |
||||
clearInterval(countDown) |
||||
} |
||||
},1000) |
||||
} |
||||
}, |
||||
computed:{ |
||||
_type(){ |
||||
//处理值 |
||||
const type = this.type |
||||
return type == 'password' ? 'text' : type |
||||
}, |
||||
_isShowPass() { |
||||
//处理值 |
||||
return String(this.isShowPass) !== 'false' |
||||
}, |
||||
_isShowCode() { |
||||
//处理值 |
||||
return String(this.isShowCode) !== 'false' |
||||
}, |
||||
_setTime() { |
||||
//处理值 |
||||
const setTime = Number(this.setTime) |
||||
return setTime>0 ? setTime : 60 |
||||
}, |
||||
_focus() { |
||||
//处理值 |
||||
return String(this.focus) !== 'false' |
||||
}, |
||||
getVerCodeSecond(){ |
||||
//验证码倒计时计算 |
||||
if(this.second<=0){ |
||||
return this.codeText; |
||||
}else{ |
||||
if(this.second<10){ |
||||
return '0'+this.second; |
||||
}else{ |
||||
return this.second; |
||||
} |
||||
} |
||||
|
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
@import url("./css/icon.css"); |
||||
|
||||
.main-list{ |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
/* height: 36rpx; */ /* Input 高度 */ |
||||
color: #333333; |
||||
padding: 30rpx 32rpx; |
||||
margin: 26rpx 0; |
||||
} |
||||
.img{ |
||||
width: 32rpx; |
||||
height: 32rpx; |
||||
font-size: 32rpx; |
||||
} |
||||
.main-input{ |
||||
flex: 1; |
||||
text-align: left; |
||||
font-size: 28rpx; |
||||
/* line-height: 100rpx; */ |
||||
padding-right: 10rpx; |
||||
margin-left: 20rpx; |
||||
} |
||||
.vercode { |
||||
color: rgba(0,0,0,0.7); |
||||
font-size: 24rpx; |
||||
/* line-height: 100rpx; */ |
||||
} |
||||
.vercode-run { |
||||
color: rgba(0,0,0,0.4) !important; |
||||
} |
||||
.oBorder{ |
||||
border: none; |
||||
border-radius: 2.5rem ; |
||||
-webkit-box-shadow: 0 0 60rpx 0 rgba(43,86,112,.1) ; |
||||
box-shadow: 0 0 60rpx 0 rgba(43,86,112,.1) ; |
||||
} |
||||
</style> |
@ -0,0 +1,16 @@ |
||||
@font-face {font-family: "iconfont"; |
||||
src: url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAKUAAsAAAAABlAAAAJJAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcApcdgE2AiQDCAsGAAQgBYRtBy8bmwXIrjBu4UkbIjvjLimCmu1EP9KHAd4jgmi/3+zde18toRbpnkUTzRKRUkgQE6RA9xL+tMuG6RYp8bFsgmbcecAB9mDhH67tDS3pQsIsmSbPL7chM1RKsFr5mNDBoUDPJItlaZG8fvhi/tciWcbRfJ7L6U2gA1l9oBz3orEmTRpAvTigAPfCKLISSiNtGLvAJdwn0DCHgMfN/kgLK1jLAvE0p7YWzoUVCparCZWavYV4U6qllxTNa/j5+JeKMEmZWQ1njw1PK39hF+TnFG59QoSADpfI2AEUxFVt+oQpGIc10pYlYF+1wRfTfZfYq12wv86qboEZqLgnpau61VyC21L06V8d9cuJmT795hWPJp8ayHj0wrZNx+/+1Nzdf8MBtu9H2p+tgB5tn/W1PEZvgeD5Xf/if61ZgE9foa3Qz0ttd57gtyh79hS62nKmQlXWDiczp2tqaGAK+we+sZbxPeRDzXiEt2o2RVazQhbsDkpNu6io2UPDNn24aagxRVHHlgkQehaSjg9kPYcs2IvSxENFL0w03ASd2bQW82is0d6iB+YE2ZWCOO5tNKodIN0xe51Vh/wE15t5DGQsUcy1UOB6jg19T1NjSyCsJQcFHkPGJJS1XKC7jaXtVpV4nNS9KGYl16KOrCHbFvIA4wRkLkkg/uitaOn9A4jaYWzrlq6a/ARa25hPDiRG9CBbBtGr616e6faolGGLAMGaxAEFZiGGkUCpn7WAXFsxaURSKeH2oNDXEFvfxL/uGDRY1hT2lKy8Y3KDmgYA') format('woff2') |
||||
} |
||||
|
||||
.iconfont { |
||||
font-family: "iconfont" !important; |
||||
font-size: 30px; |
||||
font-style: normal; |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
} |
||||
|
||||
.icon-close:before { |
||||
content: "\e622"; |
||||
} |
||||
|
@ -0,0 +1,420 @@ |
||||
<template> |
||||
<view v-if="isShow"> |
||||
<view |
||||
@tap.stop.prevent |
||||
@touchmove.stop.prevent |
||||
class="wyb-popup-box" |
||||
:style="{ |
||||
transitionDuration: duration + 'ms', |
||||
opacity: contentOpacity || (type === 'center' ? 0 : 1), |
||||
transform: contentTransform || autoTransform, |
||||
zIndex: zIndex, |
||||
borderTopRightRadius: type === 'center' || type === 'bottom' || type === 'left' ? radius + 'px' : 0, |
||||
borderTopLeftRadius: type === 'center' || type === 'bottom' || type === 'right' ? radius + 'px' : 0, |
||||
borderBottomRightRadius: type === 'center' || type === 'top' || type === 'left' ? radius + 'px' : 0, |
||||
borderBottomLeftRadius: type === 'center' || type === 'top' || type === 'right' ? radius + 'px' : 0, |
||||
width: autoWidth, |
||||
height: autoHeight, |
||||
minWidth: width + 'rpx', |
||||
minHeight: height + 'rpx', |
||||
top: sizeChange && type === 'center' ? winReTop : autoTop, |
||||
bottom: autoBottom, |
||||
left: autoLeft, |
||||
right: autoRight, |
||||
backgroundColor: bgColor}"> |
||||
<view |
||||
class="wyb-popup-close" |
||||
v-if="showCloseIcon" |
||||
:style="{ |
||||
width: closeIcon ? closeIconSize + 'rpx' : 'auto', |
||||
height: closeIcon ? closeIconSize + 'rpx' : 'auto', |
||||
top: closeIconPos === 'top-right' || closeIconPos === 'top-left' ? vertOffset + 'rpx' : 'auto', |
||||
bottom: closeIconPos === 'bottom-right' || closeIconPos === 'bottom-left' ? vertOffset + 'rpx' : 'auto', |
||||
left: closeIconPos === 'bottom-left' || closeIconPos === 'top-left' ? horiOffset + 'rpx' : 'auto', |
||||
right: closeIconPos === 'bottom-right' || closeIconPos === 'top-right' ? horiOffset + 'rpx' : 'auto'}"> |
||||
<image class="wyb-popup-custom-close" v-if="showCloseIcon&&closeIcon" :src="closeIcon" @tap="hide" :style="{ |
||||
width: closeIconSize + 'rpx', |
||||
height: closeIconSize + 'rpx'}" /> |
||||
<view v-if="showCloseIcon&&!closeIcon" class="iconfont icon-close" @tap="hide" /> |
||||
</view> |
||||
|
||||
<scroll-view |
||||
class="wyb-popup-container" |
||||
:style="{ |
||||
width: autoWidth, |
||||
height: autoHeight}" |
||||
:enable-flex="true" |
||||
:scroll-y="scrollY" |
||||
:scroll-x="scrollX"> |
||||
<view class="wyb-popup-slot"><slot></slot></view> |
||||
</scroll-view> |
||||
</view> |
||||
<view |
||||
class="wyb-popup-mask" |
||||
@tap.stop="close" |
||||
@touchmove.stop.prevent |
||||
:style="{ |
||||
opacity: maskOpacity, |
||||
transitionDuration: duration + 'ms', |
||||
backgroundColor: 'rgba(0, 0, 0, ' + maskAlpha + ')', |
||||
zIndex: zIndex - 1}" /> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
data() { |
||||
return { |
||||
w: uni.getSystemInfoSync().screenWidth, |
||||
h: uni.getSystemInfoSync().screenHeight, |
||||
isShow: false, |
||||
winReBottom: '', |
||||
winReTop: '', |
||||
sizeChange: false, |
||||
contentOpacity: null, |
||||
contentTransform: null, |
||||
maskOpacity: 0 |
||||
} |
||||
}, |
||||
computed: { |
||||
autoCenterTop() { |
||||
let statusBarHeight = uni.getSystemInfoSync().statusBarHeight |
||||
let windowHeight = uni.getSystemInfoSync().windowHeight |
||||
let popupHeight = this.rpxToPx(this.height) |
||||
let navHeight = 44 |
||||
let result = `${(windowHeight - popupHeight) / 2 - this.negativeTop}px` |
||||
return result |
||||
}, |
||||
autoTransform() { |
||||
let result = '' |
||||
switch(this.type) { |
||||
case 'center': |
||||
if (this.centerAnim === 'zoom-lessen') { |
||||
result = `scale(${this.zoomLessenMulti})` |
||||
} else if (this.centerAnim === 'slide-up') { |
||||
result = `translateY(${100 * this.slideMulti}%)` |
||||
} else if (this.centerAnim === 'slide-down') { |
||||
result = `translateY(${-100 * this.slideMulti}%)` |
||||
} else if (this.centerAnim === 'fade') { |
||||
result = 'auto' |
||||
} |
||||
break |
||||
case 'bottom': |
||||
result = 'translateY(100%)' |
||||
break |
||||
case 'top': |
||||
result = 'translateY(-100%)' |
||||
break |
||||
case 'left': |
||||
result = 'translateX(-100%)' |
||||
break |
||||
case 'right': |
||||
result = 'translateX(100%)' |
||||
break |
||||
} |
||||
return result |
||||
}, |
||||
autoWidth() { |
||||
if (this.type === 'center') { |
||||
return `${this.width}rpx` |
||||
} else { |
||||
if (this.mode === 'size-fixed') { |
||||
if (this.type === 'top' || this.type === 'bottom') { |
||||
return '100%' |
||||
} else { |
||||
return `${this.width}rpx` |
||||
} |
||||
} else { |
||||
if (this.type === 'top' || this.type === 'bottom') { |
||||
return '100%' |
||||
} else { |
||||
return 'auto' |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
autoHeight() { |
||||
if (this.type === 'center') { |
||||
return `${this.height}rpx` |
||||
} else { |
||||
if (this.mode === 'size-fixed') { |
||||
if (this.type === 'left' || this.type === 'right') { |
||||
return '100%' |
||||
} else { |
||||
return `${this.height}rpx` |
||||
} |
||||
} else { |
||||
if (this.type === 'left' || this.type === 'right') { |
||||
return '100%' |
||||
} else { |
||||
return '400px' |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
autoTop() { |
||||
if (this.type === 'center') { |
||||
return this.autoCenterTop |
||||
} else if (this.type === 'bottom') { |
||||
return 'auto' |
||||
} else { |
||||
return 0 |
||||
} |
||||
}, |
||||
autoBottom() { |
||||
if (this.type === 'center' || this.type === 'top') { |
||||
return 'auto' |
||||
} else { |
||||
return 0 |
||||
} |
||||
}, |
||||
autoLeft() { |
||||
if (this.type === 'center') { |
||||
return `${(this.w - this.rpxToPx(this.width)) / 2}px` |
||||
} else if (this.type === 'right') { |
||||
return 'auto' |
||||
} else { |
||||
return 0 |
||||
} |
||||
}, |
||||
autoRight() { |
||||
if (this.type === 'center' || this.type === 'left') { |
||||
return 'auto' |
||||
} else { |
||||
return 0 |
||||
} |
||||
} |
||||
}, |
||||
props: { |
||||
type: { |
||||
type: String, |
||||
default: 'bottom' |
||||
}, |
||||
mode: { |
||||
type: String, |
||||
default: 'size-auto' |
||||
}, |
||||
height: { |
||||
type: [String, Number], |
||||
default: 400 |
||||
}, |
||||
width: { |
||||
type: [String, Number], |
||||
default: 500 |
||||
}, |
||||
radius: { |
||||
type: [String, Number], |
||||
default: 0 |
||||
}, |
||||
zIndex: { |
||||
type: [String, Number], |
||||
default: 10076 |
||||
}, |
||||
maskClickClose: { |
||||
type: Boolean, |
||||
default: true |
||||
}, |
||||
maskAlpha: { |
||||
type: Number, |
||||
default: 0.5 |
||||
}, |
||||
duration: { |
||||
type: Number, |
||||
default: 400 |
||||
}, |
||||
showCloseIcon: { |
||||
type: Boolean, |
||||
default: false |
||||
}, |
||||
scrollY: { |
||||
type: Boolean, |
||||
default: false |
||||
}, |
||||
scrollX: { |
||||
type: Boolean, |
||||
default: false |
||||
}, |
||||
closeIconPos: { |
||||
type: String, |
||||
default: 'top-right' |
||||
}, |
||||
closeIcon: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
closeIconSize: { |
||||
type: [String, Number], |
||||
default: '20' |
||||
}, |
||||
vertOffset: { |
||||
type: [String, Number], |
||||
default: '22' |
||||
}, |
||||
horiOffset: { |
||||
type: [String, Number], |
||||
default: '22' |
||||
}, |
||||
centerAnim: { |
||||
type: String, |
||||
default: 'zoom-lessen' |
||||
}, |
||||
bgColor: { |
||||
type: String, |
||||
default: '#ffffff' |
||||
}, |
||||
zoomLessenMulti: { |
||||
type: Number, |
||||
default: 1.15 |
||||
}, |
||||
slideMulti: { |
||||
type: Number, |
||||
default: 1 |
||||
}, |
||||
negativeTop: { |
||||
type: Number, |
||||
default: 0 |
||||
} |
||||
}, |
||||
mounted() { |
||||
// #ifdef H5 |
||||
let winHeight = uni.getSystemInfoSync().windowHeight |
||||
uni.onWindowResize(res => { |
||||
this.sizeChange = true |
||||
if (this.type === 'bottom') { |
||||
this.winReBottom = winHeight - res.size.windowHeight + 'px' |
||||
} else if (this.type === 'center') { |
||||
this.winReTop = ((res.size.windowHeight - this.rpxToPx(this.height)) / 2 - this.negativeTop) + 'px' |
||||
} |
||||
}) |
||||
// #endif |
||||
}, |
||||
methods: { |
||||
close() { |
||||
this.maskClickClose && this.hide() |
||||
}, |
||||
show() { |
||||
this.isShow = true |
||||
// #ifndef H5 |
||||
this.$nextTick(() => { |
||||
this.maskIn() |
||||
this.contentIn() |
||||
this.wait(this.duration + 1).then(() => { |
||||
this.$emit('show', { |
||||
pageScroll: false, |
||||
overflow: 'hidden' |
||||
}) |
||||
}) |
||||
}) |
||||
// #endif |
||||
// #ifdef H5 |
||||
this.wait(10).then(() => { |
||||
this.maskIn() |
||||
this.contentIn() |
||||
this.wait(this.duration + 1).then(() => { |
||||
this.$emit('show', { |
||||
pageScroll: false, |
||||
overflow: 'hidden' |
||||
}) |
||||
}) |
||||
}) |
||||
// #endif |
||||
}, |
||||
hide() { |
||||
this.contentOut() |
||||
this.maskOut() |
||||
this.wait(this.duration + 1).then(() => { |
||||
this.isShow = false |
||||
this.$emit('hide', { |
||||
pageScroll: true, |
||||
overflow: 'scroll' |
||||
}) |
||||
}) |
||||
}, |
||||
contentIn() { |
||||
switch (this.type) { |
||||
case 'center': |
||||
if (this.centerAnim === 'zoom-lessen') { |
||||
this.contentOpacity = 1 |
||||
this.contentTransform = 'scale(1)' |
||||
} else if (this.centerAnim === 'slide-up' || this.centerAnim === 'slide-down') { |
||||
this.contentOpacity = 1 |
||||
this.contentTransform = 'translateY(0)' |
||||
} else if (this.centerAnim === 'fade') { |
||||
this.contentOpacity = 1 |
||||
} |
||||
break |
||||
case 'bottom': |
||||
case 'top': |
||||
this.contentTransform = 'translateY(0)' |
||||
break |
||||
case 'left': |
||||
case 'right': |
||||
this.contentTransform = 'translateX(0)' |
||||
break |
||||
} |
||||
}, |
||||
contentOut() { |
||||
this.contentOpacity = null |
||||
this.contentTransform = null |
||||
}, |
||||
maskIn() { |
||||
this.maskOpacity = 1 |
||||
}, |
||||
maskOut() { |
||||
this.maskOpacity = 0 |
||||
}, |
||||
rpxToPx(rpx) { |
||||
return rpx / 750 * this.w |
||||
}, |
||||
wait(time) { |
||||
return new Promise(resolve => { |
||||
setTimeout(() => { |
||||
resolve() |
||||
}, time) |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
@import "./iconfont.css"; |
||||
.wyb-popup-box{ |
||||
position: fixed; |
||||
transition-timing-function: ease-out; |
||||
transition-property: opacity, transform; |
||||
} |
||||
|
||||
.wyb-popup-container { |
||||
position: relative; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.wyb-popup-slot { |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
|
||||
.wyb-popup-mask { |
||||
position: fixed; |
||||
top: 0; |
||||
left: 0; |
||||
bottom: 0; |
||||
right: 0; |
||||
transition-timing-function: ease; |
||||
transition-property: opacity, transform; |
||||
} |
||||
|
||||
.wyb-popup-close { |
||||
position: absolute; |
||||
fontSize: 40rpx; |
||||
color: #808080; |
||||
z-index: 20000; |
||||
} |
||||
|
||||
.wyb-popup-custom-close { |
||||
left: 0; |
||||
top: 0; |
||||
position: absolute; |
||||
} |
||||
</style> |
@ -0,0 +1,109 @@ |
||||
说明:适用于职位选择,带模糊搜索分类功能使用方便,基于uview组件库开发,使用本组件请确保引入uview!!! |
||||
1. 引入文件 |
||||
``` |
||||
import jobSelect from '@/components/yunmiao-jobSelect/yunmiao-jobSelect.vue' |
||||
export default { |
||||
components: { |
||||
jobSelect |
||||
}, |
||||
.............. |
||||
``` |
||||
2.使用组件 |
||||
``` |
||||
<jobSelect ref="jobSelect" :listData="listData" @confirem="confiremJob"></jobSelect> |
||||
``` |
||||
3.调用显示隐藏 |
||||
``` |
||||
this.$refs.jobSelect.show() |
||||
this.$refs.jobSelect.hide() |
||||
``` |
||||
4.参数说明 |
||||
| 参数 | 默认值 | 说明 | 类型 | |
||||
| ---- | ---- | ---- | ---- | |
||||
| listData | [ ] | 选择数据 | Array | |
||||
| labelName | 'name' | label展示字段 | String | |
||||
| valueName | 'id' | value选中字段 | String | |
||||
| selectValue | [] | 默认选中 | Array | |
||||
5.事件说明 |
||||
| 方法 | 说明 | |
||||
| ---- | ---- | |
||||
| @confirem | 返回选中的value | |
||||
6.完整示例 |
||||
``` |
||||
<template> |
||||
<view> |
||||
<view @click="show"> |
||||
<text>展开区域选择</text> |
||||
</view> |
||||
<jobSelect ref="jobSelect" :listData="listData" @confirem="confiremJob"></jobSelect> |
||||
</view> |
||||
</template> |
||||
<script> |
||||
import jobSelect from '@/components/yunmiao-jobSelect/yunmiao-jobSelect.vue' |
||||
export default { |
||||
components:{ |
||||
jobSelect |
||||
}, |
||||
data() { |
||||
return { |
||||
listData: [{ |
||||
"id": 1, |
||||
"name": "餐饮", |
||||
"children": [{ |
||||
"id": 2, |
||||
"name": "服务员", |
||||
},{ |
||||
"id": 3, |
||||
"name": "送餐员", |
||||
},{ |
||||
"id": 4, |
||||
"name": "传菜员", |
||||
}, |
||||
{ |
||||
"id": 5, |
||||
"name": "厨师", |
||||
}] |
||||
},{ |
||||
"id": 6, |
||||
"name": "家政保洁", |
||||
"children": [{ |
||||
"id": 7, |
||||
"name": "保洁", |
||||
},{ |
||||
"id": 8, |
||||
"name": "保姆", |
||||
},{ |
||||
"id": 9, |
||||
"name": "月嫂", |
||||
}] |
||||
},{ |
||||
"id":10 , |
||||
"name": "美容美发", |
||||
"children": [{ |
||||
"id": 11, |
||||
"name": "发型师", |
||||
}] |
||||
}], |
||||
}; |
||||
}, |
||||
methods:{ |
||||
show() { |
||||
this.$refs.jobSelect.show() |
||||
}, |
||||
confiremJob(e){ |
||||
console.log(e) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style lang="scss"> |
||||
</style> |
||||
``` |
||||
|
||||
作者联系方式: |
||||
|
||||
qq:1315723390 |
||||
|
||||
wx:ZHT131572 |
||||
|
||||
开发交流群:[点击加uniapp开发交流群:971617215](https://qm.qq.com/cgi-bin/qm/qr?k=9ILQir4VGU3XIXm7MtxQYrYShO-b4Zqu&jump_from=webapi) |
@ -0,0 +1,297 @@ |
||||
<template> |
||||
<view class="u-wrap"> |
||||
<view class="search-warp" v-if="showAction"> |
||||
<scroll-view scroll-y :style="{'height': scrollHeight+'px'}" class="item-container"> |
||||
<view class="thumb-box" v-for="(item, index) in searchList" :key="index" @click="selval(item)"> |
||||
<view :class="[value==item[valueName]? 'item-active' : '']"> |
||||
<text>{{item.pname}}-{{item[labelName]}}</text> |
||||
</view> |
||||
|
||||
</view> |
||||
</scroll-view> |
||||
</view> |
||||
<view class="u-menu-wrap"> |
||||
<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop"> |
||||
<view v-for="(item,index) in list" :key="index" class="u-tab-item" |
||||
:class="[current==index ? 'u-tab-item-active' : '']" :data-current="index" |
||||
@tap.stop="swichMenu(index)"> |
||||
<text class="u-line-2">{{item[labelName]}}</text> |
||||
</view> |
||||
</scroll-view> |
||||
<block v-for="(item,index) in list" :key="index"> |
||||
<scroll-view scroll-y class="right-box" v-if="current==index"> |
||||
<view class="page-view"> |
||||
<view class="class-item"> |
||||
<view class="item-container"> |
||||
<view class="thumb-box" v-for="(item1, index1) in item.childIndustry" :key="index1" |
||||
@click="selval(item1)"> |
||||
<view :class="[value==item1[valueName] ? 'item-active' : '']"> |
||||
<text>{{item1[labelName]}}</text> |
||||
</view> |
||||
<!-- <u-icon v-if="value==item1[valueName]" name="checkbox-mark" :color="iconColor" |
||||
size="28"> |
||||
</u-icon> --> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</scroll-view> |
||||
</block> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'jobSelect', |
||||
props: { |
||||
//label展示字段 |
||||
labelName: { |
||||
type: String, |
||||
default: 'name' |
||||
}, |
||||
//value选中字段 |
||||
valueName: { |
||||
type: String, |
||||
default: 'id' |
||||
}, |
||||
//初始选中值 |
||||
selectValue: { |
||||
type: Number, |
||||
default: 0 |
||||
}, |
||||
//选择数据 |
||||
listData: { |
||||
type: Array, |
||||
default: () => { |
||||
return []; |
||||
} |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
list: JSON.parse(JSON.stringify(this.listData)), |
||||
scrollTop: 0, //tab标题的滚动条位置 |
||||
current: 0, // 预设当前项的值 |
||||
menuHeight: 0, // 左边菜单的高度 |
||||
menuItemHeight: 0, // 左边菜单item的高度 |
||||
value: this.selectValue, |
||||
keyword: '', |
||||
iconColor: 'primary', |
||||
showAction: false, |
||||
searchList: [], |
||||
scrollHeight: 500 |
||||
} |
||||
}, |
||||
watch: { |
||||
listData: { |
||||
handler(newName, oldName) { |
||||
this.list = JSON.parse(JSON.stringify(newName)) |
||||
}, |
||||
deep: true, |
||||
} |
||||
}, |
||||
created() { |
||||
var that = this; |
||||
uni.getSystemInfo({ |
||||
success: function(res) { |
||||
let windowHeight = res.windowHeight; |
||||
let windowWidth = res.windowWidth; |
||||
//#ifdef H5 |
||||
let headHeight = 110 / 750 * windowWidth; |
||||
//#endif |
||||
//#ifndef H5 |
||||
let headHeight = 200 / 750 * windowWidth; |
||||
//#endif |
||||
let scrollHeight = (windowHeight - headHeight); |
||||
that.scrollHeight = scrollHeight; |
||||
|
||||
} |
||||
}); |
||||
}, |
||||
methods: { |
||||
selval(item) { |
||||
this.value = item[this.valueName]; |
||||
this.keyword = ''; |
||||
this.showAction = false; |
||||
this.$emit('confirem', item); |
||||
}, |
||||
// 点击左边的栏目切换 |
||||
async swichMenu(index) { |
||||
if (index == this.current) return; |
||||
this.current = index; |
||||
// 如果为0,意味着尚未初始化 |
||||
if (this.menuHeight == 0 || this.menuItemHeight == 0) { |
||||
await this.getElRect('menu-scroll-view', 'menuHeight'); |
||||
await this.getElRect('u-tab-item', 'menuItemHeight'); |
||||
} |
||||
// 将菜单菜单活动item垂直居中 |
||||
this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2; |
||||
}, |
||||
// 获取一个目标元素的高度 |
||||
getElRect(elClass, dataVal) { |
||||
new Promise((resolve, reject) => { |
||||
const query = uni.createSelectorQuery().in(this); |
||||
query.select('.' + elClass).fields({ |
||||
size: true |
||||
}, res => { |
||||
// 如果节点尚未生成,res值为null,循环调用执行 |
||||
if (!res) { |
||||
setTimeout(() => { |
||||
this.getElRect(elClass); |
||||
}, 10); |
||||
return; |
||||
} |
||||
this[dataVal] = res.height; |
||||
}).exec(); |
||||
}) |
||||
}, |
||||
focus() { |
||||
this.showAction = true; |
||||
}, |
||||
cancle() { |
||||
this.showAction = false; |
||||
this.keyword = ''; |
||||
}, |
||||
toSearch() { |
||||
let arr = []; |
||||
this.list.map((item, index) => { |
||||
item.children.map((it, ix) => { |
||||
if (it[this.labelName].indexOf(this.keyword) >= 0) { |
||||
it['pname'] = item[this.labelName]; |
||||
arr.push(it); |
||||
} |
||||
}) |
||||
}) |
||||
this.searchList = arr; |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.u-wrap { |
||||
height: 100%; |
||||
width: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
position: relative; |
||||
overflow: hidden; |
||||
.head { |
||||
display: flex; |
||||
flex-direction: row; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
height: 100rpx; |
||||
padding: 0 20rpx; |
||||
background-color: white; |
||||
} |
||||
} |
||||
|
||||
.u-search-box { |
||||
padding: 0rpx 30rpx; |
||||
background-color: white; |
||||
display: flex; |
||||
flex-direction: row; |
||||
align-items: center; |
||||
height: 100rpx; |
||||
width: 100%; |
||||
} |
||||
|
||||
.search-warp { |
||||
display: flex; |
||||
overflow: hidden; |
||||
background-color: #FFFFFF; |
||||
position: absolute; |
||||
z-index: 10; |
||||
top: 200rpx; |
||||
left: 0; |
||||
width: 100%; |
||||
} |
||||
|
||||
.u-menu-wrap { |
||||
flex: 1; |
||||
display: flex; |
||||
overflow: hidden; |
||||
background-color: #F8F8F8; |
||||
} |
||||
|
||||
.u-tab-view { |
||||
width: 300rpx; |
||||
height: 100%; |
||||
} |
||||
|
||||
.u-tab-item { |
||||
height: 100rpx; |
||||
background: #f6f6f6; |
||||
box-sizing: border-box; |
||||
display: flex; |
||||
align-items: center; |
||||
font-size: 26rpx; |
||||
padding: 0 20rpx; |
||||
color: #444; |
||||
font-weight: 400; |
||||
} |
||||
|
||||
.u-tab-item-active { |
||||
position: relative; |
||||
color: #333333; |
||||
font-size: 28rpx; |
||||
font-weight: 600; |
||||
background: #fff; |
||||
} |
||||
|
||||
.u-tab-item-active::before { |
||||
content: ""; |
||||
position: absolute; |
||||
border-left: 4px solid #ed6853; |
||||
height: 32rpx; |
||||
left: 0; |
||||
top: 39rpx; |
||||
} |
||||
|
||||
.u-tab-view { |
||||
height: 100%; |
||||
} |
||||
|
||||
.right-box { |
||||
background-color: white; |
||||
} |
||||
|
||||
.page-view { |
||||
background-color: white; |
||||
} |
||||
|
||||
.class-item { |
||||
background-color: #fff; |
||||
border-radius: 8rpx; |
||||
} |
||||
|
||||
.item-menu-name { |
||||
font-weight: normal; |
||||
font-size: 24rpx; |
||||
color: #007AFF; |
||||
} |
||||
|
||||
.item-container { |
||||
display: flex; |
||||
flex-direction: column; |
||||
flex: 1; |
||||
} |
||||
|
||||
.item-active { |
||||
color: #ed6853; |
||||
} |
||||
|
||||
.thumb-box { |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: space-between; |
||||
height: 100rpx; |
||||
width: 100%; |
||||
padding: 0 20rpx; |
||||
align-items: center; |
||||
font-size: 30rpx; |
||||
color: #999999; |
||||
} |
||||
</style> |
@ -1,21 +1,16 @@ |
||||
import Vue from 'vue' |
||||
import App from './App' |
||||
import * as filters from './Utils/js/date.js' |
||||
|
||||
// #ifndef VUE3
|
||||
import Vue from 'vue' |
||||
Vue.config.productionTip = false |
||||
App.mpType = 'app' |
||||
const app = new Vue({ |
||||
...App |
||||
}) |
||||
app.$mount() |
||||
// #endif
|
||||
Object.keys(filters).forEach(key => { |
||||
Vue.filter(key, filters[key]) |
||||
}) |
||||
|
||||
// #ifdef VUE3
|
||||
import { createSSRApp } from 'vue' |
||||
export function createApp() { |
||||
const app = createSSRApp(App) |
||||
return { |
||||
app |
||||
} |
||||
} |
||||
// #endif
|
||||
Vue.config.productionTip = false |
||||
|
||||
App.mpType = 'app' |
||||
|
||||
const app = new Vue({ |
||||
...App |
||||
}) |
||||
app.$mount() |
||||
|
@ -0,0 +1,5 @@ |
||||
{ |
||||
"name": "high-mini-manage", |
||||
"lockfileVersion": 2, |
||||
"requires": true |
||||
} |
@ -0,0 +1,4 @@ |
||||
{ |
||||
"dependencies": { |
||||
} |
||||
} |
@ -0,0 +1,185 @@ |
||||
<template> |
||||
<view> |
||||
<image class="headimg" src="../../../static/img/odrdes.png"></image> |
||||
<view class="headsearch"> |
||||
<view class="heads"> |
||||
<view class="ordslef">已支付订单</view> |
||||
<view class="ordsrig">{{oilorderdetails.payTime | timeFormat('yyyy-mm-dd hh:mm:ss')}}</view> |
||||
</view> |
||||
<view class="heads"> |
||||
<view class="prices">实际支付: <text style="font-size: 16px;margin-left: 5px;"> ¥{{oilorderdetails.payRealPrice}}</text></view> |
||||
</view> |
||||
<view class="line1con"></view> |
||||
<view style="padding-top: 15px;"> |
||||
<view class="prices">优惠立减: <text style="font-size: 16px;margin-left: 5px;"> ¥{{oilorderdetails.deductionPrice}}</text></view> |
||||
</view> |
||||
</view> |
||||
<view class="width92 height20 titles fcor333 font15 mart15 fontwig6"> |
||||
加油订单 |
||||
</view> |
||||
<view class="width92 line1 mart10"></view> |
||||
<view class="width92 height20 fcor333 font15 mart20"> |
||||
商家/订单信息 |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">交易单号</view> |
||||
<view class="width80p fotrt">{{oilorderdetails.orderNo}}</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">下单时间</view> |
||||
<view class="width80p fotrt">{{oilorderdetails.createTime | timeFormat('yyyy-mm-dd hh:mm:ss')}}</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">油站名称</view> |
||||
<view class="width80p fotrt">{{oilorderdetails.gasName}}</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">地址</view> |
||||
<view class="width80p fotrt">{{oilorderdetails.gasAddress}}</view> |
||||
</view> |
||||
<view class="width92 line1 mart15"></view> |
||||
<view class="width92 height20 fcor333 font15 mart20"> |
||||
商品信息 |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">油号/油枪</view> |
||||
<view class="width80p fotrt">{{oilorderdetails.gasOilNo}}#/{{oilorderdetails.gasGunNo}}号枪</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">油站价</view> |
||||
<view class="width80p fotrt">¥{{oilorderdetails.gasPriceGun}}</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width80p">加油升数<text class="fcor999">实际升数以油站加油机为准</text></view> |
||||
<view class="width20 fotrt">{{oilorderdetails.gasOilLiters}}升</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">加油金额</view> |
||||
<view class="width80p fotrt">¥{{oilorderdetails.totalPrice}}</view> |
||||
</view> |
||||
<view class="width92 line1 mart15"></view> |
||||
<view class="width92 height20 fcor333 font15 mart20"> |
||||
优惠信息 |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">加油折扣</view> |
||||
<view class="width80p fotrt" v-if="oilorderdetails.gasDiscount">{{oilorderdetails.gasDiscount}}</view> |
||||
<view class="width80p fotrt" v-else>0折</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">加油补贴</view> |
||||
<view class="width80p fotrt" v-if="oilorderdetails.gasOilSubsidy">{{oilorderdetails.gasOilSubsidy}}</view> |
||||
<view class="width80p fotrt" v-else>¥0</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">每升优惠</view> |
||||
<view class="width80p fotrt" v-if="oilorderdetails.gasLitersPreferences">{{oilorderdetails.gasLitersPreferences}}</view> |
||||
<view class="width80p fotrt" v-else>¥0</view> |
||||
</view> |
||||
<view class="width92 fcor666 font14 mart20 alijusstart"> |
||||
<view class="width20">优惠价格</view> |
||||
<view class="width80p fotrt" v-if="oilorderdetails.gasPricePreferences">{{oilorderdetails.gasPricePreferences}}</view> |
||||
<view class="width80p fotrt" v-else>¥0</view> |
||||
</view> |
||||
<view class="width92 line1 mart15"></view> |
||||
<view class="width92 fcor666 font18 mart20 alijusstart"> |
||||
<view class="width50">加油实付金额</view> |
||||
<view class="width50 fcor333 fontwig6 fotrt">¥{{oilorderdetails.payRealPrice}}</view> |
||||
</view> |
||||
<view class="width92 line1 mart15"></view> |
||||
<view class="width92 fcor666 font16 mart20 alijusstart"> |
||||
<view class="width50" v-if="oilorderdetails.payType == 1">支付宝支付</view> |
||||
<view class="width50" v-if="oilorderdetails.payType == 2">微信支付</view> |
||||
<view class="width50" v-if="oilorderdetails.payType == 3">金币支付</view> |
||||
<view class="width50" v-if="oilorderdetails.payType == 4">汇联通工会卡支付</view> |
||||
<view class="width50" v-if="oilorderdetails.payType == 5">银联支付</view> |
||||
<view class="width50" v-if="oilorderdetails.payType == 6">银联分期支付</view> |
||||
<view class="width50 fotrt">¥{{oilorderdetails.payRealPrice}}</view> |
||||
</view> |
||||
<view class="height40p"></view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getGasOrderDetail |
||||
} from '../../../Utils/Api.js'; |
||||
export default { |
||||
data() { |
||||
return { |
||||
orderNo: '', //订单号 |
||||
oilorderdetails: '' // 订单详情 |
||||
} |
||||
}, |
||||
onLoad(options) { |
||||
this.orderNo = options.ordesid; |
||||
this.getGasOrderDetail(); |
||||
}, |
||||
methods: { |
||||
getGasOrderDetail() { |
||||
uni.showLoading({ |
||||
title: '加载中' |
||||
}) |
||||
let datas = { |
||||
orderNo: this.orderNo |
||||
} |
||||
getGasOrderDetail(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
this.oilorderdetails = res.return_data; |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.headimg { |
||||
position: absolute; |
||||
width: 100%; |
||||
height: 180px; |
||||
} |
||||
|
||||
.headsearch { |
||||
position: relative; |
||||
height: 180px; |
||||
} |
||||
|
||||
.heads { |
||||
padding-top: 40px; |
||||
} |
||||
|
||||
.ordslef { |
||||
width: 40%; |
||||
margin-left: 5%; |
||||
color: #FFFFFF; |
||||
font-size: 15px; |
||||
float: left; |
||||
} |
||||
|
||||
.ordsrig { |
||||
width: 50%; |
||||
color: #FFFFFF; |
||||
float: right; |
||||
font-size: 15px; |
||||
} |
||||
|
||||
.prices { |
||||
color: #FFFFFF; |
||||
margin-left: 5%; |
||||
font-size: 14px; |
||||
} |
||||
|
||||
.line1con { |
||||
width: 100%; |
||||
height: 1px; |
||||
background-color: #f6f6f6; |
||||
margin-top: 20px; |
||||
} |
||||
|
||||
.titles { |
||||
border-left: 4px solid #3981ed; |
||||
padding-left: 10px; |
||||
} |
||||
</style> |
@ -1,52 +0,0 @@ |
||||
<template> |
||||
<view class="content"> |
||||
<image class="logo" src="/static/logo.png"></image> |
||||
<view class="text-area"> |
||||
<text class="title">{{title}}</text> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
data() { |
||||
return { |
||||
title: 'Hello' |
||||
} |
||||
}, |
||||
onLoad() { |
||||
|
||||
}, |
||||
methods: { |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
.content { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.logo { |
||||
height: 200rpx; |
||||
width: 200rpx; |
||||
margin-top: 200rpx; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
margin-bottom: 50rpx; |
||||
} |
||||
|
||||
.text-area { |
||||
display: flex; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.title { |
||||
font-size: 36rpx; |
||||
color: #8f8f94; |
||||
} |
||||
</style> |
@ -0,0 +1,87 @@ |
||||
.content { |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content:center; |
||||
/* margin-top: 128rpx; */ |
||||
} |
||||
|
||||
/* 头部 logo */ |
||||
.header { |
||||
width:161rpx; |
||||
height:161rpx; |
||||
box-shadow:0rpx 0rpx 60rpx 0rpx rgba(0,0,0,0.1); |
||||
border-radius:50%; |
||||
background-color: #000000; |
||||
margin-top: 128rpx; |
||||
margin-bottom: 72rpx; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
.header image{ |
||||
width:161rpx; |
||||
height:161rpx; |
||||
border-radius:50%; |
||||
} |
||||
|
||||
/* 主体 */ |
||||
.main { |
||||
display: flex; |
||||
flex-direction: column; |
||||
padding-left: 70rpx; |
||||
padding-right: 70rpx; |
||||
} |
||||
.tips { |
||||
color: #999999; |
||||
font-size: 28rpx; |
||||
margin-top: 64rpx; |
||||
margin-left: 48rpx; |
||||
} |
||||
|
||||
/* 登录按钮 */ |
||||
.wbutton{ |
||||
margin-top: 96rpx; |
||||
} |
||||
|
||||
/* 其他登录方式 */ |
||||
.other_login{ |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: center; |
||||
align-items: center; |
||||
margin-top: 256rpx; |
||||
text-align: center; |
||||
} |
||||
.login_icon{ |
||||
border: none; |
||||
font-size: 64rpx; |
||||
margin: 0 64rpx 0 64rpx; |
||||
color: rgba(0,0,0,0.7) |
||||
} |
||||
.wechat_color{ |
||||
color: #83DC42; |
||||
} |
||||
.weibo_color{ |
||||
color: #F9221D; |
||||
} |
||||
.github_color{ |
||||
color: #24292E; |
||||
} |
||||
|
||||
/* 底部 */ |
||||
.footer{ |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: center; |
||||
align-items: center; |
||||
font-size: 28rpx; |
||||
margin-top: 64rpx; |
||||
color: rgba(0,0,0,0.7); |
||||
text-align: center; |
||||
height: 40rpx; |
||||
line-height: 40rpx; |
||||
} |
||||
.footer text{ |
||||
font-size: 24rpx; |
||||
margin-left: 15rpx; |
||||
margin-right: 15rpx; |
||||
} |
@ -0,0 +1,129 @@ |
||||
<template> |
||||
<view> |
||||
<image src="../../../static/img/logo.png" mode="widthFix" class="mart40 alijus imgs"></image> |
||||
<view class="main mart40"> |
||||
<wInput v-model="phoneData" type="text" placeholder="用户名" :focus="isFocus"></wInput> |
||||
<wInput v-model="passData" type="password" placeholder="密码" isShowPass="true"></wInput> |
||||
</view> |
||||
<view class="height40p"></view> |
||||
<wButton class="wbutton mart20" text="登 录" bgColor="#089bf5" :rotate="isRotate" @click="startLogin"></wButton> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import wInput from '../../../components/watch-login/watch-input.vue' //input |
||||
import wButton from '../../../components/watch-login/watch-button.vue' //button |
||||
import { |
||||
userLogin |
||||
} from '../../../Utils/Api.js' |
||||
let app = getApp(); |
||||
export default { |
||||
components: { |
||||
wInput, |
||||
wButton, |
||||
}, |
||||
data() { |
||||
return { |
||||
phoneData: '', //用户/电话 |
||||
passData: '', //密码 |
||||
isRotate: false, //是否加载旋转 |
||||
} |
||||
}, |
||||
mounted() { |
||||
this.isLogin(); |
||||
}, |
||||
methods: { |
||||
//判断缓存中是否登录过,直接登录 |
||||
isLogin() { |
||||
uni.getStorage({ |
||||
key: 'oilaccount', |
||||
success: (res) => { |
||||
this.phoneData = res.data |
||||
} |
||||
}); |
||||
uni.getStorage({ |
||||
key: 'oilpass', |
||||
success: (res) => { |
||||
this.passData = res.data |
||||
} |
||||
}); |
||||
}, |
||||
//登录 |
||||
startLogin(e) { |
||||
uni.showLoading({ |
||||
title: '登录中' |
||||
}); |
||||
if (this.isRotate) { |
||||
//判断是否加载中,避免重复点击请求 |
||||
return false; |
||||
} |
||||
if (this.phoneData.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
position: 'bottom', |
||||
title: '用户名不能为空' |
||||
}); |
||||
return; |
||||
} |
||||
if (this.passData.length < 5) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
position: 'bottom', |
||||
title: '密码不正确' |
||||
}); |
||||
return; |
||||
} |
||||
this.isRotate = true |
||||
let params = { |
||||
loginName: this.phoneData, |
||||
password: this.passData |
||||
} |
||||
userLogin(params).then(res => { |
||||
uni.hideLoading(); |
||||
this.isRotate = false; |
||||
if (res.return_code == '000000' && res.return_data) { |
||||
app.globalData.userInfo = res.return_data |
||||
.object; |
||||
app.globalData.token = res.return_data.uniqueCode; |
||||
uni.setStorage({ |
||||
key: "oiluser", |
||||
data: res.return_data |
||||
.object |
||||
}) |
||||
uni.setStorage({ |
||||
key: "oiltoken", |
||||
data: res.return_data.uniqueCode |
||||
}) |
||||
uni.setStorage({ |
||||
key: "oilaccount", |
||||
data: this.phoneData |
||||
}) |
||||
uni.setStorage({ |
||||
key: "oilpass", |
||||
data: this.passData |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '../../tabBar/home/home' |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none', |
||||
duration: 2000 |
||||
}) |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.imgs { |
||||
width: 30%; |
||||
margin-left: 35%; |
||||
} |
||||
|
||||
@import url("../../../components/watch-login/css/icon.css"); |
||||
@import url("../css/main.css"); |
||||
</style> |
@ -0,0 +1,121 @@ |
||||
<template> |
||||
<view> |
||||
<image src="../../../static/img/logo.png" mode="widthFix" class="mart40 alijus imgs"></image> |
||||
<view class="main mart40"> |
||||
<wInput v-model="usedPass" type="password" placeholder="原始密码" isShowPass="true"></wInput> |
||||
<wInput v-model="newPass" type="password" placeholder="新密码" isShowPass="true"></wInput> |
||||
<wInput v-model="conNewPass" type="password" placeholder="确认新密码" isShowPass="true"></wInput> |
||||
</view> |
||||
<view class="height40p"></view> |
||||
<wButton class="wbutton mart20" text="修 改" bgColor="#089bf5" :rotate="isRotate" @click="sendUserPass"></wButton> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import wInput from '../../../components/watch-login/watch-input.vue' //input |
||||
import wButton from '../../../components/watch-login/watch-button.vue' //button |
||||
import { |
||||
sendUserPass |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
components: { |
||||
wInput, |
||||
wButton, |
||||
}, |
||||
data() { |
||||
return { |
||||
usedPass: '', //旧密码 |
||||
newPass: '', //新密码 |
||||
conNewPass: '', //确认密码 |
||||
isRotate: false, //是否加载旋转 |
||||
} |
||||
}, |
||||
methods: { |
||||
//修改密码 |
||||
sendUserPass() { |
||||
let that = this; |
||||
if (that.usedPass.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入旧密码' |
||||
}); |
||||
return; |
||||
} |
||||
if (that.newPass.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入新密码' |
||||
}); |
||||
return; |
||||
} |
||||
if (that.conNewPass.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入确认密码' |
||||
}); |
||||
return; |
||||
} |
||||
if (that.conNewPass != that.newPass) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '输入的两次密码不正确' |
||||
}); |
||||
return; |
||||
} |
||||
uni.showModal({ |
||||
title: '修改密码', |
||||
content: '是否修改当前密码', |
||||
success: function(res) { |
||||
if (res.confirm) { |
||||
uni.showLoading({ |
||||
title: '操作中' |
||||
}) |
||||
let datas = { |
||||
"userId": app.globalData.userInfo.secUser.id, |
||||
"oldPassword": that.usedPass, |
||||
"newPassword": that.conNewPass, |
||||
} |
||||
sendUserPass(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '修改成功', |
||||
icon: 'none', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateBack({}) |
||||
}, 1500); |
||||
} |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
}) |
||||
|
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.imgs { |
||||
width: 30%; |
||||
margin-left: 35%; |
||||
} |
||||
|
||||
@import url("../../../components/watch-login/css/icon.css"); |
||||
@import url("../css/main.css"); |
||||
</style> |
@ -0,0 +1,244 @@ |
||||
<template> |
||||
<view> |
||||
<image mode="widthFix" class="width100 headimg" src="../../../static/img/head.png"></image> |
||||
<view class="headsearch fotct"> |
||||
<view class="input-box fotlt"> |
||||
<input placeholder="订单搜索" v-model="orderNo" placeholder-style="color:#c0c0c0;" @input="searchOrder()" /> |
||||
<view class="icon search"></view> |
||||
</view> |
||||
</view> |
||||
<view class="width94 alijusstart height50 fotct font14"> |
||||
<view class="width33" :class="[type=='0' ? 'fcor089' : 'fcor333']" @click="updateStu(0)">全部</view> |
||||
<view class="width33" :class="[type=='3' ? 'fcor089' : 'fcor333']" @click="updateStu(3)">已完成</view> |
||||
<view class="width33" :class="[type=='4' ? 'fcor089' : 'fcor333']" @click="updateStu(4)">已退款</view> |
||||
</view> |
||||
<view class="width94 backcorfff headcont mart10" v-for="(item,index) in orderList" :key="index" |
||||
@click="jumpDetails(item.orderNo)"> |
||||
<view class="alijusstart width94 height30 fcor333 paddtop5"> |
||||
<view class="width70 font14 text1">{{item.orderNo}}</view> |
||||
<image class="iconw alicntend" mode="widthFix" src="../../../static/img/jtg.png"></image> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 1">待支付</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 2">已支付</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 3">已完成</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 4">已退款</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 5">已取消</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 6">已退款</text> |
||||
<text class="width20 font14 fotrt" v-if="item.status == 7">拒绝退款</text> |
||||
</view> |
||||
<view class="line1 width94"></view> |
||||
<view class="width94 mart5"> |
||||
<image :src="item.gasLogo" mode="widthFix" class="counimgs flleft"></image> |
||||
<view class="counscou paddtop10"> |
||||
<view class="width94 height25 font14 fcor666"> |
||||
油品: <text class="margle marglerig">{{item.gasOilNo}}</text> 升数: <text |
||||
class="margle">{{item.gasOilLiters}}L</text> |
||||
</view> |
||||
<view class="width94 height25 alijusstart "> |
||||
<view class="width50 font14 fcor666">加油金额: ¥{{item.totalPrice}}</view> |
||||
<view class="width50 font14 fcor333 fotrt">实付: |
||||
<text class="font18" v-if="item.payRealPrice">¥{{item.payRealPrice}}</text> |
||||
<text class="font18" v-else>¥0</text> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<view class="line1 width94 mart5"></view> |
||||
<view class="height30 width94 mart5 font14 fcor666">下单时间: |
||||
{{item.createTime | timeFormat('yyyy-mm-dd hh:mm:ss')}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getGasOrderList |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
components: {}, |
||||
data() { |
||||
return { |
||||
type: 0, // 当前状态 |
||||
orderList: [], |
||||
pageNum: 1, |
||||
pagesize: 10, |
||||
isLoadMore: false, //是否加载中 |
||||
innerAudioContext: '', //音频播放 |
||||
orderNo: '' //搜索内容 |
||||
}; |
||||
}, |
||||
onShow() { |
||||
let that = this; |
||||
that.orderList = []; |
||||
that.pageNum = 1; |
||||
uni.getStorage({ |
||||
key: "oiluser", |
||||
success(e) { |
||||
app.globalData.userInfo = e.data //这就是你想要取的token |
||||
uni.getStorage({ |
||||
key: 'oiltoken', |
||||
success(e) { |
||||
app.globalData.token = e.data; |
||||
that.getGasOrderList(); |
||||
} |
||||
}) |
||||
}, |
||||
fail: res => {} |
||||
}) |
||||
}, |
||||
onLoad() { |
||||
let innerAudioContext = uni.createInnerAudioContext(); //创建音频文件 |
||||
innerAudioContext.autoplay = false; //不自动播放 |
||||
innerAudioContext.src = 'https://hsgcs.dctpay.com/filesystem/wxApplets/player.mp3'; //音频文件链接 |
||||
this.innerAudioContext = innerAudioContext; |
||||
this.socketio(); |
||||
}, |
||||
onReachBottom() { //上拉触底函数 |
||||
if (!this.isLoadMore) { //此处判断,上锁,防止重复请求 |
||||
this.isLoadMore = true |
||||
this.pageNum += 1 |
||||
this.getGasOrderList() |
||||
} |
||||
}, |
||||
methods: { |
||||
socketio() { |
||||
uni.connectSocket({ |
||||
url: 'ws://localhost:9302/brest/WebSocket/111' |
||||
}); |
||||
|
||||
uni.onSocketOpen(function(res) { |
||||
console.log('WebSocket连接已打开!'); |
||||
}); |
||||
uni.onSocketError(function(res) { |
||||
console.log('WebSocket连接打开失败,请检查!'); |
||||
}); |
||||
}, |
||||
//搜索条件 |
||||
searchOrder() { |
||||
this.orderList = []; |
||||
this.pageNum = 1; |
||||
this.getGasOrderList(); |
||||
}, |
||||
//开始音频文件 |
||||
startAudio() { |
||||
this.innerAudioContext.play(() => { |
||||
console.log('开始播放'); |
||||
}); |
||||
this.innerAudioContext.onError((res) => { |
||||
console.log(res.errMsg); |
||||
console.log(res.errCode); |
||||
}); |
||||
}, |
||||
//查询列表 |
||||
getGasOrderList() { |
||||
let status; |
||||
if (this.type == 0) { |
||||
status = '' |
||||
} else { |
||||
status = this.type; |
||||
} |
||||
uni.showLoading({ |
||||
title: '加载中' |
||||
}) |
||||
let datas = { |
||||
orderNo: this.orderNo, |
||||
status: status, |
||||
pageNum: this.pageNum, |
||||
pageSize: this.pagesize, |
||||
} |
||||
getGasOrderList(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000' && res.return_data.list) { |
||||
this.orderList = this.orderList.concat(res.return_data.list); |
||||
if (res.return_data.pages == this.pageNum) { |
||||
this.isLoadMore = true; |
||||
} else { |
||||
this.isLoadMore = false |
||||
} |
||||
} else { |
||||
this.isLoadMore = true |
||||
} |
||||
}); |
||||
}, |
||||
//更新状态 |
||||
updateStu(item) { |
||||
this.type = item; |
||||
this.orderList = []; |
||||
this.pageNum = 1; |
||||
this.getGasOrderList(); |
||||
}, |
||||
//跳转详情 |
||||
jumpDetails(item) { |
||||
uni.navigateTo({ |
||||
url: '../../home/oderDetails/oderDetails?ordesid=' + item |
||||
}) |
||||
// this.startAudio(); |
||||
} |
||||
}, |
||||
|
||||
}; |
||||
</script> |
||||
<style lang="scss"> |
||||
page { |
||||
background-color: #f3f4f8; |
||||
} |
||||
|
||||
.input-box { |
||||
width: 90%; |
||||
margin-left: 5%; |
||||
top: 55px; |
||||
height: 70rpx; |
||||
background-color: #f5f5f5; |
||||
border-radius: 10rpx; |
||||
position: relative; |
||||
display: flex; |
||||
align-items: center; |
||||
|
||||
.icon { |
||||
display: flex; |
||||
align-items: center; |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
width: 60upx; |
||||
height: 60upx; |
||||
font-size: 40upx; |
||||
color: #c0c0c0; |
||||
} |
||||
|
||||
input { |
||||
padding-left: 28upx; |
||||
height: 28upx; |
||||
font-size: 28upx; |
||||
width: 100%; |
||||
} |
||||
} |
||||
|
||||
.headimg { |
||||
position: absolute; |
||||
max-height: 150px; |
||||
} |
||||
|
||||
.headsearch { |
||||
position: relative; |
||||
height: 145px; |
||||
} |
||||
|
||||
.headcont { |
||||
height: 150px; |
||||
border-radius: 8px; |
||||
} |
||||
|
||||
.width33 { |
||||
width: 33.3%; |
||||
} |
||||
|
||||
.counimgs { |
||||
width: 60px; |
||||
} |
||||
|
||||
.counscou { |
||||
margin-left: 70px; |
||||
} |
||||
</style> |
@ -0,0 +1,182 @@ |
||||
<template> |
||||
<view> |
||||
<view class="headcont fotct"> |
||||
<view class="width94 fcorfff font18 alijus paddtop20"> |
||||
<text v-if="userinfo">{{userinfo.merchantStore.storeName}}</text> |
||||
<text v-else>暂无信息</text> |
||||
<!-- <image mode="widthFix" class="margle iconw" src="../../../static/img/jt.png"></image> --> |
||||
</view> |
||||
<view class="font15 height40 fcorfff mart10 width94">今日总收入</view> |
||||
<view class="font28 fcorfff mart5 width94">¥<text class="margle font40">{{oilInfo.today.incomePrice}}</text></view> |
||||
<view class="width94 mart5"> |
||||
<view class="width50 fcorfff font16 flleft"> |
||||
<view class="width100">收款笔数</view> |
||||
<view class="width100 mart15 font22">{{oilInfo.today.incomeCount}}</view> |
||||
</view> |
||||
<view class="width48 fcorfff font16 flright"> |
||||
<view class="width100">退款笔数</view> |
||||
<view class="width100 mart15 font22">{{oilInfo.today.refundCount}}</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<!-- 消息中心 --> |
||||
<view class="width100 backcorfff" @click="jumpmess"> |
||||
<view class="width94 alijusstart height50"> |
||||
<image src="../../../static/img/mer6.png" mode="widthFix" class="iconw25 marglerig"></image> |
||||
<text class="width85 font14">消息中心</text> |
||||
<!-- <view class="width70 fotrt fcor666 font14">异常商户号通知</view> --> |
||||
<image class="iconw alicntend" mode="widthFix" src="../../../static/img/jtg.png"></image> |
||||
</view> |
||||
</view> |
||||
<!-- 菜单功能 --> |
||||
<view class="width100 line10"></view> |
||||
<view class="funcss" v-for="(item,index) in funcList" :key="index" @click="jumpdesfun(item)"> |
||||
<image :src="item.img" mode="widthFix" class="funicon"></image> |
||||
<view class="width100 font14 mart5">{{item.title}}</view> |
||||
</view> |
||||
<view class="width100 height40p"></view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
logout, |
||||
getGasStatistical |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
funcList: [{ |
||||
title: '配置油枪', |
||||
url: '../../user/oil-list/oil-list?id=1', |
||||
img: '../../../static/img/3.png' |
||||
}, |
||||
{ |
||||
title: '配置油品价格', |
||||
url: '../../user/oil-list/oil-list?id=2', |
||||
img: '../../../static/img/2.png' |
||||
}, |
||||
{ |
||||
title: '修改密码', |
||||
url: '../../login/updatePsd/updatePsd', |
||||
img: '../../../static/img/9.png' |
||||
}, |
||||
{ |
||||
title: '退出登录', |
||||
url: '', |
||||
img: '../../../static/img/7.png' |
||||
} |
||||
], |
||||
auditnum: '', //统计数据 |
||||
userinfo: '', //用户信息 |
||||
oilInfo: '' //油站数据 |
||||
|
||||
}; |
||||
}, |
||||
onLoad() { |
||||
this.userinfo = app.globalData.userInfo; |
||||
}, |
||||
onShow() { |
||||
this.getGasStatistical(); |
||||
}, |
||||
methods: { |
||||
//查询个人信息 |
||||
getGasStatistical() { |
||||
getGasStatistical().then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.oilInfo = res.return_data; |
||||
} |
||||
}); |
||||
}, |
||||
//跳转信息 |
||||
jumpmess() { |
||||
uni.showToast({ |
||||
title: '暂无数据', |
||||
duration: 1500, |
||||
icon: 'none' |
||||
}) |
||||
}, |
||||
//跳转 |
||||
jumpdesfun(item) { |
||||
if (item.title == '退出登录') { |
||||
this.logout(); |
||||
} |
||||
uni.navigateTo({ |
||||
url: item.url |
||||
}) |
||||
}, |
||||
//退出登录 |
||||
logout() { |
||||
let that = this; |
||||
uni.showModal({ |
||||
title: '退出登录', |
||||
content: '是否退出当前账号', |
||||
success: function(res) { |
||||
if (res.confirm) { |
||||
uni.showLoading({ |
||||
title: '操作中' |
||||
}) |
||||
logout().then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
app.globalData.userInfo = ''; |
||||
app.globalData.token = ''; |
||||
uni.setStorage({ |
||||
key: "oiluser", |
||||
data: '' |
||||
}) |
||||
uni.setStorage({ |
||||
key: "oiltoken", |
||||
data: '' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '../../login/login/login' |
||||
}) |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
}) |
||||
|
||||
} |
||||
} |
||||
|
||||
}; |
||||
</script> |
||||
<style lang="scss"> |
||||
page { |
||||
background-color: #F8F8F8; |
||||
} |
||||
|
||||
|
||||
.headcont { |
||||
height: 220px; |
||||
background-color: #0083f5; |
||||
} |
||||
|
||||
.width48 { |
||||
width: 50%; |
||||
height: 65px; |
||||
} |
||||
|
||||
.mart145 { |
||||
margin-top: 145px; |
||||
} |
||||
|
||||
// 菜单 |
||||
.funcss { |
||||
width: 33%; |
||||
height: 100px; |
||||
border-right: 1px solid #e8e8e8; |
||||
border-bottom: 1px solid #e8e8e8; |
||||
background-color: #FFFFFF; |
||||
text-align: center; |
||||
display: inline-block; |
||||
|
||||
.funicon { |
||||
width: 25px; |
||||
padding-top: 15px; |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,187 @@ |
||||
<template> |
||||
<view> |
||||
<view class="username paddtop10"> |
||||
<view class="namecont">油品选择</view> |
||||
<picker mode="selector" style="width: 90%;" :range="oilList" range-key="codeName" @change="changeUserCard"> |
||||
<view class="date text1" style="padding: 0 25rpx;">{{typeName}}</view> |
||||
</picker> |
||||
<image class="flright" style="width: 15px;height: 15px;" src="../../../static/img/downj.png"></image> |
||||
</view> |
||||
|
||||
<!-- <view class="username"> |
||||
<view class="namecont">国标价</view> |
||||
<input placeholder="请输入国标价" v-model="nationalPrice" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> --> |
||||
<view class="username"> |
||||
<view class="namecont">油站价</view> |
||||
<input placeholder="请输入油站价" v-model="serviceStationPrice" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> |
||||
<view class="username"> |
||||
<view class="namecont">优惠幅度</view> |
||||
<input placeholder="请输入优惠幅度" v-model="concessionalRate" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> |
||||
<view class="btn mart50" @click="editGasOilPrice()">提 交</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getDictionaryByCodeType, |
||||
editGasOilPrice, |
||||
getOilPriceDetail |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
oilList: [], //数据字典 |
||||
serviceStationPrice: '', // 油站价格 |
||||
concessionalRate: '', //优惠价 |
||||
typeName: '', // 名称 |
||||
typeId: '' //区分类型 |
||||
|
||||
} |
||||
}, |
||||
onLoad() { |
||||
this.getDictionaryByCodeType(); |
||||
}, |
||||
methods: { |
||||
//查询数据字典油品 |
||||
getDictionaryByCodeType() { |
||||
let datas = { |
||||
codeType: 'GAS_OIL_TYPE' |
||||
} |
||||
getDictionaryByCodeType(datas).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.oilList = res.return_data; |
||||
this.typeId = res.return_data[0].codeValue; |
||||
this.typeName = res.return_data[0].codeName; |
||||
} |
||||
}) |
||||
}, |
||||
//选择油品 |
||||
changeUserCard(e) { |
||||
this.typeId = this.oilList[e.target.value].codeValue; |
||||
this.typeName = this.oilList[e.target.value].codeName; |
||||
}, |
||||
//新增油品 |
||||
editGasOilPrice() { |
||||
if (this.serviceStationPrice.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入油站价格' |
||||
}); |
||||
return; |
||||
} |
||||
if (this.concessionalRate.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入优惠幅度' |
||||
}); |
||||
return; |
||||
} |
||||
uni.showLoading({ |
||||
title: '提交中' |
||||
}) |
||||
let datas = { |
||||
"storeId": app.globalData.userInfo.merchantStore.id, |
||||
"oilNo": this.typeId, |
||||
"priceGun": this.serviceStationPrice, |
||||
"preferentialMargin": this.concessionalRate |
||||
} |
||||
editGasOilPrice(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '添加成功', |
||||
icon: 'none', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateBack({}) |
||||
}, 1500); |
||||
} |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.username { |
||||
width: calc(100% - 90upx); |
||||
height: 100upx; |
||||
display: flex; |
||||
align-items: center; |
||||
background-color: rgba($color: #ffffff, $alpha: 0.1); |
||||
border-bottom: 1px solid #f6f6f6; |
||||
padding: 8upx 45upx; |
||||
|
||||
input { |
||||
width: 50%; |
||||
height: 50upx; |
||||
font-size: 16px; |
||||
color: #333333; |
||||
font-weight: blod; |
||||
} |
||||
|
||||
.get-code { |
||||
position: absolute; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
right: 7px; |
||||
z-index: 3; |
||||
border: 1px solid #bfbfbf; |
||||
width: 25%; |
||||
padding: 3px 5px; |
||||
border-radius: 22px; |
||||
|
||||
&:after { |
||||
content: " "; |
||||
width: 1upx; |
||||
height: 50upx; |
||||
position: absolute; |
||||
z-index: 3; |
||||
margin-right: 100%; |
||||
left: 0; |
||||
top: 20upx; |
||||
} |
||||
} |
||||
|
||||
.namecont { |
||||
color: #666666; |
||||
width: 28%; |
||||
} |
||||
} |
||||
|
||||
.btn { |
||||
bottom: 0px; |
||||
position: absolute; |
||||
color: #FFFFFF; |
||||
background-color: #0083f5; |
||||
width: 90%; |
||||
margin-left: 5%; |
||||
margin-top: 80rpx; |
||||
margin-bottom: 50rpx; |
||||
height: 90rpx; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
border-radius: 45rpx; |
||||
font-size: 40rpx; |
||||
} |
||||
</style> |
@ -0,0 +1,176 @@ |
||||
<template> |
||||
<view> |
||||
<view class="width90 mart15 font15 fcor666">选择油品</view> |
||||
<view class="activeRefuel" v-for="(item,index) in oilpriceList" :key="index" |
||||
@click="jumpupdatePrice(item)"> |
||||
{{item.oilNoName}} |
||||
<image src="../../../static/img/6.png" mode="widthFix" class="imgcha iconw" |
||||
@click.stop="delOilPrice(item.oilNo)"></image> |
||||
</view> |
||||
<view class="btn mart50" @click="jumpaddoil()">新 增 油 品</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getOilPriceListByStore, |
||||
delOilPrice |
||||
} from '../../../Utils/Api.js' |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
oilpriceList: [], |
||||
typeid: '', //跳转类型 |
||||
userinfo: '' //用户信息 |
||||
} |
||||
}, |
||||
onLoad(Option) { |
||||
this.typeid = Option.id; |
||||
}, |
||||
onShow() { |
||||
this.userinfo = app.globalData.userInfo; |
||||
if (app.globalData.userInfo) { |
||||
this.getOilPriceListByStore(); |
||||
} else { |
||||
uni.showToast({ |
||||
title: '登录信息过期,请重新授权', |
||||
icon: 'none', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../../login/login/login' |
||||
}) |
||||
}, 1500); |
||||
} |
||||
}) |
||||
} |
||||
}, |
||||
methods: { |
||||
//查询油品 |
||||
getOilPriceListByStore() { |
||||
uni.showLoading({ |
||||
title: '加载中' |
||||
}) |
||||
let datas = { |
||||
storeId: this.userinfo.merchantStore.id |
||||
} |
||||
getOilPriceListByStore(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
this.oilpriceList = res.return_data; |
||||
} else { |
||||
this.oilpriceList = []; |
||||
} |
||||
}); |
||||
}, |
||||
//跳转添加油品 |
||||
jumpaddoil() { |
||||
uni.navigateTo({ |
||||
url: '../addOils/addOils' |
||||
}) |
||||
}, |
||||
//跳转 |
||||
jumpupdatePrice(item) { |
||||
if (this.typeid == 1) { |
||||
uni.navigateTo({ |
||||
url: '../updateOilgun/updateOilgun?oilno=' + item.id |
||||
}) |
||||
} |
||||
if (this.typeid == 2) { |
||||
uni.navigateTo({ |
||||
url: '../updateOilprice/updateOilprice?oilno=' + item.oilNo |
||||
}) |
||||
} |
||||
}, |
||||
//删除油品 |
||||
delOilPrice(item) { |
||||
let that = this; |
||||
uni.showModal({ |
||||
title: '删除油品', |
||||
content: '是否删除当前油品', |
||||
success: function(res) { |
||||
if (res.confirm) { |
||||
uni.showLoading({ |
||||
title: '操作中' |
||||
}) |
||||
let datas = { |
||||
"storeId": that.userinfo.merchantStore.id, |
||||
"oilNo": item |
||||
} |
||||
delOilPrice(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '删除成功', |
||||
icon: 'none', |
||||
duration: 1000, |
||||
success() { |
||||
setTimeout(() => { |
||||
that.getOilPriceListByStore(); |
||||
}, 1000); |
||||
} |
||||
}) |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.refuel { |
||||
padding: 6px 10px; |
||||
border-radius: 5px; |
||||
background-color: #f6f6f6; |
||||
color: #666666; |
||||
margin-right: 10px; |
||||
margin-left: 15px; |
||||
margin-top: 20px; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
width: 20%; |
||||
text-align: center; |
||||
} |
||||
|
||||
.activeRefuel { |
||||
padding: 6px 10px; |
||||
border-radius: 5px; |
||||
border: 1px solid #089bf5; |
||||
color: #089bf5; |
||||
margin-right: 10px; |
||||
margin-left: 15px; |
||||
margin-top: 20px; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
width: 20%; |
||||
text-align: center; |
||||
} |
||||
|
||||
.btn { |
||||
bottom: 0px; |
||||
position: absolute; |
||||
color: #FFFFFF; |
||||
background-color: #0083f5; |
||||
width: 90%; |
||||
margin-left: 5%; |
||||
margin-top: 80rpx; |
||||
margin-bottom: 50rpx; |
||||
height: 90rpx; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
border-radius: 45rpx; |
||||
font-size: 40rpx; |
||||
} |
||||
|
||||
.imgcha { |
||||
position: absolute; |
||||
margin-top: -15px; |
||||
margin-left: 30px; |
||||
} |
||||
</style> |
@ -0,0 +1,173 @@ |
||||
<template> |
||||
<view> |
||||
<view class="activeRefuel" v-for="(item,index) in oilgunList" :key="index"> |
||||
{{item.gunNo}}号枪 |
||||
<image src="../../../static/img/6.png" mode="widthFix" class="imgcha iconw" @click.stop="delGunNo(item.id)"> |
||||
</image> |
||||
</view> |
||||
<view class="btn mart50" @click="addgasoilPrice()">新 增 油 枪</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getGunNoListByOilPrice, |
||||
addGasOilPrice, |
||||
delGunNo |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
oilgunList: [], //油枪列表 |
||||
oilNo: '' //油品 |
||||
} |
||||
}, |
||||
onLoad(options) { |
||||
this.oilNo = options.oilno; |
||||
this.getGunNoListByOilPrice(); |
||||
}, |
||||
methods: { |
||||
//添加油枪 |
||||
addgasoilPrice() { |
||||
let that = this; |
||||
uni.showModal({ |
||||
title: '添加油枪', |
||||
placeholderText: '请输入油枪号', |
||||
editable: true, |
||||
success: function(res) { |
||||
if (res.confirm) { |
||||
uni.showLoading({ |
||||
title: '提交中' |
||||
}) |
||||
let datas = { |
||||
"oilPriceId": that.oilNo, |
||||
"gunNo": res.content |
||||
} |
||||
addGasOilPrice(datas).then(res => { |
||||
if (res.return_code == '000000') { |
||||
that.getGunNoListByOilPrice(); |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
} else if (res.cancel) { |
||||
|
||||
} |
||||
} |
||||
}); |
||||
}, |
||||
//查询油枪 |
||||
getGunNoListByOilPrice() { |
||||
uni.showLoading({ |
||||
title: '加载中' |
||||
}) |
||||
let datas = { |
||||
oilPriceId: this.oilNo |
||||
} |
||||
getGunNoListByOilPrice(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
this.oilgunList = res.return_data; |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
}, |
||||
//删除油枪 |
||||
delGunNo(item) { |
||||
let that = this; |
||||
uni.showModal({ |
||||
title: '删除油枪', |
||||
content: '是否删除当前油枪', |
||||
success: function(res) { |
||||
if (res.confirm) { |
||||
uni.showLoading({ |
||||
title: '操作中' |
||||
}) |
||||
let datas = { |
||||
"gunNoId": item |
||||
} |
||||
delGunNo(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '删除成功', |
||||
icon: 'none', |
||||
duration: 1000, |
||||
success() { |
||||
setTimeout(() => { |
||||
that.getGunNoListByOilPrice(); |
||||
}, 1000); |
||||
} |
||||
}) |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.refuel { |
||||
padding: 6px 10px; |
||||
border-radius: 5px; |
||||
background-color: #f6f6f6; |
||||
color: #666666; |
||||
margin-right: 10px; |
||||
margin-left: 15px; |
||||
margin-top: 20px; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
width: 20%; |
||||
text-align: center; |
||||
} |
||||
|
||||
.activeRefuel { |
||||
padding: 6px 10px; |
||||
border-radius: 5px; |
||||
border: 1px solid #089bf5; |
||||
color: #089bf5; |
||||
margin-right: 10px; |
||||
margin-left: 15px; |
||||
margin-top: 20px; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
width: 20%; |
||||
text-align: center; |
||||
} |
||||
|
||||
.btn { |
||||
bottom: 0px; |
||||
position: absolute; |
||||
color: #FFFFFF; |
||||
background-color: #0083f5; |
||||
width: 90%; |
||||
margin-left: 5%; |
||||
margin-top: 80rpx; |
||||
margin-bottom: 50rpx; |
||||
height: 90rpx; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
border-radius: 45rpx; |
||||
font-size: 40rpx; |
||||
} |
||||
|
||||
.imgcha { |
||||
position: absolute; |
||||
margin-top: -15px; |
||||
margin-left: 10px; |
||||
} |
||||
</style> |
@ -0,0 +1,177 @@ |
||||
<template> |
||||
<view> |
||||
<view class="username"> |
||||
<view class="namecont">国标价</view> |
||||
<input placeholder="请输入国标价" v-model="nationalPrice" disabled="true" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> |
||||
<view class="username"> |
||||
<view class="namecont">油站价</view> |
||||
<input placeholder="请输入油站价" v-model="stationPrice" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> |
||||
<view class="username"> |
||||
<view class="namecont">优惠幅度</view> |
||||
<input placeholder="请输入优惠幅度" v-model="discountPrice" type="text" |
||||
placeholder-style="color: #bfbfbf;font-size:14px;padding-top:2px;" /> |
||||
</view> |
||||
<view class="btn mart50" @click="editGasOilPrice()">修 改</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getOilPriceDetail, |
||||
editGasOilPrice |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
nationalPrice: '', //国标价 |
||||
stationPrice: '', //油站价 |
||||
discountPrice: '', //优惠价 |
||||
oilNo: '', //油品 |
||||
oilDetails: '', //油品详情 |
||||
userinfo: '' //个人信息 |
||||
} |
||||
}, |
||||
onLoad(options) { |
||||
this.oilNo = options.oilno; |
||||
this.userinfo = app.globalData.userInfo; |
||||
this.getOilPriceDetail(); |
||||
}, |
||||
methods: { |
||||
//查询详情 |
||||
getOilPriceDetail() { |
||||
let datas = { |
||||
storeId: this.userinfo.merchantStore.id, |
||||
oilNo: this.oilNo |
||||
} |
||||
getOilPriceDetail(datas).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.oilDetails = res.return_data; |
||||
this.nationalPrice = res.return_data.priceOfficial; |
||||
this.stationPrice = res.return_data.priceGun; |
||||
this.discountPrice = res.return_data.preferentialMargin; |
||||
} |
||||
}); |
||||
}, |
||||
//修改价格 |
||||
editGasOilPrice() { |
||||
if (this.stationPrice.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入油站价格' |
||||
}); |
||||
return; |
||||
} |
||||
if (this.discountPrice.length == "") { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
duration: 2000, |
||||
title: '请输入优惠幅度' |
||||
}); |
||||
return; |
||||
} |
||||
uni.showLoading({ |
||||
title: '提交中' |
||||
}) |
||||
let datas = { |
||||
"storeId": app.globalData.userInfo.merchantStore.id, |
||||
"oilNo": this.oilNo, |
||||
"priceGun": this.stationPrice, |
||||
"preferentialMargin": this.discountPrice |
||||
} |
||||
editGasOilPrice(datas).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '添加成功', |
||||
icon: 'none', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateBack({}) |
||||
}, 1500); |
||||
} |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.username { |
||||
width: calc(100% - 90upx); |
||||
height: 100upx; |
||||
display: flex; |
||||
align-items: center; |
||||
background-color: rgba($color: #ffffff, $alpha: 0.1); |
||||
border-bottom: 1px solid #f6f6f6; |
||||
padding: 8upx 45upx; |
||||
|
||||
input { |
||||
width: 50%; |
||||
height: 50upx; |
||||
font-size: 16px; |
||||
color: #333333; |
||||
font-weight: blod; |
||||
} |
||||
|
||||
.get-code { |
||||
position: absolute; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
right: 7px; |
||||
z-index: 3; |
||||
border: 1px solid #bfbfbf; |
||||
width: 25%; |
||||
padding: 3px 5px; |
||||
border-radius: 22px; |
||||
|
||||
&:after { |
||||
content: " "; |
||||
width: 1upx; |
||||
height: 50upx; |
||||
position: absolute; |
||||
z-index: 3; |
||||
margin-right: 100%; |
||||
left: 0; |
||||
top: 20upx; |
||||
} |
||||
} |
||||
|
||||
.namecont { |
||||
color: #666666; |
||||
width: 28%; |
||||
} |
||||
} |
||||
|
||||
.btn { |
||||
bottom: 0px; |
||||
position: absolute; |
||||
color: #FFFFFF; |
||||
background-color: #0083f5; |
||||
width: 90%; |
||||
margin-left: 5%; |
||||
margin-top: 80rpx; |
||||
margin-bottom: 50rpx; |
||||
height: 90rpx; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
border-radius: 45rpx; |
||||
font-size: 40rpx; |
||||
} |
||||
</style> |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 927 B |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 3.9 KiB |