hlsPopup.vue 23.9 KB
Newer Older
Nature's avatar
Nature committed
1
<template>
Nature's avatar
Nature committed
2
  <h-view class="public-style hls-popup" style="height: 100%" title="封装测试">
Nature's avatar
Nature committed
3 4 5 6 7 8 9 10 11
    <h-header class="bar-custom">
      <div slot="left" class="h-header-btn" @click="$routeGo()">
        <i class="ion-ios-arrow-back"/>
      </div>
      <div slot="center">封装测试</div>
      <div slot="right" class="h-header-btn">
        操作
      </div>
    </h-header>
Nature's avatar
Nature committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25
   <!-- <s-tab :overflowX="true" :showDivider="true" class="has-header" :defaultActive="6">
      <tab-item>工商资料</tab-item>
      <tab-item>股东成员</tab-item>
      <tab-item>对外投资</tab-item>
      <tab-item>工商变更</tab-item>
      <tab-item>企业年报</tab-item>
      <tab-item>关联情报</tab-item>
      <tab-item>开庭公告</tab-item>
      <tab-item>裁判文书</tab-item>
      <tab-item>执行记录</tab-item>
      <tab-item>失信记录</tab-item>
      <tab-item>涉诉公告</tab-item>
      <tab-item>司法协助</tab-item>
    </s-tab>-->
Nature's avatar
Nature committed
26
    <h-content class="has-footer">
Nature's avatar
Nature committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
      <h-button class="button-class" type="primary" @click.native="showLoading">showLoading</h-button>
      <h-button class="button-class" type="primary" @click.native="hideLoading">hideLoading</h-button>
      <h-button class="button-class" type="primary" @click.native="showLongTop">showLongTop</h-button>
      <h-button class="button-class" type="primary" @click.native="showLongCenter">showLongCenter</h-button>
      <h-button class="button-class" type="primary" @click.native="showLongBottom">showLongBottom</h-button>
      <h-button class="button-class" type="primary" @click.native="showSuccess">showSuccess</h-button>
      <h-button class="button-class" type="primary" @click.native="showError">showError</h-button>
      <h-button class="button-class" type="primary" @click.native="showConfirm">showConfirm</h-button>
      <h-button class="button-class" type="primary" @click.native="showPopup">showPopup</h-button>
      <h-button class="button-class" type="primary" @click.native="showActionSheet">showActionSheet</h-button>
      <h-button class="button-class" type="primary" @click.native="showActionSheetButton">showActionSheet 区分按钮颜色
      </h-button>
      <h-button class="button-class" type="primary" @click.native="showTime('YYYY')">showTime YYYY</h-button>
      <h-button class="button-class" type="primary" @click.native="showTime('YYYY-MM')">showTime YYYY-MM</h-button>
      <h-button class="button-class" type="primary" @click.native="showTime('YYYY-MM-DD')">showTime YYYY-MM-DD
      </h-button>
      <h-button class="button-class" type="primary" @click.native="showTime('YYYY-MM-DD HH')">showTime YYYY-MM-DD HH
      </h-button>
      <h-button class="button-class" type="primary" @click.native="showTime('YYYY-MM-DD HH:mm')">showTime YYYY-MM-DD
      HH:mm
      </h-button>
      <h-button class="button-class" type="primary" @click.native="showBigPicture">showBigPicture</h-button>
      <h-button class="button-class" type="primary" @click.native="selectListOne">selectList 普通下拉框</h-button>
      <h-button class="button-class" type="primary" @click.native="selectListTwo">selectList 二级联动</h-button>
      <h-button class="button-class" type="primary" @click.native="selectList">selectList 三级联动</h-button>

      <h2 class="item-title">按钮类型</h2>
      <h-button class="button-class" type="rimless">rimless 按钮</h-button>
      <h-button class="button-class" type="default">default 按钮</h-button>
      <h-button class="button-class" type="primary">primary 按钮</h-button>
      <h-button class="button-class" type="safety">safety 按钮</h-button>
      <h-button class="button-class" type="warning">warning 按钮</h-button>
      <h-button class="button-class" type="danger">danger 按钮</h-button>

      <h2 class="item-title">按钮尺寸</h2>
      <h-button class="button-class" size="mini">mini 按钮</h-button>
      <h-button class="button-class" size="small">small 按钮</h-button>
      <h-button class="button-class" size="normal">normal 按钮</h-button>
      <h-button class="button-class" size="large">large 按钮</h-button>
      <h-button class="button-class" size="huge">huge 按钮</h-button>

      <h2 class="item-title">自定义圆角 (直接通过class设置)</h2>
      <h-button class="button-class radius-small">rimless 按钮</h-button>
      <h-button class="button-class radius-normal">default 按钮</h-button>
      <h-button class="button-class radius-large">primary 按钮</h-button>

      <h2 class="item-title">默认点击效果</h2>
      <h-button class="button-class radius-small" type="rimless">基础按钮(无边框)</h-button>
      <h-button class="button-class radius-small" type="rimless" shadow>基础按钮(无边框、有阴影效果)</h-button>
      <h-button class="button-class radius-small purple">基础按钮(有背景色)</h-button>

      <h2 class="item-title">禁用效果</h2>
      <h-button class="button-class radius-small" disabled>基础按钮(禁用)</h-button>

      <h2 class="item-title">Swip基础使用</h2>
