1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="u-demo">
- <view class="u-demo-wrap">
- <view class="u-demo-title">演示效果</view>
- <view class="u-demo-area">
- <u-number-box v-model="value" :bg-color="bgColor" :color="color" :min="0"
- :step="step" :disabled="disabled" @change="change" @focus="focus"></u-number-box>
- </view>
- </view>
- <view class="u-config-wrap">
- <view class="u-config-title u-border-bottom">
- 参数配置
- </view>
- <view class="u-config-item">
- <view class="u-item-title">初始值</view>
- <u-subsection :list="[1, 5, 18]" @change="valueChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">自定义样式</view>
- <u-subsection current="1" :list="['是', '否']" @change="styleChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">是否禁用</view>
- <u-subsection current="1" :list="['是', '否']" @change="disabledChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">步进值</view>
- <u-subsection :list="[1, 3, 5, 8]" @change="stepChange"></u-subsection>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- value: 1,
- bgColor: "#F2F3F5",
- color: '#323233',
- disabled: false,
- step: 1,
-
- };
- },
- methods: {
- valueChange(index) {
- this.value = index == 0 ? 1 : index == 1 ? 5 : 18;
- },
- styleChange(index) {
- if(index == 0) {
- this.bgColor = '#ff6d00';
- this.color = '#fff';
- } else {
- this.bgColor = "#F2F3F5";
- this.color = '#323233';
- }
- },
- disabledChange(index) {
- this.disabled = index == 0 ? true : false;
- },
- stepChange(index) {
- this.step = index == 0 ? 1 : index == 1 ? 3 : index == 2 ? 5 : 8;
- },
- change(e) {
- //console.log(e.value);
- },
- focus() {
- console.log('focus');
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .u-demo {}
- </style>
|