查询select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from v$locked_object lo, dba_objects ao, v$sessio Read More
posted @ 2023-06-30 15:08 Li_ll Views(21) Comments(0) Diggs(0)
问题 : 主数据库 为oracle , 配置数据库 SqlServer , 有个子页面查询SqlServer数据库视图 , 需要二十多秒才给响应 处理方案 : 把查询分页数据的SQL 和 查询分页计数的SQL 异步处理 原代码: page=iMpckService.getsympzkcSqlserv Read More
posted @ 2023-06-14 09:27 Li_ll Views(44) Comments(0) Diggs(0)
正确写法: <if test=" xxx==1 "> 或者 <if test=" xxx=='1'.toString() "> 或者 <if test=' xxx=="1" '> 错误写法 <if test=" xxx=='1' "> 如果判断条件是数字,则不能加单引号,否则将会不生效! 拓展: m Read More
posted @ 2023-06-08 16:31 Li_ll Views(2678) Comments(0) Diggs(0)
前端组件 <hd-flex> <el-dialog v-model="isUploadDialog" width="50%" lock-scroll=false> <el-upload class="upload-demo" drag :action="url" :on-success="succe Read More
posted @ 2023-06-02 17:41 Li_ll Views(193) Comments(0) Diggs(0)
错误的查询返回格式 //dao 层 List query_T_JS_DHGL_XMLGJ(Map<String, String> queryParams); 正确的的查询返回格式 ArrayList<Map> query_T_JS_DHGL_XMLGJ(Map<String, String> que Read More
posted @ 2023-05-29 18:01 Li_ll Views(38) Comments(0) Diggs(0)
Controller层 @ApiOperation(value = "毛坯反馈参数(越南)导出") @ApiImplicitParams({ @ApiImplicitParam(name = "ZzcsVO",value = "查询条件",required = false,dataType = "Z Read More
posted @ 2023-03-23 14:09 Li_ll Views(115) Comments(0) Diggs(0)
public static Boolean is18Card(String idCard18) { //证件省份 HashMap<String, String> aCity = new HashMap<>(); aCity.put("11","北京"); aCity.put("12","天津"); Read More
posted @ 2023-02-22 16:20 Li_ll Views(36) Comments(0) Diggs(0)
<vxe-table @cell-click="handleClickCell" :span-method="spanMethods" //自动合并单元格 :data="tableData2"> </vxe-table> spanMethods({row, $rowIndex, column, da Read More
posted @ 2022-11-01 11:15 Li_ll Views(2417) Comments(0) Diggs(0)
getBeforeDate(n) {//传入天数 var n = n; var d = new Date(); var year = d.getFullYear(); var mon = d.getMonth() + 1; var day = d.getDate(); if (Number(mon) Read More
posted @ 2022-08-06 16:29 Li_ll Views(149) Comments(0) Diggs(0)
getLastMonth(date) { var now = new Date(date) var year = now.getFullYear(); var month = now.getMonth() + 1; var day = now.getDate(); var nowMonthDay = Read More
posted @ 2022-07-20 09:19 Li_ll Views(425) Comments(0) Diggs(0)