初始提交
This commit is contained in:
156
components/Jnpf/Signature/index.vue
Normal file
156
components/Jnpf/Signature/index.vue
Normal file
@@ -0,0 +1,156 @@
|
||||
<template>
|
||||
<view class="jnpf-signature" :class="align=='right'?'flex-end':'flex-start'">
|
||||
<view class="jnpf-signature-box">
|
||||
<template v-if="showBtn">
|
||||
<image class="jnpf-signature-img" :src="jnpf.getAuthImgUrl(innerValue)" mode="scaleToFill"
|
||||
v-show="innerValue" @tap.stop="handlePreviewImage(innerValue)" />
|
||||
<view class="jnpf-signature-btn" :class="{'jnpf-signature-disabled':disabled}" v-if="!detailed"
|
||||
@click="open()">
|
||||
<i class="icon-ym icon-ym-signature1" />
|
||||
<view class="title" v-if="!innerValue">电子签章</view>
|
||||
</view>
|
||||
</template>
|
||||
</view>
|
||||
<MultSelect :show="show" :list="options" @confirm="confirm" @close="show = false" :default-value="defaultValue"
|
||||
filterable />
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import {
|
||||
getListByIds
|
||||
} from '@/api/signature.js'
|
||||
import MultSelect from '@/components/MultSelect'
|
||||
import jnpf from '@/utils/jnpf'
|
||||
export default {
|
||||
name: 'jnpf-sign',
|
||||
components: {
|
||||
MultSelect
|
||||
},
|
||||
props: {
|
||||
modelValue: {
|
||||
type: [String, Number, Boolean],
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
detailed: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
showBtn: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
align: {
|
||||
type: String,
|
||||
default: 'right'
|
||||
},
|
||||
ableIds: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
innerValue: '',
|
||||
show: false,
|
||||
options: [],
|
||||
defaultValue: []
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
modelValue: {
|
||||
handler(val) {
|
||||
this.innerValue = val || ''
|
||||
},
|
||||
immediate: true,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getListByIds() {
|
||||
getListByIds({
|
||||
'ids': this.ableIds
|
||||
}).then(res => {
|
||||
this.options = res.data.list || []
|
||||
const index = this.options.findIndex(o => this.innerValue === o.icon)
|
||||
if (index > -1) this.defaultValue = [this.options[index].id]
|
||||
this.show = true
|
||||
})
|
||||
},
|
||||
open() {
|
||||
if (this.disabled) return
|
||||
if (!this.ableIds.length) return this.show = true
|
||||
if (this.ableIds.length) this.getListByIds()
|
||||
},
|
||||
confirm(val) {
|
||||
if (!val.length) return
|
||||
this.innerValue = val[0].icon || ''
|
||||
this.$emit('update:modelValue', this.innerValue)
|
||||
this.$emit('change', val[0])
|
||||
},
|
||||
handlePreviewImage(url) {
|
||||
// #ifdef H5
|
||||
uni.previewImage({
|
||||
urls: [jnpf.getAuthImgUrl(url)],
|
||||
current: url,
|
||||
success: () => {},
|
||||
fail: () => {
|
||||
uni.showToast({
|
||||
title: '预览图片失败',
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
});
|
||||
// #endif
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.jnpf-signature {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
||||
align-items: center;
|
||||
|
||||
&.flex-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
&.flex-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.jnpf-signature-box {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.jnpf-signature-img {
|
||||
width: 160rpx;
|
||||
height: 80rpx;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.jnpf-signature-btn {
|
||||
color: #2188ff;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
|
||||
&.jnpf-signature-disabled {
|
||||
color: #9B9B9B !important;
|
||||
}
|
||||
|
||||
.icon-ym-signature1 {
|
||||
font-size: 52rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user