提交 56c94cdc 编写于 作者: B baiy 提交者: ninecents

添加单位换算工具 #12

上级 c29edeaa
......@@ -27,7 +27,8 @@
|php数组/序列化|`数组`,`serialize`,`json`|√|
|文本差异化对比|`行`,`单词`,`css`|√|
|crontab校验|`Crontab`,`规则`,`校验`,`例子`|√|
|websocket调试|`websocket`,`在线调试`|`×`|
|websocket调试|`websocket`,`在线调试`|×|
|单位换算|`长度`,`面积`,`体积`,`质量`,`温度`,`压力`,`功率`,`功`,`密度`,`力`,`时间`,`速度`,`数据存储`,`角度`|√|
## 第三方开源库
项目诞生离不开这些优秀的开源程序
......
因为 它太大了无法显示 source diff 。你可以改为 查看blob
{
"name": "c-tool",
"version": "0.0.15",
"version": "0.0.17",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 8081",
......@@ -10,8 +10,8 @@
"dependencies": {
"ajax-request": "^1.2.3",
"code-formatter": "0.0.1",
"cron-parser": "^2.12.0",
"cronstrue": "^1.72.0",
"cron-parser": "^2.13.0",
"cronstrue": "^1.83.0",
"crypto-js": "^3.1.9-1",
"diff": "^4.0.1",
"ipinyinjs": "^1.0.0",
......@@ -21,22 +21,22 @@
"lscache": "^1.3.0",
"php-array-reader": "^1.2.0",
"phparr": "^0.2.0",
"qrcode": "^1.3.3",
"qrcode": "^1.4.1",
"qrcode-parser": "^1.2.0",
"query-string": "^6.8.1",
"query-string": "^6.8.2",
"radix.js": "0.0.1",
"serialize-php": "^1.1.2",
"vue": "^2.6.10",
"vue-prismjs": "^1.2.0",
"vue-router": "^3.0.1"
"vue-router": "^3.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.5",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.8.4",
"babel-eslint": "^10.0.2",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"eslint-plugin-vue": "^5.2.3",
"vue-cli-plugin-iview": "^1.0.6",
"vue-template-compiler": "^2.6.10"
},
......
import Vue from 'vue'
import Router from 'vue-router'
import {stat} from "./helper";
import { stat } from './helper'
Vue.use(Router);
Vue.use(Router)
// 路由配置
const routes = [
{
path: "/tool/base64",
path: '/tool/base64',
component: r => require(['./views/tool/base64.vue'], r)
},
{
path: "/tool/code",
path: '/tool/code',
component: r => require(['./views/tool/code.vue'], r)
},
{
path: "/tool/decimalConvert",
path: '/tool/decimalConvert',
component: r => require(['./views/tool/decimalConvert.vue'], r)
},
{
path: "/tool/diffs",
path: '/tool/diffs',
component: r => require(['./views/tool/diffs.vue'], r)
},
{
path: "/tool/encrypt",
path: '/tool/encrypt',
component: r => require(['./views/tool/encrypt.vue'], r)
},
{
path: "/tool/hash",
path: '/tool/hash',
component: r => require(['./views/tool/hash.vue'], r)
},
{
path: "/tool/ip",
path: '/tool/ip',
component: r => require(['./views/tool/ip.vue'], r)
},
{
path: "/tool/phpArraySerialize",
path: '/tool/phpArraySerialize',
component: r => require(['./views/tool/phpArraySerialize.vue'], r)
},
{
path: "/tool/pinyin",
path: '/tool/pinyin',
component: r => require(['./views/tool/pinyin.vue'], r)
},
{
path: "/tool/qrCode",
path: '/tool/qrCode',
component: r => require(['./views/tool/qrCode.vue'], r)
},
{
path: "/tool/randomString",
path: '/tool/randomString',
component: r => require(['./views/tool/randomString.vue'], r)
},
{
path: "/tool/regex",
path: '/tool/regex',
component: r => require(['./views/tool/regex.vue'], r)
},
{
path: "/tool/timestamp",
path: '/tool/timestamp',
component: r => require(['./views/tool/timestamp.vue'], r)
},
{
path: "/tool/unicode",
path: '/tool/unicode',
component: r => require(['./views/tool/unicode.vue'], r)
},
{
path: "/tool/url",
path: '/tool/url',
component: r => require(['./views/tool/url.vue'], r)
},
{
path: "/tool/crontab",
path: '/tool/crontab',
component: r => require(['./views/tool/crontab.vue'], r)
},
{
path: "/tool/websocket",
path: '/tool/websocket',
component: r => require(['./views/tool/websocket.vue'], r)
},
];
{
path: '/tool/unit',
component: r => require(['./views/tool/unit.vue'], r)
}
]
const router = new Router({routes});
const router = new Router({ routes })
stat('index');
stat('index')
router.afterEach(to => {
stat('tool', {tool: to.path})
});
stat('tool', { tool: to.path })
})
export default router
\ No newline at end of file
import {env, inArray} from "../helper";
import cache from "./cache"
import { env, inArray } from '../helper'
import cache from './cache'
// 工具缓存数据过期时间(秒)
export const TOOL_DATA_EXPIRY = 1800;
export const TOOL_DATA_EXPIRY = 1800
// 徽章过期时间(天)
export const BADGE_EXPIRY = 10;
export const BADGE_EXPIRY = 10
// 分类徽章
export const BADGE_CATEGORY = ["other"];
export const BADGE_CATEGORY = ['other']
// 工具徽章
export const BADGE_TOOL = ["websocket"];
export const BADGE_TOOL = ['unit']
// 默认常用工具
export const DEFAULT_COMMON_TOOL = [
"hash", "encrypt", "base64", "url", "timestamp",
"qrCode", "pinyin", "ip", "code", "unicode",
"decimalConvert", "regex", "randomString", "phpArraySerialize",
"diffs"
];
'hash', 'encrypt', 'base64', 'url', 'timestamp',
'qrCode', 'pinyin', 'ip', 'code', 'unicode',
'decimalConvert', 'regex', 'randomString', 'phpArraySerialize',
'diffs'
]
const category = [
{"name": "common", "title": "常用工具"},
{"name": "encryption", "title": "加密解密"},
{"name": "conversion", "title": "编码转换"},
{"name": "other", "title": "其他工具"},
];
{ 'name': 'common', 'title': '常用工具' },
{ 'name': 'encryption', 'title': '加密解密' },
{ 'name': 'conversion', 'title': '编码转换' },
{ 'name': 'other', 'title': '其他工具' },
]
const tool = [
{"name": "hash", "title": "哈希(hash)", cat: ["encryption"]},
{"name": "encrypt", "title": "加密/解密", cat: ["encryption"]},
{"name": "base64", "title": "BASE64编码", cat: ["encryption"]},
{"name": "url", "title": "URL编码", cat: ["conversion"]},
{"name": "timestamp", "title": "时间戳", cat: ["conversion"]},
{"name": "qrCode", "title": "二维码", cat: ["other"]},
{"name": "pinyin", "title": "汉字转拼音", cat: ["conversion"]},
{"name": "ip", "title": "IP地址查询", cat: ["other"]},
{"name": "code", "title": "代码格式化", cat: ["other"]},
{"name": "unicode", "title": "Unicode", cat: ["conversion"]},
{"name": "decimalConvert", "title": "进制转换", cat: ["conversion"]},
{"name": "regex", "title": "正则表达式", cat: ["other"]},
{"name": "randomString", "title": "随机字符生成", cat: ["other"]},
{"name": "phpArraySerialize", "title": "PHP数组/序列化", cat: ["conversion"]},
{"name": "diffs", "title": "文本差异化对比", cat: ["other"]},
{"name": "crontab", "title": "crontab校验", cat: ["other"]},
{"name": "websocket", "title": "websocket调试", cat: ["other"]},
];
{ 'name': 'hash', 'title': '哈希(hash)', cat: ['encryption'] },
{ 'name': 'encrypt', 'title': '加密/解密', cat: ['encryption'] },
{ 'name': 'base64', 'title': 'BASE64编码', cat: ['encryption'] },
{ 'name': 'url', 'title': 'URL编码', cat: ['conversion'] },
{ 'name': 'timestamp', 'title': '时间戳', cat: ['conversion'] },
{ 'name': 'qrCode', 'title': '二维码', cat: ['other'] },
{ 'name': 'pinyin', 'title': '汉字转拼音', cat: ['conversion'] },
{ 'name': 'ip', 'title': 'IP地址查询', cat: ['other'] },
{ 'name': 'code', 'title': '代码格式化', cat: ['other'] },
{ 'name': 'unicode', 'title': 'Unicode', cat: ['conversion'] },
{ 'name': 'decimalConvert', 'title': '进制转换', cat: ['conversion'] },
{ 'name': 'regex', 'title': '正则表达式', cat: ['other'] },
{ 'name': 'randomString', 'title': '随机字符生成', cat: ['other'] },
{ 'name': 'phpArraySerialize', 'title': 'PHP数组/序列化', cat: ['conversion'] },
{ 'name': 'diffs', 'title': '文本差异化对比', cat: ['other'] },
{ 'name': 'crontab', 'title': 'crontab校验', cat: ['other'] },
{ 'name': 'websocket', 'title': 'websocket调试', cat: ['other'] },
{ 'name': 'unit', 'title': '单位换算', cat: ['other'] },
]
// 徽章是否显示
const badgeIsShow = function () {
return (Date.parse((new Date()).toString()) / 1000) - env('updateTime') < BADGE_EXPIRY * 86400
};
}
const getUserCommon = function () {
let tools = cache.getNoVersion('user_common');
return tools ? tools : DEFAULT_COMMON_TOOL;
};
let tools = cache.getNoVersion('user_common')
return tools ? tools : DEFAULT_COMMON_TOOL
}
const setUserCommon = function (tools) {
cache.setnNoVersion('user_common', tools);
};
cache.setnNoVersion('user_common', tools)
}
export default {
tool,
category,
setUserCommon,
getUserCommon,
getToolByCategory(cat) {
getToolByCategory (cat) {
return tool.filter((t) => {
if (cat === "common") {
if (cat === 'common') {
return inArray(t.name, getUserCommon())
}
return inArray(cat, t.cat)
});
})
},
badgeToolIsShow(tool) {
return badgeIsShow() && inArray(tool, BADGE_TOOL);
badgeToolIsShow (tool) {
return badgeIsShow() && inArray(tool, BADGE_TOOL)
},
badgeCategoryIsShow(cat) {
return badgeIsShow() && inArray(cat, BADGE_CATEGORY);
badgeCategoryIsShow (cat) {
return badgeIsShow() && inArray(cat, BADGE_CATEGORY)
}
}
\ No newline at end of file
const MAX_NUM = 14 //格式化后的最长限制
const DECIMAL_NUM = 7 //四舍五入时小数点后位数
const EXPONENTIAL_NUM = 4 //科学计数法小数点后位数
const conf = {
angle: {
calc: {
'圆周': '(x*2.777778)/1000_圆周',
'直角': '(x*11.111111)/1000_直角',
'百分度': '(x*1.111111)_百分度_(gon)',
'': '(x*1)_度_(°)',
'': '(x*60)_分_( ′)',
'': '(x*3600)_秒_(\')',
'弧度': '(x*17.453293)/1000_弧度_(rad)',
'毫弧度': '(x*17.453293)_毫弧度_(mrad)'
},
init: {
'圆周': '(x*360)_度',
'直角': '(x*90)_度',
'百分度': '(x*900)/1000_度',
'': '(x*1)_度',
'': '(x*16.6666667)/1000_度',
'': '(x*0.2777778)/1000_度',
'弧度': '(x*57.295780)_度',
'毫弧度': '(x*57.295780)/1000_度'
},
iu: '角度(°)',
group: [{
name: '角度制',
list: ['圆周', '直角', '百分度_(gon)', '度_(°)', '分_( ′)', '秒_(\')']
}, {
name: '弧度制',
list: ['弧度_(rad)', '毫弧度_(mrad)']
}]
},
area: {
calc: {
'平方千米': '(x*1)/1000000_平方千米_(km²)',
'公顷': '(x*1)/10000_公顷_(ha)',
'公亩': '(x*1)/100_公亩_(are)',
'平方米': '(x*1)/1_平方米_(㎡)',
'平方分米': '(x*1)/0.01_平方分米_(dm²)',
'平方厘米': '(x*1)/0.0001_平方厘米_(cm²)',
'平方毫米': '(x*1)/0.000001_平方毫米_(mm²)',
'英亩': '(x*1)/(Math.pow(0.3048,2)*Math.pow(16.5,2)*160)_英亩_(acre)',
'平方英里': '(x*1)/Math.pow((0.3048*3*1760),2)_平方英里_(sq.mi)',
'平方码': '(x*1)/(Math.pow(0.3048,2)*9)_平方码_(sq.yd)',
'平方英尺': '(x*1)/Math.pow(0.3048,2)_平方英尺_(sq.ft)',
'平方英寸': '(x*1)/(Math.pow(0.3048,2)/144)_平方英寸_(sq.in)',
'平方竿': '(x*1)/(Math.pow(0.3048,2)*Math.pow(16.5,2))_平方竿_(sq.rd)',
'': '(x*1)/(100/0.0015)_顷',
'': '(x*1)/(1/0.0015)_亩',
'': '(x*1)/(1/0.015)_分',
'平方尺': '(x*1)/(1/9)_平方尺',
'平方寸': '(x*1)/(0.01/9)_平方寸'
},
init: {
'平方千米': '(x*1000000)/1_平方米',
'公顷': '(x*10000)/1_平方米',
'公亩': '(x*100)/1_平方米',
'平方米': '(x*1)/1_平方米',
'平方分米': '(x*0.01)/1_平方米',
'平方厘米': '(x*0.0001)/1_平方米',
'平方毫米': '(x*0.000001)/1_平方米',
'英亩': '(x*(Math.pow(0.3048,2)*Math.pow(16.5,2)*160))/1_平方米',
'平方英里': '(x*Math.pow((0.3048*3*1760),2))/1_平方米',
'平方码': '(x*(Math.pow(0.3048,2)*9))/1_平方米',
'平方英尺': '(x*(Math.pow(0.3048,2)))/1_平方米',
'平方英寸': '(x*(Math.pow(0.3048,2)/144))/1_平方米',
'平方竿': '(x*(Math.pow(0.3048,2)*Math.pow(16.5,2)))/1_平方米',
'': '(x*(100/0.0015))/1_平方米',
'': '(x*(1/0.0015))/1_平方米',
'': '(x*(1/0.015))/1_平方米',
'平方尺': '(x*(1/9))/1_平方米',
'平方寸': '(x*(0.01/9))/1_平方米'
},
iu: '平方米(㎡)',
group: [{
name: '公制',
list: ['平方千米_(km²)', '公顷_(ha)', '公亩_(are)', '平方米_(㎡)', '平方分米_(dm²)', '平方厘米_(cm²)', '平方毫米_(mm²)']
}, {
name: '英制',
list: ['英亩_(acre)', '平方英里_(sq.mi)', '平方码_(sq.yd)', '平方英尺_(sq.ft)', '平方英寸_(sq.in)', '平方竿_(sq.rd)']
}, {
name: '市制',
list: ['', '', '', '平方尺', '平方寸']
}]
},
'byte': {
calc: {
'比特': '(x*8)_比特_(bit)',
'字节': '(x*1)_字节_(b)',
'千字节': '(x*1)/(Math.pow(2,10))_千字节_(kb)',
'兆字节': '(x*1)/(Math.pow(2,20))_兆字节_(mb)',
'千兆字节': '(x*1)/(Math.pow(2,30))_千兆字节_(gb)',
'太字节': '(x*1)/(Math.pow(2,40))_太字节_(tb)',
'拍字节': '(x*1)/(Math.pow(2,50))_拍字节_(pb)',
'艾字节': '(x*1)/(Math.pow(2,60))_艾字节_(eb)'
},
init: {
'比特': '(x*1)/8_字节',
'字节': '(x*1)_字节',
'千字节': '(x*1024)_字节',
'兆字节': '(x*Math.pow(2,20))_字节',
'千兆字节': '(x*Math.pow(2,30))_字节',
'太字节': '(x*Math.pow(2,40))_字节',
'拍字节': '(x*Math.pow(2,50))_字节',
'艾字节': '(x*Math.pow(2,60))_字节'
},
iu: '字节(b)',
group: [{
name: '',
list: ['比特_(bit)', '字节_(b)', '千字节_(kb)', '兆字节_(mb)', '千兆字节_(gb)', '太字节_(tb)', '拍字节_(pb)', '艾字节_(eb)']
}]
},
density: {
calc: {
'千克/立方厘米': '(x*1)/(Math.pow(10,6))_千克/立方厘米_(kg/cm³)',
'千克/立方分米': '(x*1)/1000_千克/立方分米_(kg/dm³)',
'千克/立方米': '(x*1)_千克/立方米_(kg/m³)',
'克/立方厘米': '(x*1)/1000_克/立方厘米_(g/cm³)',
'克/立方分米': '(x*1)_克/立方分米_(g/dm³)',
'克/立方米': '(x*1000)_克/立方米_(g/m³)'
},
init: {
'千克/立方厘米': '(x*1000000)_千克/立方米',
'千克/立方分米': '(x*1000)_千克/立方米',
'千克/立方米': '(x*1)_千克/立方米',
'克/立方厘米': '(x*1000)_千克/立方米',
'克/立方分米': '(x*1)_千克/立方米',
'克/立方米': '(x*1)/1000_千克/立方米'
},
iu: '千克/立方米(kg/m³)',
group: [{
name: '',
list: ['千克/立方厘米_(kg/cm³)', '千克/立方分米_(kg/dm³)', '千克/立方米_(kg/m³)', '克/立方厘米_(g/cm³)', '克/立方分米_(g/dm³)', '克/立方米_(g/m³)']
}]
},
length: {
calc: {
'千米': '(x*1)/1000_千米_(km)',
'': '(x*1)/1_米_(m)',
'分米': '(x*1)/0.1_分米_(dm)',
'厘米': '(x*1)/0.01_厘米_(cm)',
'毫米': '(x*1)/0.001_毫米_(mm)',
'微米': '(x*1)/0.000001_微米_(um)',
'纳米': '(x*1)/0.000000001_纳米_(nm)',
'皮米': '(x*1)/0.000000000001_皮米_(pm)',
'光年': '(x*1)/9460730472580800_光年_(ly)',
'天文单位': '(x*1)/149597870700_天文单位_(AU)',
'英寸': '(x*1)/(0.3048/12)_英寸_(in)',
'英尺': '(x*1)/0.3048_英尺_(ft)',
'': '(x*1)/(0.3048*3)_码_(yd)',
'英里': '(x*1)/(0.3048*3*1760)_英里_(mi)',
'海里': '(x*1)/1852_海里_(nmi)',
'英寻': '(x*1)/1.8288_英寻_(fm)',
'弗隆': '(x*1)/201.168_弗隆_(fur)',
'': '(x*1)/500_里',
'': '(x*1)/(10/3)_丈',
'': '(x*1)/(1/3)_尺',
'': '(x*1)/(0.1/3)_寸',
'': '(x*1)/(0.01/3)_分',
'': '(x*1)/(0.001/3)_厘',
'': '(x*1)/(0.0001/3)_毫'
},
init: {
'千米': '(x*1000)/1_米',
'': '(x*1)/1_米',
'分米': '(x*0.1)/1_米',
'厘米': '(x*0.01)/1_米',
'毫米': '(x*0.001)/1_米',
'微米': '(x*0.000001)/1_米',
'纳米': '(x*0.000000001)/1_米',
'皮米': '(x*0.000000000001)/1_米',
'光年': '(x*9460730472580800)/1_米',
'天文单位': '(x*149600000000)/1_米',
'英寸': '(x*(0.3048/12))/1_米',
'英尺': '(x*0.3048)/1_米',
'': '(x*(0.3048*3))/1_米',
'英里': '(x*(0.3048*3*1760))/1_米',
'海里': '(x*1852)/1_米',
'英寻': '(x*1.8288)/1_米',
'弗隆': '(x*201.168)/1_米',
'': '(x*500)/1_米',
'': '(x*(10/3))/1_米',
'': '(x*(1/3))/1_米',
'': '(x*(0.1/3))/1_米',
'': '(x*(0.01/3))/1_米',
'': '(x*(0.001/3))/1_米',
'': '(x*(0.0001/3))/1_米'
},
iu: '米(m)',
group: [{
name: '公制',
list: ['千米_(km)', '米_(m)', '分米_(dm)', '厘米_(cm)', '毫米_(mm)', '微米_(um)', '纳米_(nm)', '皮米_(pm)', '光年_(ly)', '天文单位_(AU)']
}, {
name: '英制',
list: ['英寸_(in)', '英尺_(ft)', '码_(yd)', '英里_(mi)', '海里_(nmi)', '英寻_(fm)', '弗隆_(fur)']
}, {
name: '市制',
list: ['', '', '', '', '', '', '']
}]
},
power: {
calc: {
'': '(x*1)/1_瓦_(W)',
'千瓦': '(x*1)/1000_千瓦_(kW)',
'英制马力': '(x*1)/745.699872_英制马力_(hp)',
'米制马力': '(x*1)/(9.80665*75)_米制马力_(ps)',
'公斤·米/秒': '(x*1)/9.80665_公斤·米/秒_(kg·m/s)',
'千卡/秒': '(x*1)/4184.1004_千卡/秒_(kcal/s)',
'英热单位/秒': '(x*1)/1055.05585_英热单位/秒_(Btu/s)',
'英尺·磅/秒': '(x*1)/(745.699872/550)_英尺·磅/秒_(ft·lb/s)',
'焦耳/秒': '(x*1)/1_焦耳/秒_(J/s)',
'牛顿·米/秒': '(x*1)/1_牛顿·米/秒_(N·m/s)'
},
init: {
'': '(x*1)/1_瓦',
'千瓦': '(x*1000)/1_瓦',
'英制马力': '(x*745.699872)/1_瓦',
'米制马力': '(x*(9.80665*75))/1_瓦',
'公斤·米/秒': '(x*9.80665)/1_瓦',
'千卡/秒': '(x*4184.1004)/1_瓦',
'英热单位/秒': '(x*1055.05585)/1_瓦',
'英尺·磅/秒': '(x*(745.699872/550))/1_瓦',
'焦耳/秒': '(x*1)/1_瓦',
'牛顿·米/秒': '(x*1)/1_瓦'
},
iu: '瓦(W)',
group: [{
name: '',
list: ['瓦_(W)', '千瓦_(kW)', '英制马力_(hp)', '米制马力_(ps)', '公斤·米/秒_(kg·m/s)', '千卡/秒_(kcal/s)', '英热单位/秒_(Btu/s)', '英尺·磅/秒_(ft·lb/s)', '焦耳/秒_(J/s)', '牛顿·米/秒_(N·m/s)']
}]
},
pressure: {
calc: {
'帕斯卡': '(x*1)/1_帕斯卡_(Pa)',
'千帕': '(x*1)/1000_千帕_(kpa)',
'百帕': '(x*1)/100_百帕_(hpa)',
'标准大气压': '(x*1)/101325_标准大气压_(atm)',
'毫米汞柱': '(x*1)/(101325/760)_毫米汞柱_(mmHg)',
'英寸汞柱': '(x*1)/(101325/760*25.4)_英寸汞柱_(in Hg)',
'': '(x*1)/100000_巴_(bar)',
'毫巴': '(x*1)/100_毫巴_(mbar)',
'磅力/平方英尺': '(x*1)/(6894.757/144)_磅力/平方英尺_(psf)',
'磅力/平方英寸': '(x*1)/6894.757_磅力/平方英寸_(psi)',
'毫米水柱': '(x*1)/(1/0.101972)_毫米水柱',
'公斤力/平方厘米': '(x*1)/98066.5_公斤力/平方厘米_(kgf/cm²)',
'公斤力/平方米': '(x*1)/9.80665_公斤力/平方米_(kgf/㎡)',
'兆帕': '(x*1)/1000000_兆帕_(MPa)'
},
init: {
'帕斯卡': '(x*1)/1_帕斯卡',
'千帕': '(x*1000)/1_帕斯卡',
'百帕': '(x*100)/1_帕斯卡',
'标准大气压': '(x*101325)/1_帕斯卡',
'毫米汞柱': '(x*(101325/760))/1_帕斯卡',
'英寸汞柱': '(x*(101325/760*25.4))/1_帕斯卡',
'': '(x*100000)/1_帕斯卡',
'毫巴': '(x*100)/1_帕斯卡',
'磅力/平方英尺': '(x*(6894.757/144))/1_帕斯卡',
'磅力/平方英寸': '(x*6894.757)/1_帕斯卡',
'毫米水柱': '(x*(1/0.101972))/1_帕斯卡',
'公斤力/平方厘米': '(x*98066.5)/1_帕斯卡',
'公斤力/平方米': '(x*9.80665)/1_帕斯卡',
'兆帕': '(x*1000000)/1_兆帕'
},
iu: '帕斯卡(Pa)',
group: [{
name: '',
list: ['帕斯卡_(Pa)', '兆帕_(MPa)', '千帕_(kpa)', '百帕_(hpa)', '标准大气压_(atm)', '毫米汞柱_(mmHg)', '英寸汞柱_(in Hg)', '巴_(bar)', '毫巴_(mbar)', '磅力/平方英尺_(psf)', '磅力/平方英寸_(psi)', '毫米水柱', '公斤力/平方厘米_(kgf/cm²)', '公斤力/平方米_(kgf/㎡)']
}]
},
speed: {
calc: {
'米/秒': '(x*1)_米/秒_(m/s)',
'千米/秒': '(x*1)/1000_千米/秒_(km/s)',
'千米/时': '(x*3.600000)_千米/时_(km/h)',
'光速': '(x*3.335641)/(Math.pow(10,9))_光速_(c)',
'马赫': '(x*2.938584)/1000_马赫_(mach)',
'英里/时': '(x*2.236936)_英里/时_(mile/h)',
'英寸/秒': '(x*39.370079)_英寸/秒_(in/s)'
},
init: {
'米/秒': '(x*1)_米/秒',
'千米/秒': '(x*1000)_米/秒',
'千米/时': '(x*277.777778)/1000_米/秒',
'光速': '(x*299792458)_米/秒',
'马赫': '(x*340.300000)_米/秒',
'英里/时': '(x*447.040000)/1000_米/秒',
'英寸/秒': '(x*25.400000)/1000_米/秒'
},
iu: '米/秒(m/s)',
group: [{
name: '',
list: ['米/秒_(m/s)', '千米/秒_(km/s)', '千米/时_(km/h)', '光速_(c)', '马赫_(mach)', '英里/时_(mile/h)', '英寸/秒_(in/s)']
}]
},
strength: {
calc: {
'': '(x*1)_牛_(N)',
'千牛': '(x*1)/1000_千牛_(kN)',
'千克力': '(x*101.971621)/1000_千克力_(kgf)',
'克力': '(x*101.971621)_克力_(gf)',
'公吨力': '(x*101.971621)/(Math.pow(10,6))_公吨力_(tf)',
'磅力': '(x*224.808943)/1000_磅力_(lbf)',
'千磅力': '(x*224.808943)/(Math.pow(10,6))_千磅力_(kip)',
'达因': '(x*100000)/1_达因_(dyn)'
},
init: {
'': '(x*1)_牛',
'千牛': '(x*1000)_牛',
'千克力': '(x*9.806650)_牛',
'克力': '(x*9.806650)/1000_牛',
'公吨力': '(x*9806.650000)_牛',
'磅力': '(x*4.448222)_牛',
'千磅力': '(x*4448.221615)_牛',
'达因': '(x*1)/100000_牛'
},
iu: '牛(N)',
group: [{
name: '',
list: ['牛_(N)', '千牛_(kN)', '千克力_(kgf)', '克力_(gf)', '公吨力_(tf)', '磅力_(lbf)', '千磅力_(kip)', '达因_(dyn)']
}]
},
temperature: {
calc: {
'摄氏度': '(x-273.15)/1_摄氏度_(℃)',
'华氏度': '32+((x-273.15)*9/5)_华氏度_(℉)',
'开氏度': '(x-273.15)+273.15_开氏度_(K)',
'兰氏度': '((x-273.15)+273.15)*1.8_兰氏度_(°R)',
'列氏度': '(x-273.15)/1.25_列氏度_(°Re)'
},
init: {
'摄氏度': '(x*1)+273.15_开氏度',
'华氏度': '(5*(x-32)/9)+273.15_开氏度',
'开氏度': '(x-273.15)+273.15_开氏度',
'兰氏度': '(x/1.8-273.15)+273.15_开氏度',
'列氏度': '(x*1.25)+273.15_开氏度'
},
iu: '开氏度(K)',
group: [{
name: '',
list: ['摄氏度_(℃)', '华氏度_(℉)', '开氏度_(K)', '兰氏度_(°R)', '列氏度_(°Re)']
}]
},
time: {
calc: {
'': '(x*31.709792)/(Math.pow(10,9))_年_(yr)',
'': '(x*1.653439)/(Math.pow(10,6))_周_(week)',
'': '(x*11.574074)/(Math.pow(10,6))_天_(d)',
'': '(x*277.777778)/(Math.pow(10,6))_时_(h)',
'': '(x*16.6666667)/1000_分_(min)',
'': '(x*1)_秒_(s)',
'毫秒': '(x*1000)_毫秒_(ms)',
'微秒': '(x*1000000)_微秒_(μs)',
'纳秒': '(x*1000000000)_纳秒_(ns)'
},
init: {
'': '(x*31536000)_秒',
'': '(x*604800)_秒',
'': '(x*86400)_秒',
'': '(x*3600)_秒',
'': '(x*60)_秒',
'': '(x*1)_秒',
'毫秒': '(x*1)/1000_秒',
'微秒': '(x*1)/1000000_秒',
'纳秒': '(x*1)/1000000000_秒'
},
iu: '秒(s)',
group: [{
name: '',
list: ['年_(yr)', '周_(week)', '天_(d)', '时_(h)', '分_(min)', '秒_(s)', '毫秒_(ms)', '微秒_(μs)', '纳秒_(ns)']
}],
special: {
'时-分': '(x*60)_分_(min)'
}
},
volume: {
calc: {
'立方米': '(x*1)/1_立方米_(m³)',
'立方分米': '(x*1)/0.001_立方分米_(dm³)',
'立方厘米': '(x*1)/0.000001_立方厘米_(cm³)',
'立方毫米': '(x*1)/0.000000001_立方毫米_(mm³)',
'': '(x*1)/0.001_升_(l)',
'分升': '(x*1)/0.0001_分升_(dl)',
'毫升': '(x*1)/0.000001_毫升_(ml)',
'厘升': '(x*1)/0.00001_厘升_(cl)',
'公石': '(x*1)/0.1_公石_(hl)',
'立方英尺': '(x*1)/0.0283168_立方英尺_(cu ft)',
'立方英寸': '(x*1)/(0.0283168/1728)_立方英寸_(cu in)',
'立方码': '(x*1)/(0.0283168*27)_立方码_(cu yd)',
'亩英尺': '(x*1)/(43560*1728*0.016387064/1000)_亩英尺',
'英制加仑': '(x*1)/0.00454609188_英制加仑_(uk gal)',
'美制加仑': '(x*1)/(231*0.016387064/1000)_美制加仑_(us gal)',
'微升': '(x*1)/0.000000001_微升_(ul)',
'英制液体盎司': '(x*1)/(0.000001*28.41)_英制液体盎司_(oz)',
'美制液体盎司': '(x*1)/(0.000001*29.57)_美制液体盎司_(oz)'
},
init: {
'立方米': '(x*1)/1_立方米',
'立方分米': '(x*0.001)/1_立方米',
'立方厘米': '(x*0.000001)/1_立方米',
'立方毫米': '(x*0.000000001)/1_立方米',
'': '(x*0.001)/1_立方米',
'分升': '(x*0.0001)/1_立方米',
'毫升': '(x*0.000001)/1_立方米',
'厘升': '(x*0.00001)/1_立方米',
'公石': '(x*0.1)/1_立方米',
'立方英尺': '(x*0.0283168)/1_立方米',
'立方英寸': '(x*(0.0283168/1728))/1_立方米',
'立方码': '(x*(0.0283168*27))/1_立方米',
'亩英尺': '(x*(43560*1728*0.016387064/1000))/1_立方米',
'英制加仑': '(x*0.00454609188)/1_立方米',
'美制加仑': '(x*(231*0.016387064/1000))/1_立方米',
'微升': '(x*0.000000001)/1_立方米',
'英制液体盎司': '(x*0.000001*28.41)/1_立方米',
'美制液体盎司': '(x*0.000001*29.57)/1_立方米'
},
iu: '立方米(m³)',
group: [{
name: '公制',
list: ['立方米_(m³)', '立方分米_(dm³)', '立方厘米_(cm³)', '立方毫米_(mm³)', '升_(l)', '分升_(dl)', '毫升_(ml)', '厘升_(cl)', '公石_(hl)', '微升_(ul)']
}, {
name: '英制',
list: ['立方英尺_(cu ft)', '立方英寸_(cu in)', '立方码_(cu yd)', '亩英尺', '英制加仑_(uk gal)', '美制加仑_(us gal)', '英制液体盎司_(oz)', '美制液体盎司_(oz)']
}]
},
weight: {
calc: {
'千克': '(x*1)/1_千克_(kg)',
'': '(x*1)/0.001_克_(g)',
'毫克': '(x*1)/0.000001_毫克_(mg)',
'微克': '(x*1)/0.000000001_微克_(μg)',
'': '(x*1)/1000_吨_(t)',
'公担': '(x*1)/100_公担_(q)',
'': '(x*1)/0.45359237_磅_(lb)',
'盎司': '(x*1)/(0.45359237/16)_盎司_(oz)',
'克拉': '(x*1)/0.0002_克拉_(ct)',
'格令': '(x*1)/(0.45359237/7000)_格令_(gr)',
'长吨': '(x*1)/(0.45359237*2240)_长吨_(lt)',
'短吨': '(x*1)/(0.45359237*2000)_短吨_(st)',
'英担': '(x*1)/(0.45359237*112)_英担',
'美担': '(x*1)/(0.45359237*100)_美担',
'英石': '(x*1)/(0.45359237*14)_英石_(st)',
'打兰': '(x*1)/(0.45359237/256)_打兰_(dr)',
'': '(x*1)/50_担',
'': '(x*1)/0.5_斤',
'': '(x*1)/0.05_两',
'': '(x*1)/0.005_钱',
'': '(x*1)/0.000002_分'
},
init: {
'千克': '(x*1)/1_千克',
'': '(x*0.001)/1_千克',
'毫克': '(x*0.000001)/1_千克',
'微克': '(x*0.000000001)/1_千克',
'': '(x*1000)/1_千克',
'公担': '(x*100)/1_千克',
'': '(x*0.45359237)/1_千克',
'盎司': '(x*(0.45359237/16))/1_千克',
'克拉': '(x*0.0002)/1_千克',
'格令': '(x*(0.45359237/7000))/1_千克',
'长吨': '(x*(0.45359237*2240))/1_千克',
'短吨': '(x*(0.45359237*2000))/1_千克',
'英担': '(x*(0.45359237*112))/1_千克',
'美担': '(x*(0.45359237*100))/1_千克',
'英石': '(x*(0.45359237*14))/1_千克',
'打兰': '(x*(0.45359237/256))/1_千克',
'': '(x*50)/1_千克',
'': '(x*0.5)/1_千克',
'': '(x*0.05)/1_千克',
'': '(x*0.005)/1_千克',
'': '(x*0.000002)/1_千克'
},
iu: '千克(kg)',
group: [{
name: '公制',
list: ['千克_(kg)', '克_(g)', '毫克_(mg)', '微克_(μg)', '吨_(t)', '公担_(q)', '克拉_(ct)', '分_(point)']
}, {
name: '英制',
list: ['磅_(lb)', '盎司_(oz)', '克拉_(ct)', '格令_(gr)', '长吨_(lt)', '短吨_(st)', '英担', '美担', '英石_(st)', '打兰_(dr)']
}, {
name: '市制',
list: ['', '', '', '']
}]
},
work: {
calc: {
'焦耳': '(x*1)/1_焦耳_(J)',
'公斤·米': '(x*1)/9.80392157_公斤·米_(kg·m)',
'米制马力·时': '(x*1)/(9.80665*75*3600)_米制马力·时_(ps·h)',
'英制马力·时': '(x*1)/(745.699872*3600)_英制马力·时_(hp·h)',
'千瓦·时': '(x*1)/3600000_千瓦·时_(kW·h)',
'': '(x*1)/3600000_度_(kW·h)',
'': '(x*1)/4.185851820846_卡_(cal)',
'千卡': '(x*1)/4185.851820846_千卡_(kcal)',
'英热单位': '(x*1)/1055.05585262_英热单位_(btu)',
'英尺·磅': '(x*1)/1.3557483731_英尺·磅_(ft·lb)',
'千焦': '(x*1)/1000_千焦_(kJ)'
},
init: {
'焦耳': '(x*1)/1_焦耳',
'公斤·米': '(x*9.80392157)/1_焦耳',
'米制马力·时': '(x*(9.80665*75*3600))/1_焦耳',
'英制马力·时': '(x*(745.699872*3600))/1_焦耳',
'千瓦·时': '(x*3600000)/1_焦耳',
'': '(x*3600000)/1_焦耳',
'': '(x*4.185851820846)/1_焦耳',
'千卡': '(x*4185.851820846)/1_焦耳',
'英热单位': '(x*1055.05585262)/1_焦耳',
'英尺·磅': '(x*1.3557483731)/1_焦耳',
'千焦': '(x*1000)/1_焦耳'
},
iu: '焦耳(J)',
group: [{
name: '焦耳(J)',
list: ['焦耳_(J)', '公斤·米_(kg·m)', '米制马力·时_(ps·h)', '英制马力·时_(hp·h)', '千瓦·时_(kW·h)', '度_(kW·h)', '卡_(cal)', '千卡_(kcal)', '英热单位_(btu)', '英尺·磅_(ft·lb)', '千焦_(kJ)']
}]
}
}
/*
* 计算
* @uType String, not null, 单位类型(如length, time)
* @num Number, not null, 输入值
* @uFrom String, not null, 原单位
* @uTo String, not null, 目标单位
* @keepOrigin Boolean, null, 保持原始结果(不进行格式化),默认false
*
* return Object, 计算结果
*/
const calc = function (uType, num, uFrom, uTo, keepOrigin) {
let rs, unit = conf[uType],
unitFirst, unitSecond
if (uFrom === uTo) {
rs = explain(num, unit.calc[uFrom])
//中文单位
unitFirst = rs[1]
//英文单位,有的可能没有
unitSecond = rs[2] || ''
return {
num: keepOrigin ? num : format(num),
unitFirst: unitFirst,
unitSecond: unitSecond ? unitSecond : ''
}
}
let init = explain(num, unit.init[uFrom]),
special = unit.special && unit.special[uFrom + '-' + uTo] || null
//对某一类的某一单位做特殊算法处理
if (special) {
rs = explain(num, special)
} else {
rs = explain((new Function('return ' + init[0]))(), unit.calc[uTo])
}
//计算出最终结果(eval转换后的公式)
num = (new Function('return ' + rs[0]))()
//中文单位
unitFirst = rs[1]
//英文单位,有的可能没有
unitSecond = rs[2] || ''
return {
num: keepOrigin ? num : format(num),
unitFirst: unitFirst,
unitSecond: unitSecond ? unitSecond : ''
}
}
/*
* 对结果进行格式化(内部使用)
*/
const format = function (num) {
//格式策略,整体不超过14位
let strNum = num + '',
isFloat = false,
arr, intPart, decPart
//只有包括.且整数位小于14位才认为是浮点数(便于以后格式化)
if (strNum.indexOf('.') > -1) {
let match = strNum.match(/\.\d+e[+-](\d+)$/)
if (match && match[1]) {
isFloat = match[1] * 1 < (MAX_NUM - 1) ? true : false
} else {
isFloat = true
}
}
//小数处理逻辑
if (isFloat) {
//-1 ~ 1之间的小数
if (num > -1 && num < 1 && num != 0) {
//小数位开始有5个及以上0,转换为科学计数法,计数小数保留四位
if (Math.abs(num) < 0.00001) {
num = exponential(num, EXPONENTIAL_NUM)
} else {
//保留7位小数
num = num.toFixed(DECIMAL_NUM) * 1
}
} else {
arr = strNum.split('.')
intPart = arr[0]
decPart = arr[1]
//整体超长
if (strNum.length > MAX_NUM) {
//整数部分超长
if (intPart.length >= MAX_NUM) {
num = exponential(num, EXPONENTIAL_NUM)
} else {
if (intPart.length < DECIMAL_NUM - 1) {
num = num.toFixed(DECIMAL_NUM) * 1
} else {
num = num.toFixed(MAX_NUM - intPart.length - 1) * 1
}
}
} else {
if (decPart.length > DECIMAL_NUM) {
num = num.toFixed(DECIMAL_NUM) * 1
}
}
}
} else {
if (strNum.length > MAX_NUM) {
num = exponential(num, EXPONENTIAL_NUM)
}
}
return num + ''
}
/*
* 转换公式的快捷函数(内部使用)
*/
const explain = function (num, formula) {
return formula.replace('x', num).split('_')
}
/*
* 科学计数法快捷函数(内部使用)
*/
const exponential = function (num, n) {
//保留科学计数法小数后n位
let numExp = num.toExponential(n)
//如果计数小数位均为0,去掉
return (numExp + '').match(new RegExp('.0{' + n + '}e')) ? num.toExponential(0) : numExp
}
export default {
//返回某一类的所有配置项
getData: function (uType) {
return conf[uType]
},
//计算,返回格式化后的结果
calc: function (uType, x, uFrom, uTo) {
return calc(uType, x, uFrom, uTo)
},
//计算,返回原始结果
calcOrigin: function (uType, x, uFrom, uTo) {
return calc(uType, x, uFrom, uTo, true)
},
//格式化
format: function (num) {
return format(num)
},
list: [
{ key: 'length', name: '长度' },
{ key: 'area', name: '面积' },
{ key: 'volume', name: '体积' },
{ key: 'weight', name: '质量' },
{ key: 'temperature', name: '温度' },
{ key: 'pressure', name: '压力' },
{ key: 'power', name: '功率' },
{ key: 'work', name: '功/能/热' },
{ key: 'density', name: '密度' },
{ key: 'strength', name: '' },
{ key: 'time', name: '时间' },
{ key: 'speed', name: '速度' },
{ key: 'byte', name: '数据存储' },
{ key: 'angle', name: '角度' }
]
}
\ No newline at end of file
<template>
<div>
<option-block style="text-align: center">
<FormItem>
<ButtonGroup>
<Button :type="current.type === v.key ? 'success' : 'primary'"
@click="handle(v.key)"
v-for="v in unitLists"
style="padding: 5px 10px 6px;"
:key="v.key">{{v.name}}
</Button>
</ButtonGroup>
</FormItem>
</option-block>
<option-block style="text-align: center">
<FormItem>
<Input v-model="current.input" type="number"></Input>
</FormItem>
<FormItem>
<Select v-model="current.from" style="width:200px">
<template v-if="unitGroup[0].name !== ''">
<OptionGroup :label="group.name" v-for="(group,gk) in unitGroup" :key="gk">
<Option v-for="(unit,k) in group.list" :value="unit" :key="k">{{ unitFormat(unit) }}</Option>
</OptionGroup>
</template>
<template v-else>
<Option v-for="(unit,k) in unitGroup[0].list" :value="unit" :key="k">{{ unitFormat(unit) }}</Option>
</template>
</Select>
</FormItem>
<FormItem>
<Button icon="md-code-working" @click="exchange()"></Button>
</FormItem>
<FormItem>
<Select v-model="current.to" style="width:200px">
<Option value="all">全部</Option>
<template v-if="unitGroup[0].name !== ''">
<OptionGroup :label="group.name" v-for="(group,gk) in unitGroup" :key="gk">
<Option v-for="(unit,k) in group.list" :value="unit" :key="k">{{ unitFormat(unit) }}</Option>
</OptionGroup>
</template>
<template v-else>
<Option v-for="(unit,k) in unitGroup[0].list" :value="unit" :key="k">
{{ unitFormat(unit) }}
</Option>
</template>
</Select>
</FormItem>
</option-block>
<div v-if="isShowResult" style="padding: 0 30px">
<template v-if="current.to !== 'all' && assignResult">
<div style="text-align: center;margin-top: 30px;font-size: 18px;font-weight: bold">
<span style="color: red">{{current.input}}</span> {{unitFormat(current.from)}} = <span style="color: red">{{assignResult.num}}</span>
{{unitFormat(current.to)}}
</div>
</template>
<CellGroup v-if="current.to === 'all'">
<Row :gutter="16">
<Col span="12" v-for="(item,k) in result" :key="k">
<Cell :title="item.num" :extra="unitFormat(item.unit)"/>
</Col>
</Row>
</CellGroup>
</div>
</div>
</template>
<script>
import U from './library/unit'
export default {
created () {
let history = this.$getToolData()
this.current.type = history['type'] ? history['type'] : 'temperature'
this.getToolData()
},
computed: {
unitGroup () {
return U.getData(this.current.type).group
},
isShowResult () {
return this.current.from && this.current.type && this.current.input
},
result () {
let r = []
if (this.isShowResult) {
this.saveToolData()
this.unitGroup.forEach((Group) => {
Group.list.forEach((unit) => {
let temp = U.calc(
this.current.type,
this.current.input,
this.current.from.split('_')[0],
unit.split('_')[0]
)
r.push({
unit: unit,
num: temp.num,
})
})
})
}
return r
},
assignResult () {
if (this.current.to === 'all') {
return {}
}
let unit = this.current.to
for (let i = 0; i < this.result.length; i++) {
if (this.result[i].unit === unit) {
return this.result[i]
}
}
console.log(this.result)
console.log(unit)
console.error('无对应数据')
return null
}
},
methods: {
handle (v) {
this.current.type = v
this.getToolData()
},
saveToolData () {
let history = this.$getToolData()
history.type = this.current.type
history.data = history.data ? history.data : {}
history.data[history.type] = {
from: this.current.from,
to: this.current.to,
input: this.current.input,
}
this.$saveToolData(history)
},
getToolData () {
console.log(this.$getToolData())
let type = this.current.type
let history = this.$getToolData()
let unitHistory = history['data'] && history['data'][type] ? history['data'][type] : null
this.current.from = unitHistory ? unitHistory.from : ''
this.current.to = unitHistory ? unitHistory.to : 'all'
this.current.input = unitHistory ? unitHistory.input : ''
},
unitFormat (unit) {
return unit.split('_').join('')
},
exchange () {
if (this.current.to === 'all') {
return
}
if (!this.current.from || !this.current.to) {
return
}
let temp = this.current.from
this.current.from = this.current.to
this.current.to = temp
}
},
data () {
return {
current: {
type: '',
from: '',
to: '',
input: '',
},
unitLists: U.list,
}
},
}
</script>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册