Nature's avatar
Nature committed
82
      <swipe :interval="5000" @start="start" @move="move" @change="change" :defaultWidth="200">
Nature's avatar
Nature committed
83 84 85 86 87 88 89 90 91 92 93 94
        <swipe-item>
          <div :style="{'background': bgColor[0]}" class="item-bg">0</div>
        </swipe-item>
        <swipe-item>
          <div :style="{'background': bgColor[1]}" class="item-bg">1</div>
        </swipe-item>
        <swipe-item>
          <div :style="{'background': bgColor[2]}" class="item-bg">2</div>
        </swipe-item>
      </swipe>

      <h2 class="item-title">纵向滚动</h2>
Nature's avatar
Nature committed
95
      <swipe :vertical="true"  style="height: 200px">
Nature's avatar
Nature committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
        <swipe-item v-for="key in count" :key="key" :style="{'background': bgColor[key-1]}">
          <div class="item-bg">{{ key-1 }}</div>
        </swipe-item>
      </swipe>

      <h2 class="item-title">定制indicators</h2>
      <swipe :index.sync="index">
        <swipe-item v-for="key in count" :key="key" :style="{'background': bgColor[key-1]}">
          <div class="item-bg">{{ key-1 }}</div>
        </swipe-item>
        <div v-for="key in count" slot="indicators" :key="key" :class="['indicators', {'active': key-1 === index}]"/>
      </swipe>

      <h2 class="item-title">Spin-CSS</h2>
      <div class="spin-container">
        <spin size="20px" color="#ccc"/>
        <spin size="30px" color="#999"/>
        <spin size="40px" color="#666"/>
        <spin size="50px" color="#333"/>
      </div>

      <h2 class="item-title">SVG</h2>
      <div class="spin-container">
        &lt;!&ndash; 颜色要通过修改svg来实现,无法通过属性修改 &ndash;&gt;
        <spin :svg-src="svgSrc" size="40px"/>
        <spin :svg-src="svgSrc" size="50px"/>
        <spin :svg-src="svgSrc" size="60px"/>
        <spin :svg-src="svgSrc" size="70px"/>
      </div>

      <h2 class="item-title">top-tip</h2>
      <div class="local-region">
        <top-tip v-model="show" entry-direction="down" content="顶部消息提示内容"/>
        参考文案
      </div>

      <h-button class="button-class" type="rimless" shadow @click.native="showTopTip">TopTip</h-button>

      <h2 class="item-title">notify</h2>
      <div class="local-region">
        <notify v-model="show1" content="提示内容" type="success"/>
        <notify v-model="show2" :time="3000" position="bottom" content="提示内容"/>
      </div>

      <h2 class="item-title">notify标签用法 (通常在局部显示时使用)</h2>
      <h-button class="button-class" type="rimless" shadow @click.native="showNotifyAtTop">Notify (top)</h-button>
      <h-button class="button-class" type="rimless" shadow @click.native="showNotifyAtBottom">Notify (bottom)</h-button>

      <h2 class="item-title">notify 插件用法</h2>
      <h-button class="button-class purple" type="rimless" shadow @click.native="handleNotify">NotifyPlugin</h-button>

      <h2 class="item-title">数字键盘</h2>
      <div class="list">
        <div class="item">
          <div class="contents">
            <div class="add-name">
              <div>数字键盘</div>
            </div>
            <div class="add-content readonly" @click="keyboradShow">
              <input v-model="value" type="number" placeholder="输入" readonly>
            </div>
          </div>
        </div>
      </div>

      <list-item :item-height="45">
        <item>
          <div slot="name">数字键盘</div>
          <input
            slot="content" v-model="value" type="number" placeholder="输入"
            readonly @click="keyboradShow">
        </item>
      </list-item>

      <div class="list">
        <item-option
          v-for="(color,index) in colors" :key="index"
          class="mySlider">
          <div>{{ color.name }}</div>
          <div>{{ color.hex }}</div>
          <div slot="buttons">
            <option-button type="default" text="默认" @click.native="deleteFun"/>
            <option-button type="primary" text="编辑" @click.native="deleteFun"/>
            <option-button type="warn" text="删除" @click.native="deleteFun"/>
          </div>
        </item-option>
      </div>

      <h2>picker</h2>

      <picker
        ref="picker1" :data="year7" :columns="3" v-model="year7Value"
        style="width: 100%"
        @on-change="change"/>

      <list-item :item-height="45">
        <item>
          <img slot="left-icon" src="../assets/image/warning@2x.png" class="left-icon">
          <div slot="name" class="required">检查更新</div>
          <div slot="content">检查更新</div>
          <img slot="right-icon" src="../assets/image/arrow-down@2x.png" style="width: 8px" class="right-icon">
        </item>
        <item>
          <img slot="left" src="../assets/image/warning@2x.png" class="left-icon">
          <div slot="name" class="required">字数测试</div>
          <div slot="content">我是一段很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长的文字</div>
        </item>
        <item :showArrow="true">
          <img slot="left" src="../assets/image/warning@2x.png" class="left-icon">
          <div slot="name">客户名称</div>
          <input slot="content" v-model="bp_name" type="text" placeholder="请输入">
        </item>
        <item :show-arrow="true">
          <img slot="left-icon" src="../assets/image/warning@2x.png" class="left-icon">
          <div slot="name">保存照片</div>
          <label slot="right" class="toggle toggle-positive toggle-check" @click="savePhotoFun">
            <input :checked="savePhoto" type="checkbox" >
            <div class="track">
              <div class="handle"/>
            </div>
          </label>
          <check-box slot="content" v-model="savePhoto" @checkClick="savePhotoFun"/>
        </item>
      </list-item>

      <h2 class="item-title">s-tab</h2>
      <div class="local-region">
