摘要:
import CryptoJS from 'crypto-js/crypto-js' // 默认的 KEY 与 iv 与后端保持一致 ,不采用后端传值密钥 const KEY = CryptoJS.enc.Utf8.parse('xxxxxxxxxxxxxxxx')// 密钥 (16位) const 阅读全文
摘要:
// JS获取两个日期之间相差的天数 function getDaysBetween(dateString1, dateString2) { var startDate = Date.parse(dateString1) var endDate = Date.parse(dateString2) v 阅读全文
摘要:
<el-form-item label="开始时间" prop="ksrq" label-width="120px"> <el-date-picker v-model="form.ksrq" type="date" placeholder="选择日期" :picker-options="picker 阅读全文