博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iview,用render函数渲染
阅读量:6146 次
发布时间:2019-06-21

本文共 5873 字,大约阅读时间需要 19 分钟。

discountData: { total: 1, rows: [ { randomDiscountRangeMax: '', randomDiscountRangeMin: '', population: '' }, ], defaultRows: { randomDiscountRangeMax: '', randomDiscountRangeMin: '', population: '' }, } discountColumns: [ { key: 'randomDiscountRange', align: 'center', title: '随机立减范围', render: (h, params) => { var me = this return h('div', [h('Input', { props: { type: 'text', value: me.discountData.rows[params.index].randomDiscountRangeMin, disabled: this.getIsDetail(), }, style: { width: '100px' }, on: { 'on-blur': (event) => { me.discountData.rows[params.index].randomDiscountRangeMin = event.target.value } } }), h('span', '元<=随机立减金额<'), h('Input', { props: { type: 'text', value: me.discountData.rows[params.index].randomDiscountRangeMax, disabled: this.getIsDetail(), }, style: { width: '100px' }, on: { 'on-blur': (event) => { this.discountData.rows[params.index].randomDiscountRangeMax = event.target.value } } }), h('span', '元')]) } }, { key: 'population', align: 'center', title: '概率', width: 300, render: (h, params) => { var me = this return h('div', [h('Input', { props: { type: 'text', value: me.discountData.rows[params.index].population, disabled: this.getIsDetail(), }, style: { width: '100px' }, on: { 'on-blur': (event) => { this.discountData.rows[params.index].population = event.target.value } } }), h('span', '%')]) } }, { key: 'operation', align: 'center', title: '操作', width: 200, render: (h, params) => { return h('div', [ h('Button', { props: { type: 'primary', shape: 'circle', icon: 'plus', disabled: this.getIsDetail(), }, style: { display: params.index !== 0 ? 'none' : 'inline' }, on: { click: () => { this.add('discountData') } } }), h('Button', { props: { type: 'primary', shape: 'circle', icon: 'minus', disabled: this.getIsDetail(), }, style: { display: params.index === 0 ? 'none' : 'inline' }, on: { click: () => { this.remove(params.index, 'discountData') } } }) ]) } } ] add (dataName) { var obj = JSON.parse(JSON.stringify(this[dataName].defaultRows)) this[dataName].rows.push(obj) } remove (index, value) { this[value].rows.splice(index, 1) }

 

 

转载地址:http://kpvya.baihongyu.com/

你可能感兴趣的文章
centos 下安装g++
查看>>
嵌入式,代码调试----GDB扫盲
查看>>
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>