时间戳计算间隔天数计算

M a t h . f l o o r ( ( 结 束 时 间 − 开 始 时 间 ) / ( 24 ∗ 3600 ∗ 1000 ) ) Math.floor((结束时间-开始时间)/(24*3600*1000)) Math.floor(()/(2436001000))

              <template slot-scope="{ row }">
                <el-tag>
                  距到期时间{{ Math.floor((row.jzrq - row.bbrq )/ (24*3600*1000)) }}</el-tag>
              </template>

时间戳计算所间隔天数_Java