摘要:
1.只要不为空,就在后面添加逗号,最后再用subString()函数截取,去掉最后一位的逗号 List<String> test = new ArrayList<>(); String testStrings = ""; test.add("test1"); test.add("test2"); t 阅读全文
摘要:
直接在Number中扩展货币格式方法 Number.prototype.formatMoney = function (places, symbol, thousand, decimal) { places = !isNaN(places = Math.abs(places)) ? places : 阅读全文
摘要:
SELECT A.id,A.fz_id,A.jg_dept_id,A.jg_dept_name,A.jg_dept_code,IFNULL(B.config01,0) As config01,IFNULL(B.config02,0) As config02,IFNULL(B.config03,'') 阅读全文
摘要:
```C //去重复 unique(arr1) { const res = new Map(); return arr1.filter((a) => !res.has(a.level) && res.set(a.level, 1)) }, uniqueFun(arr, type) { const r 阅读全文
摘要:
数据库格式: [{"jjxId":13,"jjxName":"测试三","jjxDate":"1111"},{"jjxId":15,"jjxName":"测试五","jjxDate":"2222"}] public R getNew(@PathVariable("fpId") Integer fpI 阅读全文
摘要:
JSON.parse()【从一个字符串中解析出json对象】 例子: //定义一个字符串 var data='{"name":"goatling"}' //解析对象 JSON.parse(data) 结果是: name:"goatling" JSON.stringify()【从一个对象中解析出 阅读全文
摘要:
<el-table-column prop="lyLx" header-align="center" align="center" label="来源类型" :formatter="lxFormat" width="90px"></el-table-column> <el-table-column 阅读全文
摘要:
<el-date-picker v-model="dataForm.jjDate" placeholder="奖惩时间" style="width:90%;" type="datetime" :picker-options="expireTimeOption" value-format="yyyy- 阅读全文
摘要:
子传一个参数 this.$emit("getChildValue",this.multiplefzData); 父接收 @getChildValue="setRyfzStr($event)" 或 @getChildValue="setRyfzStr" 子传多个参数 this.$emit("getCh 阅读全文
摘要:
<template> <div> <el-button @click="btnClick">点击</el-button> <table> <!--<span v-for="(item,index) in nStr">--> <tr v-for="(item,index) in nStr"> <td> 阅读全文
摘要:
<el-table :data="fzData" @selection-change="handleSelectionChange" border class="avue-crud"> <el-table-column :selectable="checkSelect" type="selectio 阅读全文
摘要:
<el-form-item label="奖惩金额" prop="jjJe"> <el-input-number v-model="dataForm.jjJe" :precision="2" :step="1" :min="0" style="width:90%;"></el-input-numbe 阅读全文
摘要:
<template> <div> <el-date-picker v-model="dataForm.jjDate" placeholder="奖惩时间" style="width: 240px;" type="datetime" @change="cDatePicker" :picker-opti 阅读全文
摘要:
<template> <div> <br/> <div @drop="tt()" @dragover.prevent> <div> {{ test }} </div> </div> <br/> <div :draggable="true" @dragover.prevent @dragstart=" 阅读全文
摘要:
Ctrl + Shift + K 推送 点击推送的文件,弹出界面,左侧代码上方是版本号 git - 重置HEAD - 为提交(是你的回退版本号)- 点击验证查看差异 点击重置即可 阅读全文