74 changed files with 4248 additions and 2059 deletions
@ -0,0 +1,64 @@
|
||||
<template> |
||||
<u-navbar title="系统设置" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff' placeholder |
||||
:autoBack="true" leftIconSize='35'></u-navbar> |
||||
<view class="uni-list"> |
||||
<!-- <view class="uni-list-cell" style="display: flex;"> |
||||
<view class="uni-list-cell-left"> |
||||
扫描版本选择 |
||||
</view> |
||||
<view class="uni-list-cell-db"> |
||||
<picker @change="bindPickerChange" :value="pda.pdaChooseIndex" |
||||
:range="pda.padVersionList.map(val => val.title)"> |
||||
<view class="uni-input">{{pda.padVersionList.map(val => val.title)[pda.pdaChooseIndex]}}</view> |
||||
</picker> |
||||
</view> |
||||
</view> --> |
||||
</view> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
onShow, |
||||
onLoad, |
||||
onHide, |
||||
onPullDownRefresh |
||||
} from '@dcloudio/uni-app' |
||||
import { reactive, ref, toRefs } from 'vue'; |
||||
import usePdaStore from '../../../store/uaePdaStore'; |
||||
const { HANDLE_PDABROADCAS } = usePdaStore() |
||||
|
||||
onPullDownRefresh(() => { |
||||
const timer = setTimeout(() => { |
||||
// 关闭下拉刷新 |
||||
uni.stopPullDownRefresh() |
||||
clearTimeout(timer) |
||||
}, 1000) |
||||
}) |
||||
|
||||
const details = reactive({ |
||||
pda: { |
||||
// pda版本列表 |
||||
padVersionList: [ |
||||
{ title: '新版本', value: 'newPdaVersion' }, |
||||
{ title: '老版本', value: 'oldPdaVersion' }, |
||||
], |
||||
// 选中的索引 |
||||
pdaChooseIndex: 0 |
||||
} |
||||
|
||||
}) |
||||
|
||||
const array = reactive(['中国', '美国', '巴西', '日本']) |
||||
const index = ref(0) |
||||
function bindPickerChange(e) { |
||||
console.log('picker发送选择改变,携带值为', e.detail.value) |
||||
pda.value.pdaChooseIndex = e.detail.value |
||||
HANDLE_PDABROADCAS(details.pda.padVersionList[details.pda.pdaChooseIndex].value) |
||||
} |
||||
|
||||
const { pda } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
|
||||
</style> |
@ -0,0 +1,52 @@
|
||||
import { |
||||
defineStore |
||||
} from 'pinia'; |
||||
import { |
||||
reactive, |
||||
ref, |
||||
shallowRef |
||||
} from 'vue'; |
||||
|
||||
export const usePdaStore = defineStore('usePdaStore', () => { |
||||
// pda广播标签和广播动作数组
|
||||
const pdaBroadcastList = reactive({ |
||||
'newPdaVersion': { |
||||
title: '新版本', |
||||
// 广播动作
|
||||
broadcastAction: 'com.android.server.scannerservice.broadcast', |
||||
// 广播标签
|
||||
broadcastTag: 'scannerdata' |
||||
}, |
||||
'oldPdaVersion': { |
||||
title: '老版本', |
||||
// 广播动作
|
||||
broadcastAction: 'android.intent.ACTION_DECODE_DATA', |
||||
// 广播标签
|
||||
broadcastTag: 'barcode_string' |
||||
} |
||||
}) |
||||
|
||||
const pdaBroadcas = reactive({ |
||||
broadcastAction: 'com.android.server.scannerservice.broadcast', |
||||
// 广播标签
|
||||
broadcastTag: 'scannerdata' |
||||
}) |
||||
|
||||
/** |
||||
* 选择Pda的广播标签和广播动作 |
||||
*/ |
||||
const HANDLE_PDABROADCAS = (choosePda) => { |
||||
pdaBroadcas.broadcastAction = pdaBroadcastList[choosePda].broadcastAction |
||||
pdaBroadcas.broadcastTag = pdaBroadcastList[choosePda].broadcastTag |
||||
console.log('pdaBroadcas :>> ', pdaBroadcas); |
||||
} |
||||
|
||||
return { |
||||
pdaBroadcastList, |
||||
pdaBroadcas, |
||||
HANDLE_PDABROADCAS |
||||
} |
||||
}) |
||||
|
||||
// 暴露仓库实例
|
||||
export default usePdaStore |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvm{width:100%;height:74vh;margin-top:.625rem}.scvm .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvm .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvm .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:2rem;height:2rem}.scvm .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon2>uni-image{width:2rem;height:2rem;margin-right:.625rem}.scvm .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topbox{width:100%;padding:.625rem 1rem;box-sizing:border-box;background-color:#fff}.topbox>.scanbox{display:flex;align-items:center;width:21.4375rem;height:2.5rem;background:#F5F5F6;border-radius:.25rem;box-sizing:border-box;padding:.625rem .9375rem;font-size:.875rem;color:#020b18}.topbox>.scanbox>uni-image{width:1rem;height:1rem;margin-right:.375rem}.topbox>.scanbox>uni-input{font-size:.875rem}.topbox .viewboxs{display:flex;align-items:center;justify-content:space-between;margin-top:.625rem}.topbox .viewboxs>uni-view{font-size:.9375rem;font-weight:400;color:#020b18}.topbox .viewboxs .siz{font-size:.875rem} |
||||
.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvm{width:100%;height:74vh;margin-top:.625rem}.scvm .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvm .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvm .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:1rem;height:1rem}.scvm .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon2>uni-image{width:1rem;height:1rem;margin-right:.625rem}.scvm .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topbox{width:100%;padding:.625rem 1rem;box-sizing:border-box;background-color:#fff}.topbox>.scanbox{display:flex;align-items:center;width:21.4375rem;height:2.5rem;background:#F5F5F6;border-radius:.25rem;box-sizing:border-box;padding:.625rem .9375rem;font-size:.875rem;color:#020b18}.topbox>.scanbox>uni-image{width:1rem;height:1rem;margin-right:.375rem}.topbox>.scanbox>uni-input{font-size:.875rem}.topbox .viewboxs{display:flex;align-items:center;justify-content:space-between;margin-top:.625rem}.topbox .viewboxs>uni-view{font-size:.9375rem;font-weight:400;color:#020b18}.topbox .viewboxs .siz{font-size:.875rem} |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,61 @@
|
||||
'use strict'; |
||||
let watermark = {}; |
||||
watermark.set = (path) => { |
||||
let id = '1.23452384164.123412415'; |
||||
// #ifdef H5
|
||||
if (document.getElementById(id) !== null) { |
||||
document.body.removeChild(document.getElementById(id)); |
||||
} |
||||
let div = document.createElement('div'); |
||||
div.id = id; |
||||
div.style.pointerEvents = 'none'; |
||||
div.style.top = '44px'; |
||||
div.style.left = '0px'; |
||||
div.style.bottom = '50px'; |
||||
div.style.right = '0px'; |
||||
div.style.position = 'fixed'; |
||||
div.style.zIndex = '100000'; |
||||
div.style.zoom = '0.6'; //设置缩放
|
||||
div.style.opacity = '0.5'; //设置透明度
|
||||
div.style.background = 'url(' + path + ') left top repeat'; |
||||
div.innerText = '测试' |
||||
document.body.appendChild(div); |
||||
return id; |
||||
// #endif
|
||||
// #ifdef APP-PLUS
|
||||
if (plus.nativeObj.View.getViewById(id) !== null) { |
||||
plus.nativeObj.View.getViewById(id).close(); |
||||
} |
||||
uni.getSystemInfo({ |
||||
success: function(res) { |
||||
//水印排列行数
|
||||
let row = Math.floor(res.windowHeight / uni.upx2px(250)); |
||||
let tarArr = []; |
||||
for (let i = 0; i < row; i++) { |
||||
for (let j = 0; j < 3; j++) { |
||||
tarArr.push({ |
||||
tag: 'img', |
||||
src: path, |
||||
position: { |
||||
top: (uni.upx2px(255) * i) + 'px', |
||||
left: (uni.upx2px(255) * j) + 'px', |
||||
width: uni.upx2px(255) + 'px', |
||||
height: uni.upx2px(255) + 'px' |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
var watermarkView = new plus.nativeObj.View(id, { |
||||
top: '70px', |
||||
left: '0px', |
||||
right: '0px', |
||||
bottom: '50px' |
||||
}, tarArr); |
||||
//拦截View控件的触屏事件,将事件穿透给下一层view
|
||||
watermarkView.interceptTouchEvent(false); |
||||
watermarkView.show(); |
||||
} |
||||
}); |
||||
// #endif
|
||||
} |
||||
export default watermark; |
Loading…
Reference in new issue