Nature's avatar
Nature committed
223
        <s-tab :show-divider="true" @tabClick="stabClick" :overflowX="true">
Nature's avatar
Nature committed
224 225 226 227
          <tab-item>测试</tab-item>
          <tab-item>你好</tab-item>
          <tab-item>再见</tab-item>
          <tab-item>按钮</tab-item>
Nature's avatar
Nature committed
228 229 230
          <tab-item>按钮2</tab-item>
          <tab-item>按钮3</tab-item>
          <tab-item>按钮4</tab-item>
Nature's avatar
Nature committed
231 232
        </s-tab>

Nature's avatar
Nature committed
233
        <s-tab :default-active="2" :show-divider="true" position="bottom" cusClass="class" @tabClick="stabClick" :overflowX="true">
Nature's avatar
Nature committed
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
          <tab-item><img src="../assets/image/warning@2x.png" style="width: 18px"></tab-item>
          <tab-item><img src="../assets/image/warning@2x.png" style="width: 18px"></tab-item>
          <tab-item><img src="../assets/image/warning@2x.png" style="width: 18px"></tab-item>
          <tab-item><img src="../assets/image/warning@2x.png" style="width: 18px"></tab-item>
        </s-tab>
      </div>
      <h2 class="item-title">Modal</h2>
      <h-button class="button-class" type="primary" @click.native="showModal">Modal</h-button>

    </h-content>

    <bottom-tab :show-divider="true">
      <tab-button cusClass="button-exit" @click.native="showConfirm"><img
        src="../assets/image/warning@2x.png">退出
      </tab-button>
      <tab-button :disable="true" @click.native="showSuccess">登陆</tab-button>
    </bottom-tab>
    <!--    <number-keyboard
              :show="true"
              title="数字键盘"
              extra-key="."
              @input="onInput"
              @delete="onDelete"/>-->

    <h-modal ref="modal" v-model="showModalValue" position="bottom" cus-class="sign-modal">
      <h-view>
        <h-header style="height: 43px !important;padding-top:0px">
          <div slot="left" class="h-header-btn">确定</div>
          <div slot="right" class="h-header-btn">清除</div>
        </h-header>
        <h-content style="top:44px !important;">
          <div id="draw" class="draw"/>
        </h-content>
      </h-view>
    </h-modal>

  </h-view>
