123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <template>
- <view>
- <button
- :id="id"
- :data-detail="dataset"
- :class="
- 'custom-class ' +
- utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) +
- ' ' +
- (hairline ? 'van-hairline--surround' : '')
- "
- hover-class="van-button--active hover-class"
- :lang="lang"
- :form-type="formType"
- :style="baseStyle + ' ' + customStyle"
- :open-type="disabled ? '' : openType"
- :business-id="businessId"
- :session-from="sessionFrom"
- :send-message-title="sendMessageTitle"
- :send-message-path="sendMessagePath"
- :send-message-img="sendMessageImg"
- :show-message-card="showMessageCard"
- :app-parameter="appParameter"
- :aria-label="ariaLabel"
- @tap="parseEventDynamicCode($event, !disabled ? 'onClick' : 'noop')"
- @getuserinfo="bindGetUserInfo"
- @contact="bindContact"
- @getphonenumber="bindGetPhoneNumber"
- @error="bindError"
- @launchapp="bindLaunchApp"
- @opensetting="bindOpenSetting"
- >
- <block v-if="loading">
- <van-loading custom-class="loading-class" :size="loadingSize" :type="loadingType" :color="loadingColor(type, color, plain)" />
- <view v-if="loadingText" class="van-button__loading-text">
- {{ loadingText }}
- </view>
- </block>
- <block v-else>
- <van-icon v-if="icon" size="1.2em" :name="icon" :class-prefix="classPrefix" class="van-button__icon" custom-style="line-height: inherit;" />
- <view class="van-button__text">
- <slot />
- </view>
- </block>
- </button>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script module="loadingColor" lang="wxs">
- function get(type, color,plain) {
- if(plain) {
- return color ? color: '#c9c9c9';
- }
- if(type === 'default') {
- return '#c9c9c9';
- }
- return 'white';
- }
- module.exports = get;
- </script>
- <script>
- import { VantComponent } from '../common/component';
- import { button } from '../mixins/button';
- import { openType } from '../mixins/open-type';
- import { canIUseFormFieldButton } from '../common/version';
- const mixins = [button, openType];
- if (canIUseFormFieldButton()) {
- mixins.push('wx://form-field-button');
- }
- export default {
- data() {
- return {
- baseStyle: '',
- id: '',
- lang: '',
- openType: '',
- businessId: '',
- sessionFrom: '',
- sendMessageTitle: '',
- sendMessagePath: '',
- sendMessageImg: '',
- showMessageCard: '',
- appParameter: '',
- ariaLabel: ''
- };
- },
- mixins,
- classes: ['hover-class', 'loading-class'],
- props: {
- formType: String,
- icon: String,
- classPrefix: {
- type: String,
- default: 'van-icon'
- },
- plain: Boolean,
- block: Boolean,
- round: Boolean,
- square: Boolean,
- loading: Boolean,
- hairline: Boolean,
- disabled: Boolean,
- loadingText: String,
- customStyle: String,
- loadingType: {
- type: String,
- default: 'circular'
- },
- type: {
- type: String,
- default: 'default'
- },
- dataset: null,
- size: {
- type: String,
- default: 'normal'
- },
- loadingSize: {
- type: String,
- default: '20px'
- },
- color: {
- type: String
- }
- },
- methods: {
- onClick() {
- if (!this.loading) {
- this.$emit('click');
- }
- },
- noop() {},
- bindGetUserInfo() {
- console.log('占位:函数 bindGetUserInfo 未声明');
- },
- bindContact() {
- console.log('占位:函数 bindContact 未声明');
- },
- bindGetPhoneNumber() {
- console.log('占位:函数 bindGetPhoneNumber 未声明');
- },
- bindError() {
- console.log('占位:函数 bindError 未声明');
- },
- bindLaunchApp() {
- console.log('占位:函数 bindLaunchApp 未声明');
- },
- bindOpenSetting() {
- console.log('占位:函数 bindOpenSetting 未声明');
- }
- },
- watch: {
- color: {
- handler: function (color) {
- let style = '';
- if (color) {
- style += `color: ${this.plain ? color : 'white'};`;
- if (!this.plain) {
- // Use background instead of backgroundColor to make linear-gradient work
- style += `background: ${color};`;
- }
- // hide border when color is linear-gradient
- if (color.indexOf('gradient') !== -1) {
- style += 'border: 0;';
- } else {
- style += `border-color: ${color};`;
- }
- }
- if (style !== this.baseStyle) {
- this.setData({
- baseStyle: style
- });
- }
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|