首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    Angular.js学习笔记(三)

    1、uppercase,lowercase 大小写转换 {{ "lower cap string" | uppercase }} // 结果:LOWER CAP STRING {{ "TANK is GOOD" | lowercase }} // 结果:tank is good 2、date 格式化 {{1490161945000 | date:"yyyy-MM-dd HH:mm:ss"}} // 2017-03-22 13:52:25 3、number 格式化(保留小数) {{149016.1945000 | number:2}}//保留两位 {{149016.1945000 | number}}//默认为保留3位 4、currency货币格式化 {{ 250 | currency }} // 结果:$250.00 {{ 250 | currency:"RMB ¥ " }} // 结果:RMB ¥ 250.00 5、filter查找 输入过滤器可以通过一个管道字符(|)和一个过滤器添加到指令中,该过滤器后跟一个冒号和一个模型名称。 filter 过滤器从数组中选择一个子集 // 查找name为iphone的行 {{ [{"age": 20,"id": 10,"name": "iphone"}, {"age": 12,"id": 11,"name": "sunm xing"}, {"age": 44,"id": 12,"name": "test abc"} ] | filter:{'name':'iphone'} }} 同时filter可以自定义比较函数。 6、limitTo 截取 {{"1234567890" | limitTo :6}} // 从前面开始截取6位 {{"1234567890" | limitTo :6,6}} // 从第6位开始截取6位 {{"1234567890" | limitTo:-4}} // 从后面开始截取4位 7、orderBy 排序 // 根据id降序排 {{ [{"age": 20,"id": 10,"name": "iphone"}, {"age": 12,"id": 11,"name": "sunm xing"}, {"age": 44,"id": 12,"name": "test abc"} ] | orderBy:'id':true }}

    02

    用vue实现入库单的打印「建议收藏」

    1、安装vue-print-nb插件 npm install vue-print-nb –save 2、在main.js文件中引入插件 import Print from ‘vue-print-nb’ Vue.use(Print) 3、编写程序

    入库单

    日期:2020年04月14日 供应商:中国古月口山玄幻有限公司 NO: HXD00001234

    <el-table :data=”tableData” style=”width: 100%” border=”true”> <el-table-column prop=”encode” label=”编码” width=”85″></el-table-column> <el-table-column prop=”name” label=”品名” width=”80″></el-table-column> <el-table-column prop=”discription” label=”品牌-型号-规格” width=”250″></el-table-column> <el-table-column prop=”unit” label=”单位” width=”50″></el-table-column> <el-table-column prop=”quantity” label=”数量” width=”60″></el-table-column> <el-table-column prop=”unitPrice” label=”单价” width=”60″></el-table-column> <el-table-column prop=”amount” label=”金额” width=”60″></el-table-column> <el-table-column prop=”remark” label=”备注” width=”50″></el-table-column> </el-table>

    合计:168 元(RMB)

    采购员:任我行 验货员:岳不群 负责人: 东方不败 仓管员:林平之

    <button v-print=”‘#printTest'”>打印</button>
    4、运行效果

    02
    领券