</template>

<script>
import svg from '@/assets/image/loading/rolling.svg'

export default {
  data () {
    return {
      index: 0,
      count: 3,
      value: '',
      show: false,
      items: [],
      infiniteCount: 0,
      deleteText: '删除',
      editText: '编辑',
      colors: [{name: 'Yellow', hex: '#f4d03f'}, {name: 'Green', hex: '#229954'}, {name: 'Purple', hex: '#9b59b6'}],
      svgSrc: svg,
      show1: false,
      show2: false,
      bp_name: '',
      savePhoto: new Boolean(window.localStorage.savePhoto) || false,
      year7Value: [],
      year7: [{
        name: '中国',
        value: 'china',
        parent: '0', // 为一级时可以不写 parent,但是此时允许为数字 0、空字符串或者字符串 '0'
      }, {
        name: '美国',
        value: 'USA',
        parent: '0',
      }, {
        name: '广东',
        value: 'china001',
        parent: 'china',
      }, {
        name: '广西',
        value: 'china002',
        parent: 'china',
      }, {
        name: '美国001',
        value: 'usa001',
        parent: 'USA',
      }, {
        name: '美国002',
        value: 'usa002',
        parent: 'USA',
      }, {
        name: '广州',
        value: 'gz',
        parent: 'china001',
      }, {
        name: '深圳',
        value: 'sz',
        parent: 'china001',
      }, {
        name: '广西001',
        value: 'gx001',
        parent: 'china002',
      }, {
        name: '广西002',
        value: 'gx002',
        parent: 'china002',
      }, {
        name: '美国001_001',
        value: '0003',
        parent: 'usa001',
      }, {
        name: '美国001_002',
        value: '0004',
        parent: 'usa001',
      }, {
        name: '美国002_001',
        value: '0005',
        parent: 'usa002',
      }, {
        name: '美国002_002',
        value: '0006',
        parent: 'usa002',
      }],
      modal: '',
      showModalValue: false,
    }
  },
  watch: {
    bp_name (value) {
      console.log('bp_name:' + value)
    },
  },
  activated () {
    for (let i = 1; i <= 20; i++) {
      this.items.push(i + ' - keep walking, be 2 with you.')
    }
    this.top = 1
    // this.bottom = 20;
  },
  created: function () {
    this.bgColor = ['#5D98F6', '#1aad19', '#eebe41']
  },
  mounted () {
    /* HlsModal.fromComponent(popup, {
        cusClass:"login-modal",
        onHide: () => {
          console.log('modal hide')
        },
        onShow: () => {
          console.log('modal show')
        }
      }).then((modal) => {
        this.modal = modal;
      }) */
  },
  methods: {
    stab () {
      console.log('tab-click')
    },
    stabClick (index) {
      console.log('tabClickIndex:' + index)
    },
    // 标签用法
    showNotifyAtTop () {
      if (this.show1) return
      this.show1 = true
    },
    showNotifyAtBottom () {
      if (this.show2) return
      this.show2 = true
    },
    handleNotify () {
Nature's avatar
Nature committed
400
      this.hlsPopup.showNotify({
Nature's avatar
Nature committed
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
        content: '提示内容',
        position: 'top',
        time: 2000,
        type: 'warning',
      })
    },
    showTopTip () {
      if (this.show) return
      this.show = true
    },
    start (i) {
      console.log(`start: ${i}`)
    },
    move (i) {
      console.log(`move: ${i}`)
    },
    change (i) {
      // console.log(`change: ${i}`)
    },
    showLoading () {
Nature's avatar
Nature committed
421
      this.hlsPopup.showLoading('请稍等!')
Nature's avatar
Nature committed
422 423
    },
    hideLoading () {
Nature's avatar
Nature committed
424
      this.hlsPopup.hideLoading()
Nature's avatar
Nature committed
425 426
    },
    showLongTop () {
Nature's avatar
Nature committed
427
      this.hlsPopup.showLongTop('操作成功操作成功操作成功操作成功操作成功操作成功操作成功操作成功操作成功')
Nature's avatar
Nature committed
428 429
    },
    showLongCenter () {
Nature's avatar
Nature committed
430
      this.hlsPopup.showLongCenter('操作成功操作成功操作成功')
Nature's avatar
Nature committed
431 432
    },
    showLongBottom () {
Nature's avatar
Nature committed
433
      this.hlsPopup.showLongBottom('操作成功操作成功操作成功操作成功')
Nature's avatar
Nature committed
434 435
    },
    showSuccess () {
Nature's avatar
Nature committed
436
      this.hlsPopup.showSuccess('操作成功')
Nature's avatar
Nature committed
437 438
    },
    showError () {
Nature's avatar
Nature committed
439
      this.hlsPopup.showError('操作失败')
Nature's avatar
Nature committed
440 441
    },
    showConfirm () {
Nature's avatar
Nature committed
442
      this.hlsPopup.showConfirm({
Nature's avatar
Nature committed
443 444 445 446 447 448 449 450
        title: '确定退出',
        content: '退出后需从新登录',
        onConfirm: function (index) {
          alert(index)
        },
      })
    },
    showPopup () {
Nature's avatar
Nature committed
451
      this.hlsPopup.showPopup({
Nature's avatar
Nature committed
452 453 454 455 456 457 458 459
        title: '确定退出',
        content: '退出后需从新登录',
        onConfirm: function () {
          alert('to do something')
        },
      })
    },
    showActionSheet () {
Nature's avatar
Nature committed
460
      this.hlsPopup.showActionSheet({
Nature's avatar
Nature committed
461 462 463 464 465 466 467 468
        titleText: '请选择照片',
        buttonArray: ['拍照', '从相册取'],
        callback: (index) => {
          alert(index)
        },
      })
    },
    showActionSheetButton () {
Nature's avatar
Nature committed
469
      this.hlsPopup.showActionSheet({
Nature's avatar
Nature committed
470 471 472 473 474 475 476 477
        titleText: '照片',
        buttonArray: [{text: '拍照', type: 'warn'}, {text: '从相册取', type: 'primary'}],
        callback: (index) => {
          alert(index)
        },
      })
    },
    showTime (format) {
Nature's avatar
Nature committed
478
      this.hlsPopup.showTime({
Nature's avatar
Nature committed
479 480 481 482 483 484 485 486
        nowDate: '2017-08-12',
        format: format,
        callback: (date) => {
          alert(date)
        },
      })
    },
    showBigPicture () {
Nature's avatar
Nature committed
487
      this.hlsPopup.showBigPicture({
Nature's avatar
Nature committed
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
        imgUrl: 'http://hlsapp.hand-china.com/hls_file/2018/05/F1B6D85E409A4714A8540504B2D133AD',
      })
    },

    selectListOne () {
      var bpClassList = [
        {
          'code': 'NP',
          'code_name': '个人',
        }, {
          'code': 'NP1',
          'code_name': '个人1',
        }, {
          'code': 'NP2',
          'code_name': '个人2',
        },
      ]
Nature's avatar
Nature committed
505
      this.hlsPopup.selectList({
Nature's avatar
Nature committed
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
        list: bpClassList,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj, child) {
          console.log('index:' + index + ',object:' + vum.toJson(obj) + ',:child' + vum.toJson(child))
        },
      })
    },
    selectListTwo () {
      var bpClassList = [
        {
          'code': 'NP',
          'code_name': '个人',
        }, {
          'code': 'NP1',
          'code_name': '个人1',
        }, {
          'code': 'NP2',
          'code_name': '个人2',
        }, {
          'code': 'NP3',
          'code_name': '个人3',
          'parent': 'NP',
        }, {
          'code': 'NP4',
          'code_name': '个人4',
          'parent': 'NP1',
        }, {
          'code': 'NP5',
          'code_name': '个人5',
          'parent': 'NP2',
        },
      ]
Nature's avatar
Nature committed
539
      this.hlsPopup.selectList({
Nature's avatar
Nature committed
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
        list: bpClassList,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj, child) {
          console.log('index:' + index + ',object:' + vum.toJson(obj) + ',:child' + vum.toJson(child))
        },
      })
    },
    selectList () {
      var bpClassList = [
        {
          'code': 'NP',
          'code_name': '个人',
        }, {
          'code': 'NP1',
          'code_name': '个人1',
        }, {
          'code': 'NP2',
          'code_name': '个人2',
        }, {
          'code': 'NP3',
          'code_name': '个人3',
          'parent': 'NP',
        }, {
          'code': 'NP4',
          'code_name': '个人4',
          'parent': 'NP',
        }, {
          'code': 'NP5',
          'code_name': '个人5',
          'parent': 'NP2',
        }, {
          'code': 'NP6',
          'code_name': '个人6',
          'parent': 'NP3',
        }, {
          'code': 'NP7',
          'code_name': '个人7',
          'parent': 'NP4',
        },
        {
          'code': 'NP8',
          'code_name': '个人8',
          'parent': 'NP1',
        },
      ]
Nature's avatar
Nature committed
586
      this.hlsPopup.selectList({
Nature's avatar
Nature committed
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
        list: bpClassList,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj, child) {
          console.log('index:' + index + ',object:' + vum.toJson(obj) + ',:child' + vum.toJson(child))
        },
      })
    },

    onRefresh (done) {
      setTimeout(() => {
        let start = this.top - 1
        for (let i = start; i > start - 10; i--) {
          this.items.splice(0, 0, i + ' - keep walking, be 2 with you.')
        }
        this.top = this.top - 10

        done()
      }, 1500)
    },

    onInfinite (done) {
      setTimeout(() => {
        if (this.infiniteCount < 2) {
          let start = this.bottom + 1
          for (let i = start; i < start + 10; i++) {
            this.items.push(i + ' - keep walking, be 2 with you.')
          }
          this.bottom = this.bottom + 10

          this.infiniteCount++
        }

        done()
      }, 1500)
    },

    onItemClick (index) {
      console.log(index)
    },

    onInput (value) {
      this.value += ('' + value)
      console.log(value)
    },
    onDelete () {
      this.value = ''
      console.log('delete')
    },
    keyboradShow () {
      let vm = this
Nature's avatar
Nature committed
638
      this.hlsPopup.showNumberKeyborad({
Nature's avatar
Nature committed
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
        title: '数字键盘',
        keyDown: (text) => {
          vm.onInput(text)
        },
        keyDelete: () => {
          vm.onDelete()
        },
      })
    },
    // e为该元素在数组的下标
    deleteFun (e) {
      console.log(e)
    },
    // e为该元素在数组的下标
    editFun (e) {
      console.log(e)
    },
    savePhotoFun (value) {
      this.savePhoto = value

      window.localStorage.setItem('savePhoto', value)
    },

    showModal () {
      this.showModalValue = true
    },
  },
}
</script>

