摘要:
一、列表中el-table用法 1、字数超长之后用点显示属性 show-overflow-tooltip 2、固定列 <el-table-column fixed="right" label="操作" width="120"> fixed="right" 固定在右边 left 固定在左边 3、字体居 阅读全文
摘要:
1、新增的时候清空校验 this.$nextTick(()=>{ this.$refs["addForm"].clearValidate() }) 2、多选下拉框默认会在新增的时候进行校验,多选下拉框的值是数组 多值是按照逗号分割传后台,后台中的数据,按照逗号进行分割形成数组 传后台:roleIds 阅读全文
摘要:
/** * 获取当月的最后一天 * */ public static String getLastDay(String dateStr){ try { SimpleDateFormat sm = new SimpleDateFormat("yyyy-MM-dd"); Date date = sm.p 阅读全文
摘要:
一、字段值是按照逗号分割保存 SELECT GROUP_CONCAT(option_name) busiTypeName,GROUP_CONCAT(option_code) option_code FROM sys_option_conf WHERE option_code REGEXP (SELE 阅读全文
摘要:
一、弹框显示图片列表信息(轮播方式) <!-- 图片显示列表--> <div class="dialog_diy"> <el-dialog :visible.sync="isShowImage" :close-on-click-modal="false"> <div slot="title" cla 阅读全文
摘要:
一、页面 <el-col :xs="66" :sm="66" :lg="22"> <el-form-item label="上传附件" prop="fileList"> <el-upload class="upload-demo" action="#" :auto-upload="false" :o 阅读全文
摘要:
一、前端代码 1 <el-table 2 ref="multipleTable" 3 :data="tableData" 4 stripe 5 style="width: 99%;margin-bottom: 10px;" 6 border 7 :height="$publicjs.tableHei 阅读全文
摘要:
<!--批量新增--><insert id="addBatch" parameterType="java.util.List"> insert into stati_alarm_amount_month (id,stati_year_month,stor_conf_id,alarm_amount,o 阅读全文
摘要:
一、vue代码 <template> <div class="main"> <div v-for="(item,index) in itemCategory" :key="index" :class="[index%2 0 ? 'wupina':' wupinb']"> <div v-if="ind 阅读全文