<style lang="less" rel="stylesheet">
  .hls-popup {
    height: 100%;
    width: 100%;
Nature's avatar
Nature committed
673 674 675 676 677 678 679
    .hls-switch-tab {
      .tab-content .h-tab-item .h-item{
        width: 80px;
      }

    }

Nature's avatar
Nature committed
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
    .vue-better-scroll__wrapper {
      width: 100%;
    }
    .list {
      width: 100%;
    }
    .content {
      .scrollContent {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
        flex-direction: column;
        -webkit-flex-direction: column;
      }
      .button-class {
        width: 90%;
        margin: 10px 5%;
        display: block;

        &.image {
          width: auto;
          margin-right: 0;
          display: inline-block;
        }

        &.radius-small {
          border-radius: 6px;
        }

        &.radius-normal {
          border-radius: 16px;
        }

        &.radius-large {
          border-radius: 40px;
        }

        .spin {
          vertical-align: middle;
        }

        .text {
          font-size: 28px;
          margin-left: 16px;
          vertical-align: middle;
        }
      }

      .purple {
        color: #fff;
        background-color: #7e57c2;
        border: 1px solid #7e57c2;
      }
      .button {
        background-color: @theme-color;
        color: #ffffff;
        height: 100px;
        width: 600px;
        border: 20px;
        margin-top: 20px;
      }
    }
    .item-bg {
      height: 200px;
      line-height: 200px;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }
    .indicators {
      height: 14px;
      width: 14px;
      background-image: url('../assets/image/logo.png');
      background-position: center;
      background-size: cover;
      opacity: 0.5;

      &.active {
        opacity: 1;
      }
    }

    .local-region {
      overflow: hidden;
      position: relative;
      height: 200px;
      background-color: #eee;
      width: 90%;
    }

    .sign-modal {
      top: 50%;
      .content {
        background-color: #fff;
      }
    }
  }

  .login-modal {
    height: 50%;
    top: 50%
  }
</style>