mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 12:02:51 +00:00
build
This commit is contained in:
parent
9f6fffbe6b
commit
d73239b274
15
CHANGELOG.md
15
CHANGELOG.md
@ -2,6 +2,21 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [1.0.0]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- 修复录音文件转文字后无法切换翻译的问题
|
||||
|
||||
### Features
|
||||
|
||||
- 新增应用商店
|
||||
- 检查应用是否已安装
|
||||
|
||||
### Performance
|
||||
|
||||
- 更新AI默认模型列表
|
||||
|
||||
## [0.47.7]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
91
electron/build.js
vendored
91
electron/build.js
vendored
@ -7,6 +7,7 @@ const ora = require('ora');
|
||||
const yauzl = require('yauzl');
|
||||
const axios = require('axios');
|
||||
const FormData =require('form-data');
|
||||
const tar = require('tar');
|
||||
const utils = require('./utils');
|
||||
const config = require('../package.json')
|
||||
const env = require('dotenv').config({ path: './.env' })
|
||||
@ -180,18 +181,98 @@ async function detectAndDownloadUpdater() {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载并解压Drawio
|
||||
* @param drawioDestDir
|
||||
*/
|
||||
async function downloadAndExtractDrawio(drawioDestDir) {
|
||||
const tempDir = path.resolve(__dirname, ".temp");
|
||||
const tarFilePath = path.join(tempDir, "drawio-latest.tar.gz");
|
||||
|
||||
try {
|
||||
// 创建临时目录
|
||||
if (!fs.existsSync(tempDir)) {
|
||||
fs.mkdirSync(tempDir, { recursive: true });
|
||||
}
|
||||
|
||||
const spinner = ora('下载最新的Drawio文件...').start();
|
||||
|
||||
// 1. 下载tar.gz文件
|
||||
const response = await axios({
|
||||
url: 'https://appstore.dootask.com/api/v1/download/drawio/latest',
|
||||
method: 'GET',
|
||||
responseType: 'stream'
|
||||
});
|
||||
|
||||
const writer = fs.createWriteStream(tarFilePath);
|
||||
response.data.pipe(writer);
|
||||
|
||||
await new Promise((resolve, reject) => {
|
||||
writer.on('finish', resolve);
|
||||
writer.on('error', reject);
|
||||
});
|
||||
|
||||
spinner.text = '解压Drawio文件...';
|
||||
|
||||
// 2. 解压tar.gz文件到临时目录
|
||||
const extractDir = path.join(tempDir, "extracted");
|
||||
if (fs.existsSync(extractDir)) {
|
||||
fse.removeSync(extractDir);
|
||||
}
|
||||
fs.mkdirSync(extractDir, { recursive: true });
|
||||
|
||||
await tar.x({
|
||||
file: tarFilePath,
|
||||
cwd: extractDir
|
||||
});
|
||||
|
||||
// 3. 查找符合版本号格式的文件夹
|
||||
const files = fs.readdirSync(extractDir);
|
||||
const versionRegex = /^v?\d+(\.\d+){1,2}$/;
|
||||
const versionDir = files.find(file => {
|
||||
const filePath = path.join(extractDir, file);
|
||||
return fs.lstatSync(filePath).isDirectory() && versionRegex.test(file);
|
||||
});
|
||||
|
||||
if (!versionDir) {
|
||||
throw new Error('未找到符合版本号格式的文件夹');
|
||||
}
|
||||
|
||||
// 4. 查找webapp文件夹
|
||||
const versionPath = path.join(extractDir, versionDir);
|
||||
const webappPath = path.join(versionPath, 'webapp');
|
||||
|
||||
if (!fs.existsSync(webappPath)) {
|
||||
throw new Error('未找到webapp文件夹');
|
||||
}
|
||||
|
||||
// 5. 复制webapp文件夹内容到目标目录
|
||||
fse.copySync(webappPath, drawioDestDir);
|
||||
|
||||
spinner.succeed('Drawio文件下载并解压完成');
|
||||
|
||||
// 清理临时文件
|
||||
fse.removeSync(tempDir);
|
||||
|
||||
} catch (error) {
|
||||
console.warn('下载Drawio失败,使用默认版本:', error.message);
|
||||
// 清理临时文件
|
||||
if (fs.existsSync(tempDir)) {
|
||||
fse.removeSync(tempDir);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 克隆 Drawio
|
||||
* @param systemInfo
|
||||
*/
|
||||
function cloneDrawio(systemInfo) {
|
||||
async function cloneDrawio(systemInfo) {
|
||||
child_process.execSync("git submodule update --quiet --init --depth=1", {stdio: "inherit"});
|
||||
const drawioSrcDir = path.resolve(__dirname, "../resources/drawio/src/main/webapp");
|
||||
const drawioCoverDir = path.resolve(__dirname, "../docker/drawio/webapp");
|
||||
const drawioDestDir = path.resolve(electronDir, "drawio/webapp");
|
||||
fse.copySync(drawioSrcDir, drawioDestDir)
|
||||
fse.copySync(drawioCoverDir, drawioDestDir)
|
||||
//
|
||||
await downloadAndExtractDrawio(drawioDestDir);
|
||||
const preConfigFile = path.resolve(drawioDestDir, "js/PreConfig.js");
|
||||
if (!fs.existsSync(preConfigFile)) {
|
||||
console.error("克隆 Drawio 失败!");
|
||||
@ -498,7 +579,7 @@ async function startBuild(data) {
|
||||
}
|
||||
console.log("===============\n");
|
||||
// drawio
|
||||
cloneDrawio(systemInfo)
|
||||
await cloneDrawio(systemInfo)
|
||||
// updater
|
||||
if (!updaterChecked) {
|
||||
updaterChecked = true
|
||||
|
||||
@ -52,6 +52,7 @@
|
||||
"fs-extra": "^11.2.0",
|
||||
"pdf-lib": "^1.17.1",
|
||||
"request": "^2.88.2",
|
||||
"tar": "^7.4.3",
|
||||
"yauzl": "^3.2.0"
|
||||
},
|
||||
"trayIcon": {
|
||||
@ -83,7 +84,9 @@
|
||||
{
|
||||
"from": "updater/${os}/${arch}",
|
||||
"to": "Resources/updater",
|
||||
"filter": ["**/*"]
|
||||
"filter": [
|
||||
"**/*"
|
||||
]
|
||||
}
|
||||
],
|
||||
"npmRebuild": false,
|
||||
|
||||
@ -30094,5 +30094,17 @@
|
||||
"fr": "Groupe OKR",
|
||||
"id": "Grup OKR",
|
||||
"ru": "Группа OKR"
|
||||
},
|
||||
{
|
||||
"key": "应用「*」未安装",
|
||||
"zh": "",
|
||||
"zh-CHT": "應用「*」未安裝",
|
||||
"en": "The application '*' is not installed",
|
||||
"ko": "'*' 응용 프로그램이 설치되지 않았습니다",
|
||||
"ja": "アプリ「*」はインストールされていません",
|
||||
"de": "Die Anwendung „*“ ist nicht installiert",
|
||||
"fr": "L'application « * » n'est pas installée",
|
||||
"id": "Aplikasi '*' tidak terpasang",
|
||||
"ru": "Приложение «*» не установлено"
|
||||
}
|
||||
]
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "DooTask",
|
||||
"version": "0.47.7",
|
||||
"codeVerson": 192,
|
||||
"version": "1.0.0",
|
||||
"codeVerson": 193,
|
||||
"description": "DooTask is task management system.",
|
||||
"scripts": {
|
||||
"start": "./cmd dev",
|
||||
|
||||
1
public/js/build/404.89497d34.js
vendored
1
public/js/build/404.89497d34.js
vendored
@ -1 +0,0 @@
|
||||
import{n as m}from"./app.f486e34c.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var p=function(){var t=this,r=t.$createElement;return t._self._c,t._m(0)},e=[function(){var t=this,r=t.$createElement,i=t._self._c||r;return i("div",{staticClass:"page-404"},[i("div",{staticClass:"flex-center position-ref full-height"},[i("div",{staticClass:"code"},[t._v("404")]),i("div",{staticClass:"message"},[t._v("Not Found")])])])}];const s={},o={};var _=m(s,p,e,!1,n,"7d7154a8",null,null);function n(t){for(let r in o)this[r]=o[r]}var it=function(){return _.exports}();export{it as default};
|
||||
1
public/js/build/404.90093645.js
vendored
Normal file
1
public/js/build/404.90093645.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{n as m}from"./app.47eab973.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var p=function(){var t=this,r=t.$createElement;return t._self._c,t._m(0)},e=[function(){var t=this,r=t.$createElement,i=t._self._c||r;return i("div",{staticClass:"page-404"},[i("div",{staticClass:"flex-center position-ref full-height"},[i("div",{staticClass:"code"},[t._v("404")]),i("div",{staticClass:"message"},[t._v("Not Found")])])])}];const s={},o={};var _=m(s,p,e,!1,n,"7d7154a8",null,null);function n(t){for(let r in o)this[r]=o[r]}var tt=function(){return _.exports}();export{tt as default};
|
||||
8
public/js/build/@micro-zoe.c2e1472d.js
vendored
8
public/js/build/@micro-zoe.c2e1472d.js
vendored
File diff suppressed because one or more lines are too long
15
public/js/build/@micro-zoe.f728a9f4.js
vendored
Normal file
15
public/js/build/@micro-zoe.f728a9f4.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
public/js/build/AceEditor.5c35b57b.js
vendored
Normal file
1
public/js/build/AceEditor.5c35b57b.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/AceEditor.f2872f7b.js
vendored
1
public/js/build/AceEditor.f2872f7b.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/CheckinExport.4e1103eb.js
vendored
Normal file
1
public/js/build/CheckinExport.4e1103eb.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/CheckinExport.ac31c52c.js
vendored
1
public/js/build/CheckinExport.ac31c52c.js
vendored
File diff suppressed because one or more lines are too long
5
public/js/build/DialogWrapper.6fc66bf5.js
vendored
Normal file
5
public/js/build/DialogWrapper.6fc66bf5.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
public/js/build/DialogWrapper.a6bf3506.js
vendored
5
public/js/build/DialogWrapper.a6bf3506.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/Drawio.7f1d66ed.js
vendored
1
public/js/build/Drawio.7f1d66ed.js
vendored
@ -1 +0,0 @@
|
||||
import{m as s}from"./vuex.cc7cb26e.js";import{I as m}from"./IFrame.8edb85e2.js";import{n as p,l as o}from"./app.f486e34c.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var l=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"drawio-content"},[i("IFrame",{ref:"frame",staticClass:"drawio-iframe",attrs:{src:t.url},on:{"on-message":t.onMessage}}),t.loadIng?i("div",{staticClass:"drawio-loading"},[i("Loading")],1):t._e()],1)},d=[];const u={name:"Drawio",components:{IFrame:m},props:{value:{type:Object,default:function(){return{}}},title:{type:String,default:""},readOnly:{type:Boolean,default:!1}},data(){return{loadIng:!0,url:null,bakData:""}},created(){let t=o;switch(o){case"zh-CHT":t="zh-tw";break}let e=this.readOnly?1:0,i=this.readOnly?0:1,n=this.themeName==="dark"?"dark":"kennedy",r=`?title=${this.title?encodeURIComponent(this.title):""}&chrome=${i}&lightbox=${e}&ui=${n}&lang=${t}&offline=1&pwa=0&embed=1&noLangIcon=1&noExitBtn=1&noSaveBtn=1&saveAndExit=0&spin=1&proto=json`;this.$Electron?this.url=$A.originUrl(`drawio/webapp/index.html${r}`):this.url=$A.mainUrl(`drawio/webapp/${r}`)},mounted(){window.addEventListener("message",this.handleMessage)},beforeDestroy(){window.removeEventListener("message",this.handleMessage)},watch:{value:{handler(t){this.bakData!=$A.jsonStringify(t)&&(this.bakData=$A.jsonStringify(t),this.updateContent())},deep:!0}},computed:{...s(["themeName"])},methods:{formatZoom(t){return t+"%"},updateContent(){this.$refs.frame.postMessage(JSON.stringify({action:"load",autosave:1,xml:this.value.xml}))},onMessage(t){switch(t.event){case"init":this.loadIng=!1,this.updateContent();break;case"load":typeof this.value.xml=="undefined"&&this.$refs.frame.postMessage(JSON.stringify({action:"template"}));break;case"autosave":const e={xml:t.xml};this.bakData=$A.jsonStringify(e),this.$emit("input",e);break;case"save":this.$emit("saveData");break}}}},a={};var c=p(u,l,d,!1,h,"39021859",null,null);function h(t){for(let e in a)this[e]=a[e]}var pt=function(){return c.exports}();export{pt as default};
|
||||
1
public/js/build/Drawio.e622674e.js
vendored
Normal file
1
public/js/build/Drawio.e622674e.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{m as s}from"./vuex.cc7cb26e.js";import{I as m}from"./IFrame.4e2ca77f.js";import{n as p,l as o}from"./app.47eab973.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var l=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"drawio-content"},[i("IFrame",{ref:"frame",staticClass:"drawio-iframe",attrs:{src:t.url},on:{"on-message":t.onMessage}}),t.loadIng?i("div",{staticClass:"drawio-loading"},[i("Loading")],1):t._e()],1)},d=[];const u={name:"Drawio",components:{IFrame:m},props:{value:{type:Object,default:function(){return{}}},title:{type:String,default:""},readOnly:{type:Boolean,default:!1}},data(){return{loadIng:!0,url:null,bakData:""}},created(){let t=o;switch(o){case"zh-CHT":t="zh-tw";break}let e=this.readOnly?1:0,i=this.readOnly?0:1,n=this.themeName==="dark"?"dark":"kennedy",r=`?title=${this.title?encodeURIComponent(this.title):""}&chrome=${i}&lightbox=${e}&ui=${n}&lang=${t}&offline=1&pwa=0&embed=1&noLangIcon=1&noExitBtn=1&noSaveBtn=1&saveAndExit=0&spin=1&proto=json`;this.$Electron?this.url=$A.originUrl(`drawio/webapp/index.html${r}`):this.url=$A.mainUrl(`drawio/webapp/${r}`)},mounted(){window.addEventListener("message",this.handleMessage)},beforeDestroy(){window.removeEventListener("message",this.handleMessage)},watch:{value:{handler(t){this.bakData!=$A.jsonStringify(t)&&(this.bakData=$A.jsonStringify(t),this.updateContent())},deep:!0}},computed:{...s(["themeName"])},methods:{formatZoom(t){return t+"%"},updateContent(){this.$refs.frame.postMessage(JSON.stringify({action:"load",autosave:1,xml:this.value.xml}))},onMessage(t){switch(t.event){case"init":this.loadIng=!1,this.updateContent();break;case"load":typeof this.value.xml=="undefined"&&this.$refs.frame.postMessage(JSON.stringify({action:"template"}));break;case"autosave":const e={xml:t.xml};this.bakData=$A.jsonStringify(e),this.$emit("input",e);break;case"save":this.$emit("saveData");break}}}},a={};var c=p(u,l,d,!1,h,"39021859",null,null);function h(t){for(let e in a)this[e]=a[e]}var st=function(){return c.exports}();export{st as default};
|
||||
1
public/js/build/FileContent.57d67e27.js
vendored
Normal file
1
public/js/build/FileContent.57d67e27.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/FileContent.5afe7299.js
vendored
1
public/js/build/FileContent.5afe7299.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/FileContent.82971c6a.css
vendored
Normal file
1
public/js/build/FileContent.82971c6a.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.file-history .ivu-page[data-v-c226e2f6]{margin-top:12px;display:flex;align-items:center;justify-content:center}
|
||||
1
public/js/build/FileContent.aa20878c.css
vendored
1
public/js/build/FileContent.aa20878c.css
vendored
@ -1 +0,0 @@
|
||||
.file-history .ivu-page[data-v-8d730b36]{margin-top:12px;display:flex;align-items:center;justify-content:center}
|
||||
1
public/js/build/FilePreview.2fb4682c.js
vendored
1
public/js/build/FilePreview.2fb4682c.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/FilePreview.c9367567.js
vendored
Normal file
1
public/js/build/FilePreview.c9367567.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
import{n}from"./app.f486e34c.js";var i=function(){var e=this,s=e.$createElement,r=e._self._c||s;return r("iframe",{directives:[{name:"show",rawName:"v-show",value:e.src,expression:"src"}],ref:"iframe",attrs:{src:e.src}})},a=[];const o={name:"IFrame",props:{src:{type:String,default:""}},mounted(){this.$refs.iframe.addEventListener("load",this.handleLoad),window.addEventListener("message",this.handleMessage)},beforeDestroy(){this.$refs.iframe.removeEventListener("load",this.handleLoad),window.removeEventListener("message",this.handleMessage)},methods:{handleLoad(){this.$emit("on-load")},handleMessage({data:e,source:s}){var r;s===((r=this.$refs.iframe)==null?void 0:r.contentWindow)&&(e=$A.jsonParse(e),e.source==="fileView"&&e.action==="picture"&&this.$store.dispatch("previewImage",{index:e.params.index,list:e.params.array}),this.$emit("on-message",e))},postMessage(e,s="*"){this.$refs.iframe&&this.$refs.iframe.contentWindow.postMessage(e,s)}}},t={};var m=n(o,i,a,!1,c,null,null,null);function c(e){for(let s in t)this[s]=t[s]}var l=function(){return m.exports}();export{l as I};
|
||||
import{n}from"./app.47eab973.js";var i=function(){var e=this,s=e.$createElement,r=e._self._c||s;return r("iframe",{directives:[{name:"show",rawName:"v-show",value:e.src,expression:"src"}],ref:"iframe",attrs:{src:e.src}})},a=[];const o={name:"IFrame",props:{src:{type:String,default:""}},mounted(){this.$refs.iframe.addEventListener("load",this.handleLoad),window.addEventListener("message",this.handleMessage)},beforeDestroy(){this.$refs.iframe.removeEventListener("load",this.handleLoad),window.removeEventListener("message",this.handleMessage)},methods:{handleLoad(){this.$emit("on-load")},handleMessage({data:e,source:s}){var r;s===((r=this.$refs.iframe)==null?void 0:r.contentWindow)&&(e=$A.jsonParse(e),e.source==="fileView"&&e.action==="picture"&&this.$store.dispatch("previewImage",{index:e.params.index,list:e.params.array}),this.$emit("on-message",e))},postMessage(e,s="*"){this.$refs.iframe&&this.$refs.iframe.contentWindow.postMessage(e,s)}}},t={};var m=n(o,i,a,!1,c,null,null,null);function c(e){for(let s in t)this[s]=t[s]}var l=function(){return m.exports}();export{l as I};
|
||||
File diff suppressed because one or more lines are too long
1
public/js/build/MicroApps.2c55da8b.js
vendored
1
public/js/build/MicroApps.2c55da8b.js
vendored
@ -1 +0,0 @@
|
||||
import{V as p}from"./vue.fd9b772e.js";import{s,U as o,b as r,l as n,n as h}from"./app.f486e34c.js";import{m as l}from"./vuex.cc7cb26e.js";import{u as d,E as u}from"./@micro-zoe.c2e1472d.js";import{D as m}from"./DialogWrapper.a6bf3506.js";import{i as c}from"./view-design-hi.18b9f7fe.js";var f=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"page-microapp"},[e.showSpin?a("transition",{attrs:{name:"microapp-load"}},[a("div",{staticClass:"microapp-load"},[a("Loading")],1)]):e._e(),e.url&&!e.loading?a("micro-app",{attrs:{name:e.name,url:e.url,inline:"","keep-alive":"",disableSandbox:"",data:e.appData},on:{created:e.handleCreate,beforemount:e.handleBeforeMount,mounted:e.handleMount,unmount:e.handleUnmount,error:e.handleError,datachange:e.handleDataChange}}):e._e()],1)},g=[];const w={name:"MicroApps",props:{name:{type:String,default:"micro-app"},url:{type:String,default:""},path:{type:String,default:""},datas:{type:Object,default:()=>{}}},data(){return{showSpin:!1,loading:!1,appData:{}}},mounted(){this.showSpin=!0,this.appData=this.getAppData},watch:{loading(e){e&&(this.showSpin=!0)},path(e){this.appData={path:e}},datas:{handler(e){this.appData=e},deep:!0},$route:{handler(e){(e.name=="manage-apps"||e.name=="single-apps")&&(this.appData={path:e.hash||e.fullPath})},immediate:!0},userToken(e){this.appData=this.getAppData,e?this.loading=!1:(d({destroy:!0}),this.loading=!0)}},computed:{...l(["userInfo","themeName"]),getAppData(){return{type:"init",url:this.url,vues:{Vue:p,store:s,components:{DialogWrapper:m,UserSelect:o,DatePicker:c.exports.DatePicker}},theme:this.themeName,languages:{languageList:r,languageName:n,languageType:n},userInfo:this.userInfo,path:this.path,electron:this.$Electron,openAppChildPage:e=>{this.$store.dispatch("openAppChildPage",e)},openChildWindow:e=>{this.$store.dispatch("openChildWindow",e)},openWebTabWindow:e=>{this.$store.dispatch("openWebTabWindow",e)}}}},methods:{handleCreate(e){window.eventCenterForAppNameVite=new u(e.detail.name),this.appData=this.getAppData,this.showSpin=!window["eventCenterForAppNameViteLoad-"+e.detail.name]},handleBeforeMount(e){window["eventCenterForAppNameViteLoad-"+e.detail.name]=1},handleMount(e){this.datas&&(this.appData=this.datas),this.path&&(this.appData.path=this.path),this.showSpin=!1},handleUnmount(e){window.dispatchEvent(new Event("apps-unmount"))},handleError(e){},handleDataChange(e){}}},i={};var v=h(w,f,g,!1,D,null,null,null);function D(e){for(let t in i)this[t]=i[t]}var y=function(){return v.exports}();export{y as M};
|
||||
1
public/js/build/Minder.418e6f99.js
vendored
Normal file
1
public/js/build/Minder.418e6f99.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/Minder.b6dca941.js
vendored
1
public/js/build/Minder.b6dca941.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/OnlyOffice.acf4f629.js
vendored
Normal file
1
public/js/build/OnlyOffice.acf4f629.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/OnlyOffice.f04340de.js
vendored
1
public/js/build/OnlyOffice.f04340de.js
vendored
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
import{m as l}from"./vuex.cc7cb26e.js";import{n as o}from"./app.f486e34c.js";var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"report-detail"},[e("div",{staticClass:"report-title user-select-auto"},[t._v(" "+t._s(t.data.title)+" "),t.loadIng>0?e("Icon",{staticClass:"icon-loading",attrs:{type:"ios-loading"}}):t._e()],1),t.data.id?e("div",{staticClass:"report-detail-context"},[e("ul",[e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u6C47\u62A5\u4EBA"))+" ")]),e("div",{staticClass:"report-value"},[e("UserAvatar",{attrs:{userid:t.data.userid,size:28}})],1)]),e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u63D0\u4EA4\u65F6\u95F4"))+" ")]),e("div",{staticClass:"report-value"},[t._v(" "+t._s(t.data.created_at)+" ")])]),e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u6C47\u62A5\u5BF9\u8C61"))+" ")]),e("div",{staticClass:"report-value"},[t.data.receives_user&&t.data.receives_user.length===0?[t._v("-")]:t._l(t.data.receives_user,function(r,i){return e("UserAvatar",{key:i,attrs:{userid:r.userid,size:28}})})],2)]),t.data.report_link?e("li",{attrs:{title:t.$L("\u5206\u4EAB\u65F6\u95F4")+"\uFF1A"+t.data.report_link.created_at}},[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u5206\u4EAB\u4EBA"))+" ")]),e("div",{staticClass:"report-value"},[e("UserAvatar",{attrs:{userid:t.data.report_link.userid,size:28}})],1)]):t._e()]),e("div",{ref:"reportContent",staticClass:"report-content user-select-auto",domProps:{innerHTML:t._s(t.data.content)},on:{click:t.onClick}})]):t._e()])},d=[];const c={name:"ReportDetail",props:{data:{default:{}},type:{default:"view"}},data(){return{loadIng:0}},computed:{...l(["formOptions"])},watch:{"data.id":{handler(t){t>0&&this.type==="view"&&this.sendRead()},immediate:!0}},methods:{sendRead(){this.loadIng++,this.$store.dispatch("call",{url:"report/read",data:{ids:[this.data.id]}}).then(()=>{}).catch(()=>{}).finally(t=>{this.loadIng--})},onClick({target:t}){var a;if(t.nodeName==="IMG"){const e=$A.getTextImagesInfo((a=this.$refs.reportContent)==null?void 0:a.outerHTML);this.$store.dispatch("previewImage",{index:t.currentSrc,list:e})}}}},s={};var _=o(c,n,d,!1,v,null,null,null);function v(t){for(let a in s)this[a]=s[a]}var m=function(){return _.exports}();export{m as R};
|
||||
import{m as l}from"./vuex.cc7cb26e.js";import{n as o}from"./app.47eab973.js";var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"report-detail"},[e("div",{staticClass:"report-title user-select-auto"},[t._v(" "+t._s(t.data.title)+" "),t.loadIng>0?e("Icon",{staticClass:"icon-loading",attrs:{type:"ios-loading"}}):t._e()],1),t.data.id?e("div",{staticClass:"report-detail-context"},[e("ul",[e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u6C47\u62A5\u4EBA"))+" ")]),e("div",{staticClass:"report-value"},[e("UserAvatar",{attrs:{userid:t.data.userid,size:28}})],1)]),e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u63D0\u4EA4\u65F6\u95F4"))+" ")]),e("div",{staticClass:"report-value"},[t._v(" "+t._s(t.data.created_at)+" ")])]),e("li",[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u6C47\u62A5\u5BF9\u8C61"))+" ")]),e("div",{staticClass:"report-value"},[t.data.receives_user&&t.data.receives_user.length===0?[t._v("-")]:t._l(t.data.receives_user,function(r,i){return e("UserAvatar",{key:i,attrs:{userid:r.userid,size:28}})})],2)]),t.data.report_link?e("li",{attrs:{title:t.$L("\u5206\u4EAB\u65F6\u95F4")+"\uFF1A"+t.data.report_link.created_at}},[e("div",{staticClass:"report-label"},[t._v(" "+t._s(t.$L("\u5206\u4EAB\u4EBA"))+" ")]),e("div",{staticClass:"report-value"},[e("UserAvatar",{attrs:{userid:t.data.report_link.userid,size:28}})],1)]):t._e()]),e("div",{ref:"reportContent",staticClass:"report-content user-select-auto",domProps:{innerHTML:t._s(t.data.content)},on:{click:t.onClick}})]):t._e()])},d=[];const c={name:"ReportDetail",props:{data:{default:{}},type:{default:"view"}},data(){return{loadIng:0}},computed:{...l(["formOptions"])},watch:{"data.id":{handler(t){t>0&&this.type==="view"&&this.sendRead()},immediate:!0}},methods:{sendRead(){this.loadIng++,this.$store.dispatch("call",{url:"report/read",data:{ids:[this.data.id]}}).then(()=>{}).catch(()=>{}).finally(t=>{this.loadIng--})},onClick({target:t}){var a;if(t.nodeName==="IMG"){const e=$A.getTextImagesInfo((a=this.$refs.reportContent)==null?void 0:a.outerHTML);this.$store.dispatch("previewImage",{index:t.currentSrc,list:e})}}}},s={};var _=o(c,n,d,!1,v,null,null,null);function v(t){for(let a in s)this[a]=s[a]}var m=function(){return _.exports}();export{m as R};
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
import{n as r}from"./app.f486e34c.js";var a=function(){var t=this,n=t.$createElement,e=t._self._c||n;return t.windowTouch?e("div",[e("Button",{attrs:{loading:t.loading,type:"primary",icon:"ios-search"},on:{click:t.onSearch}},[t._v(t._s(t.$L("\u641C\u7D22")))]),t.filtering?e("Button",{attrs:{type:"text"},on:{click:t.onCancelFilter}},[t._v(t._s(t.$L("\u53D6\u6D88\u7B5B\u9009")))]):e("Button",{attrs:{loading:t.loading,type:"text",icon:"md-refresh"},on:{click:t.onRefresh}},[t._v(t._s(t.$L("\u5237\u65B0")))])],1):e("Tooltip",{attrs:{theme:"light",placement:t.placement,"transfer-class-name":"search-button-clear",transfer:""}},[e("Button",{attrs:{loading:t.loading,type:"primary",icon:"ios-search"},on:{click:t.onSearch}},[t._v(t._s(t.$L("\u641C\u7D22")))]),e("div",{attrs:{slot:"content"},slot:"content"},[t.filtering?e("Button",{attrs:{type:"text"},on:{click:t.onCancelFilter}},[t._v(t._s(t.$L("\u53D6\u6D88\u7B5B\u9009")))]):e("Button",{attrs:{loading:t.loading,type:"text"},on:{click:t.onRefresh}},[t._v(t._s(t.$L("\u5237\u65B0")))])],1)],1)},i=[];const l={name:"SearchButton",props:{loading:{type:Boolean,default:!1},filtering:{type:Boolean,default:!1},placement:{type:String,default:"bottom"}},methods:{onSearch(){this.$emit("search")},onRefresh(){this.$emit("refresh")},onCancelFilter(){this.$emit("cancelFilter")}}},o={};var s=r(l,a,i,!1,c,null,null,null);function c(t){for(let n in o)this[n]=o[n]}var h=function(){return s.exports}();export{h as S};
|
||||
import{n as r}from"./app.47eab973.js";var a=function(){var t=this,n=t.$createElement,e=t._self._c||n;return t.windowTouch?e("div",[e("Button",{attrs:{loading:t.loading,type:"primary",icon:"ios-search"},on:{click:t.onSearch}},[t._v(t._s(t.$L("\u641C\u7D22")))]),t.filtering?e("Button",{attrs:{type:"text"},on:{click:t.onCancelFilter}},[t._v(t._s(t.$L("\u53D6\u6D88\u7B5B\u9009")))]):e("Button",{attrs:{loading:t.loading,type:"text",icon:"md-refresh"},on:{click:t.onRefresh}},[t._v(t._s(t.$L("\u5237\u65B0")))])],1):e("Tooltip",{attrs:{theme:"light",placement:t.placement,"transfer-class-name":"search-button-clear",transfer:""}},[e("Button",{attrs:{loading:t.loading,type:"primary",icon:"ios-search"},on:{click:t.onSearch}},[t._v(t._s(t.$L("\u641C\u7D22")))]),e("div",{attrs:{slot:"content"},slot:"content"},[t.filtering?e("Button",{attrs:{type:"text"},on:{click:t.onCancelFilter}},[t._v(t._s(t.$L("\u53D6\u6D88\u7B5B\u9009")))]):e("Button",{attrs:{loading:t.loading,type:"text"},on:{click:t.onRefresh}},[t._v(t._s(t.$L("\u5237\u65B0")))])],1)],1)},i=[];const l={name:"SearchButton",props:{loading:{type:Boolean,default:!1},filtering:{type:Boolean,default:!1},placement:{type:String,default:"bottom"}},methods:{onSearch(){this.$emit("search")},onRefresh(){this.$emit("refresh")},onCancelFilter(){this.$emit("cancelFilter")}}},o={};var s=r(l,a,i,!1,c,null,null,null);function c(t){for(let n in o)this[n]=o[n]}var h=function(){return s.exports}();export{h as S};
|
||||
1
public/js/build/TEditor.1772ea18.js
vendored
1
public/js/build/TEditor.1772ea18.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/TEditor.81d5f096.js
vendored
Normal file
1
public/js/build/TEditor.81d5f096.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.task-editor[data-v-4a1ed776]{position:relative;word-break:break-all}.task-editor .task-editor-operate[data-v-4a1ed776]{position:absolute;top:0;left:0;width:1px;opacity:0;visibility:hidden;pointer-events:none}.task-tag-select[data-v-8c5775e4]{width:100%;display:flex;flex-direction:column}.task-tag-select.no-search .search-box[data-v-8c5775e4]{display:none}.task-tag-select.no-search .tag-list .tag-item[data-v-8c5775e4]:first-child{margin-top:0}.task-tag-select .search-box[data-v-8c5775e4]{padding-bottom:8px;border-bottom:1px solid #eee}.task-tag-select .search-box .search-input[data-v-8c5775e4]{width:100%;height:34px;padding:0 12px;border:1px solid #dcdfe6;border-radius:4px;outline:none}.task-tag-select .search-box .search-input[data-v-8c5775e4]:focus{border-color:#84c56a}.task-tag-select .tag-list[data-v-8c5775e4]{flex:1;overflow-y:auto;max-height:300px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]{display:flex;align-items:flex-start;padding:8px 12px;cursor:pointer;border-radius:6px;margin-bottom:6px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:first-child{margin-top:12px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:last-child{margin-bottom:12px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:hover{background-color:#f5f7fa}.task-tag-select .tag-list .tag-item.is-selected[data-v-8c5775e4]{background-color:#ecf5ff}.task-tag-select .tag-list .tag-item .tag-color[data-v-8c5775e4]{width:16px;height:16px;border-radius:4px;margin-right:8px;margin-top:2px}.task-tag-select .tag-list .tag-item .tag-info[data-v-8c5775e4]{flex:1}.task-tag-select .tag-list .tag-item .tag-info .tag-name[data-v-8c5775e4]{line-height:20px;font-size:14px;color:#303133}.task-tag-select .tag-list .tag-item .tag-info .tag-desc[data-v-8c5775e4]{font-size:12px;color:#909399;margin-top:2px}.task-tag-select .tag-list .tag-item .tag-check[data-v-8c5775e4]{color:#84c56a;margin-left:12px;height:20px;display:flex;align-items:center}.task-tag-select .tag-list .no-data[data-v-8c5775e4]{text-align:center;color:#909399;padding:24px 0;margin-bottom:12px}.task-tag-select .footer-box[data-v-8c5775e4]{border-top:1px solid #eee;padding-top:8px}.task-tag-select .footer-box .add-button[data-v-8c5775e4]{display:flex;align-items:center;justify-content:center;padding:4px 0 2px;cursor:pointer;color:#84c56a;border-radius:6px;transition:color .2s}.task-tag-select .footer-box .add-button[data-v-8c5775e4]:hover{color:#a2d98d}.task-tag-select .footer-box .add-button i[data-v-8c5775e4]{margin-right:4px}.task-content-history .ivu-page[data-v-7a371eda]{margin-top:12px;display:flex;align-items:center;justify-content:center}
|
||||
.task-editor[data-v-4a1ed776]{position:relative;word-break:break-all}.task-editor .task-editor-operate[data-v-4a1ed776]{position:absolute;top:0;left:0;width:1px;opacity:0;visibility:hidden;pointer-events:none}.task-tag-select[data-v-8c5775e4]{width:100%;display:flex;flex-direction:column}.task-tag-select.no-search .search-box[data-v-8c5775e4]{display:none}.task-tag-select.no-search .tag-list .tag-item[data-v-8c5775e4]:first-child{margin-top:0}.task-tag-select .search-box[data-v-8c5775e4]{padding-bottom:8px;border-bottom:1px solid #eee}.task-tag-select .search-box .search-input[data-v-8c5775e4]{width:100%;height:34px;padding:0 12px;border:1px solid #dcdfe6;border-radius:4px;outline:none}.task-tag-select .search-box .search-input[data-v-8c5775e4]:focus{border-color:#84c56a}.task-tag-select .tag-list[data-v-8c5775e4]{flex:1;overflow-y:auto;max-height:300px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]{display:flex;align-items:flex-start;padding:8px 12px;cursor:pointer;border-radius:6px;margin-bottom:6px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:first-child{margin-top:12px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:last-child{margin-bottom:12px}.task-tag-select .tag-list .tag-item[data-v-8c5775e4]:hover{background-color:#f5f7fa}.task-tag-select .tag-list .tag-item.is-selected[data-v-8c5775e4]{background-color:#ecf5ff}.task-tag-select .tag-list .tag-item .tag-color[data-v-8c5775e4]{width:16px;height:16px;border-radius:4px;margin-right:8px;margin-top:2px}.task-tag-select .tag-list .tag-item .tag-info[data-v-8c5775e4]{flex:1}.task-tag-select .tag-list .tag-item .tag-info .tag-name[data-v-8c5775e4]{line-height:20px;font-size:14px;color:#303133}.task-tag-select .tag-list .tag-item .tag-info .tag-desc[data-v-8c5775e4]{font-size:12px;color:#909399;margin-top:2px}.task-tag-select .tag-list .tag-item .tag-check[data-v-8c5775e4]{color:#84c56a;margin-left:12px;height:20px;display:flex;align-items:center}.task-tag-select .tag-list .no-data[data-v-8c5775e4]{text-align:center;color:#909399;padding:24px 0;margin-bottom:12px}.task-tag-select .footer-box[data-v-8c5775e4]{border-top:1px solid #eee;padding-top:8px}.task-tag-select .footer-box .add-button[data-v-8c5775e4]{display:flex;align-items:center;justify-content:center;padding:4px 0 2px;cursor:pointer;color:#84c56a;border-radius:6px;transition:color .2s}.task-tag-select .footer-box .add-button[data-v-8c5775e4]:hover{color:#a2d98d}.task-tag-select .footer-box .add-button i[data-v-8c5775e4]{margin-right:4px}.task-content-history .ivu-page[data-v-aeeaf69a]{margin-top:12px;display:flex;align-items:center;justify-content:center}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
7
public/js/build/app.1c28e8e9.css
vendored
Normal file
7
public/js/build/app.1c28e8e9.css
vendored
Normal file
File diff suppressed because one or more lines are too long
99
public/js/build/app.47eab973.js
vendored
Normal file
99
public/js/build/app.47eab973.js
vendored
Normal file
File diff suppressed because one or more lines are too long
7
public/js/build/app.a708a049.css
vendored
7
public/js/build/app.a708a049.css
vendored
File diff suppressed because one or more lines are too long
99
public/js/build/app.f486e34c.js
vendored
99
public/js/build/app.f486e34c.js
vendored
File diff suppressed because one or more lines are too long
3
public/js/build/application.57347118.js
vendored
3
public/js/build/application.57347118.js
vendored
File diff suppressed because one or more lines are too long
3
public/js/build/application.5e4c45d5.js
vendored
Normal file
3
public/js/build/application.5e4c45d5.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/apps.873b8c0b.js
vendored
1
public/js/build/apps.873b8c0b.js
vendored
@ -1 +0,0 @@
|
||||
import{M as p}from"./MicroApps.2c55da8b.js";import{n as m}from"./app.f486e34c.js";import"./vue.fd9b772e.js";import"./@babel.f9bcab46.js";import"./vuex.cc7cb26e.js";import"./@micro-zoe.c2e1472d.js";import"./DialogWrapper.a6bf3506.js";import"./index.c170b434.js";import"./vue-virtual-scroll-list-hi.a171e791.js";import"./lodash.18c5398d.js";import"./ImgUpload.1316075b.js";import"./tip.2ddbb005.js";import"./view-design-hi.18b9f7fe.js";import"./jquery.995d0ab9.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var a=function(){var t=this,r=t.$createElement,o=t._self._c||r;return!t.loading&&t.$route.name=="manage-apps"?o("MicroApps",{attrs:{url:t.appUrl,path:t.path}}):t._e()},e=[];const n={components:{MicroApps:p},data(){return{loading:!1,appUrl:"",path:""}},deactivated(){this.loading=!0},watch:{$route:{handler(t){this.loading=!0,t.name=="manage-apps"?this.$nextTick(()=>{this.loading=!1,this.appUrl={}.VITE_OKR_WEB_URL||$A.mainUrl("apps/okr"),this.path=this.$route.query.path||""}):this.appUrl=""},immediate:!0}}},i={};var s=m(n,a,e,!1,l,null,null,null);function l(t){for(let r in i)this[r]=i[r]}var st=function(){return s.exports}();export{st as default};
|
||||
1
public/js/build/apps.b019405d.js
vendored
Normal file
1
public/js/build/apps.b019405d.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{M as i}from"./index.2aae29b9.js";import{n as m}from"./app.47eab973.js";import"./vue.fd9b772e.js";import"./@babel.f9bcab46.js";import"./vuex.cc7cb26e.js";import"./view-design-hi.18b9f7fe.js";import"./@micro-zoe.f728a9f4.js";import"./DialogWrapper.6fc66bf5.js";import"./index.b53ac940.js";import"./vue-virtual-scroll-list-hi.a171e791.js";import"./lodash.18c5398d.js";import"./ImgUpload.2cca26d3.js";import"./jquery.26b8a080.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var e=function(){var t=this,r=t.$createElement,o=t._self._c||r;return o("MicroApps",{ref:"app",attrs:{"window-type":"popout"}})},n=[];const a={components:{MicroApps:i},async mounted(){const{name:t}=this.$route.params;if(!t){$A.modalError("\u5E94\u7528\u4E0D\u5B58\u5728");return}const r=(await $A.IDBArray("cacheMicroApps")).reverse().find(o=>o.name===t);if(!r){$A.modalError("\u5E94\u7528\u4E0D\u5B58\u5728");return}await this.$refs.app.observeMicroApp(r)}},p={};var s=m(a,e,n,!1,c,null,null,null);function c(t){for(let r in p)this[r]=p[r]}var ar=function(){return s.exports}();export{ar as default};
|
||||
1
public/js/build/apps.ea76b80f.js
vendored
1
public/js/build/apps.ea76b80f.js
vendored
@ -1 +0,0 @@
|
||||
import{M as p}from"./MicroApps.2c55da8b.js";import{n as m}from"./app.f486e34c.js";import"./vue.fd9b772e.js";import"./@babel.f9bcab46.js";import"./vuex.cc7cb26e.js";import"./@micro-zoe.c2e1472d.js";import"./DialogWrapper.a6bf3506.js";import"./index.c170b434.js";import"./vue-virtual-scroll-list-hi.a171e791.js";import"./lodash.18c5398d.js";import"./ImgUpload.1316075b.js";import"./tip.2ddbb005.js";import"./view-design-hi.18b9f7fe.js";import"./jquery.995d0ab9.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var e=function(){var t=this,r=t.$createElement,i=t._self._c||r;return i("div",{staticClass:"electron-single-micro-apps"},[!t.loading&&t.$route.name=="single-apps"?i("MicroApps",{attrs:{url:t.appUrl,path:t.path}}):t._e()],1)},a=[];const n={components:{MicroApps:p},data(){return{loading:!1,appUrl:"",path:""}},deactivated(){this.loading=!0},watch:{$route:{handler(t){this.loading=!0,t.name=="single-apps"?this.$nextTick(()=>{this.loading=!1,this.appUrl={}.VITE_OKR_WEB_URL||$A.mainUrl("apps/okr"),this.path=this.$route.query.path||""}):this.appUrl=""},immediate:!0}}},o={};var s=m(n,e,a,!1,l,null,null,null);function l(t){for(let r in o)this[r]=o[r]}var st=function(){return s.exports}();export{st as default};
|
||||
10
public/js/build/appstore.ddc59da2.svg
Normal file
10
public/js/build/appstore.ddc59da2.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="49px" height="48px" viewBox="0 0 49 48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g fill-rule="nonzero">
|
||||
<path d="M36.600098,48 L12.600098,48 C6.0001,48 0.600098,42.6 0.600098,36 L0.600098,12 C0.600098,5.4 6.0001,0 12.600098,0 L36.600098,0 C43.2001,0 48.600098,5.4 48.600098,12 L48.600098,36 C48.600098,42.6 43.2001,48 36.600098,48 Z" id="路径" fill="#72A1F7"></path>
|
||||
<path d="M21.2010979,13 C21.6568178,13 22.0468388,13.1576611 22.3711612,13.4735036 C22.6949622,13.7888257 22.8571233,14.1738726 22.8571233,14.6296849 L22.8571233,21.2009782 C22.8571233,21.6567904 22.6954836,22.0465203 22.3711612,22.3706882 C22.0652854,22.6872082 21.6416897,22.8631508 21.2010979,22.8566798 L14.630181,22.8566798 C14.1930882,22.8647376 13.7729052,22.6882462 13.4731532,22.3706882 C13.1635117,22.0606328 12.992901,21.6386541 13.0002265,21.2009782 L13.0002265,14.6296849 C13.0002265,14.1738726 13.1576949,13.7888257 13.4731532,13.4729833 C13.7886114,13.1576611 14.1744612,13 14.630181,13 L21.2010979,13 Z M21.2010979,26.1425866 C21.6568178,26.1425866 22.0468388,26.3002477 22.3711612,26.6160902 C22.6949622,26.930892 22.8571233,27.3164592 22.8571233,27.7722715 L22.8571233,34.3701018 C22.8571233,34.8253937 22.6954836,35.2109609 22.3711612,35.5262831 C22.0468389,35.8416052 21.6568178,35.9997867 21.2010979,35.9997867 L14.630181,35.9997867 C14.1744612,35.9997867 13.7886114,35.8416053 13.4731532,35.5262831 C13.1576949,35.2109609 13.0002265,34.8253937 13.0002265,34.3695815 L13.0002265,27.7717512 C13.0002265,27.3164593 13.1576949,26.930892 13.4731532,26.6155699 C13.7886114,26.3002477 14.1744612,26.1420662 14.630181,26.1420662 L21.2010979,26.1420662 L21.2010979,26.1425866 Z M34.3705669,26.1425866 C34.8257654,26.1425866 35.2116151,26.3002477 35.5270734,26.6160902 C35.8425316,26.930892 36,27.3164592 36,27.7722715 L36,34.3701018 C36,34.8253937 35.8425316,35.2109609 35.5270734,35.5262831 C35.2116151,35.8416052 34.8257654,35.9997867 34.3705669,35.9997867 L27.7991286,35.9997867 C27.3608865,36.0068969 26.9385621,35.8359898 26.6290653,35.5262831 C26.3113415,35.2260289 26.1349499,34.8061764 26.1431032,34.3695815 L26.1431032,27.7717512 C26.1431032,27.3164593 26.304743,26.930892 26.6290653,26.6155699 C26.9385621,26.3058632 27.3608865,26.1349561 27.7991286,26.1420662 L34.3705669,26.1420662 L34.3705669,26.1425866 Z" id="形状" fill="#FFFFFF"></path>
|
||||
<path d="M33.1351352,11.5675676 L38.4324324,16.8648648 C39.1891892,17.6216216 39.1891892,18.3783784 38.4324324,19.1351351 L33.1351352,24.4324324 C32.3783784,25.1891892 31.6216216,25.1891892 30.8648649,24.4324324 L25.5675676,19.1351351 C24.8108108,18.3783784 24.8108108,17.6216216 25.5675676,16.8648648 L30.8648649,11.5675676 C31.6216216,10.8108108 32.3783784,10.8108108 33.1351352,11.5675676 Z" id="路径" fill-opacity="0.7" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
1
public/js/build/calendar.2473385b.js
vendored
Normal file
1
public/js/build/calendar.2473385b.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/calendar.8279d59c.js
vendored
1
public/js/build/calendar.8279d59c.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/checkin.080b91e9.js
vendored
Normal file
1
public/js/build/checkin.080b91e9.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/checkin.9ab8280e.js
vendored
1
public/js/build/checkin.9ab8280e.js
vendored
File diff suppressed because one or more lines are too long
13
public/js/build/create-group.b85bf5ab.svg
Normal file
13
public/js/build/create-group.b85bf5ab.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>add-project</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="add-project" fill-rule="nonzero">
|
||||
<path d="M36,48 L12,48 C5.4,48 0,42.6 0,36 L0,12 C0,5.4 5.4,0 12,0 L36,0 C42.6,0 48,5.4 48,12 L48,36 C48,42.6 42.6,48 36,48 Z" id="路径" fill="#87D068"></path>
|
||||
<g id="create-group" transform="translate(12, 11)" fill="#FFFFFF">
|
||||
<path d="M24.0062996,16.1558426 C22.4649067,15.0282002 20.9136691,13.9144788 19.3527703,12.8148104 C19.3104148,12.7424251 19.2100992,12.4257396 19.2814348,11.7923686 C19.2948102,11.6487291 19.4229912,11.4903863 19.6358832,11.2155485 C19.9201108,10.8705875 20.2879347,10.381987 20.5298067,9.66152747 C20.7571887,8.92636466 21.3523946,5.77081969 19.8777553,3.68521936 C19.3717188,2.97493898 18.4209498,2.14137746 16.7389916,2 C18.5959448,4.99720221 17.9639566,9.07339723 17.5415164,10.4408 C17.1625464,11.5740818 16.6018936,12.3409131 16.1549319,12.8838026 C16.0958571,12.961843 16.0434701,13.0240491 16.0033439,13.078338 L16,13.1688196 C17.2205065,14.0283945 19.8242537,15.9013632 21.4114694,17.0640514 C22.5604926,17.8907272 23.2431449,19.2314325 23.2427864,20.6606941 L23.2427864,21 C24.2626617,20.7376034 25.0239457,19.8011191 24.9994241,18.6904578 L24.9994241,18.1000655 C24.9994241,17.3219239 24.6316002,16.6025954 24.0074142,16.1547116" id="路径"></path>
|
||||
<path d="M19.0755394,24 L2.95928939,24 C1.32593287,23.9975192 0.00244514859,22.6547542 0,20.9976069 L0,20.2554549 C0,19.2790578 0.463984608,18.3747361 1.2487624,17.8138989 C3.12024099,16.4748721 6.32928285,14.1605744 7.09630047,13.6177561 C7.14847099,13.5276618 7.27390223,13.1301206 7.18510135,12.3339121 C7.16623117,12.1706161 7.00749959,11.9543898 6.73887692,11.609779 C6.40032356,11.1593074 5.91857878,10.5624325 5.61776579,9.65698466 C5.31362277,8.73464408 4.56436533,4.77387265 6.43584391,2.15100183 C7.13182082,1.17347849 8.48603427,0 11.0002092,0 C13.5132742,0 14.8674876,1.17347849 15.5634646,2.15100183 C17.417183,4.77499883 16.6690355,8.73464408 16.3848727,9.65698466 C16.0807297,10.5613064 15.6167451,11.1773263 15.2604315,11.609779 C14.9940289,11.9543898 14.8330773,12.1525973 14.8164271,12.3339121 C14.7254062,13.1301206 14.8497275,13.5276618 14.905228,13.6177561 C15.6711356,14.1425555 18.8968277,16.4579794 20.7505461,17.8138989 C21.5347245,18.3720993 22.0009056,19.2835675 21.9993085,20.2554549 L21.9993085,20.998733 C22.0348288,22.6429543 20.6972655,24 19.0755394,24" id="路径"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
1
public/js/build/dashboard.06a0d568.js
vendored
1
public/js/build/dashboard.06a0d568.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/dashboard.fdfe293c.js
vendored
Normal file
1
public/js/build/dashboard.fdfe293c.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/delete.0dd73716.js
vendored
1
public/js/build/delete.0dd73716.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/delete.a49608bd.js
vendored
Normal file
1
public/js/build/delete.a49608bd.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/details.2a266b28.js
vendored
1
public/js/build/details.2a266b28.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/device.7aee78ee.js
vendored
Normal file
1
public/js/build/device.7aee78ee.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{n as l}from"./app.47eab973.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var m=function(){var t=this,r=t.$createElement,i=t._self._c||r;return i("div",{staticClass:"setting-device"},[i("ul",[t.loadIng>0&&t.devices.length===0?i("li",{staticClass:"loading"},[i("Loading")],1):t._l(t.devices,function(e){return i("li",{key:e.id},[i("div",{staticClass:"icon"},[i("span",{class:t.getIcon(e.detail)})]),i("div",{staticClass:"info"},[i("div",{staticClass:"title"},[i("span",{staticClass:"name"},[t._v(t._s(t.getName(e.detail)))]),i("span",{staticClass:"device"},[t._v(t._s(t.getOs(e.detail)))])]),i("div",{staticClass:"time"},[i("EPopover",{attrs:{placement:"bottom-start",trigger:"click"}},[i("div",{staticClass:"setting-device-popover"},[i("p",[t._v(t._s(t.$L("\u767B\u5F55\u65F6\u95F4"))+": "+t._s(e.created_at))]),i("p",[t._v(t._s(t.$L("\u66F4\u65B0\u65F6\u95F4"))+": "+t._s(e.updated_at))]),i("p",[t._v(t._s(t.$L("\u8FC7\u671F\u65F6\u95F4"))+": "+t._s(e.expired_at))])]),i("span",{attrs:{slot:"reference"},slot:"reference"},[t._v(t._s(e.updated_at))])])],1)]),i("div",[e.is_current?i("span",{staticClass:"current"},[t._v(t._s(t.$L("\u5F53\u524D\u8BBE\u5907")))]):i("Button",{on:{click:function(o){return t.onLogout(e)}}},[t._v(t._s(t.$L("\u9000\u51FA\u767B\u5F55")))])],1)])})],2)])},p=[];const c={name:"SettingDevice",data(){return{loadIng:0,devices:[]}},mounted(){this.getDeviceList()},methods:{getDeviceList(){this.loadIng++,this.$store.dispatch("call",{url:"users/device/list"}).then(({data:t})=>{this.devices=t.list,typeof this.$parent.updateDeviceCount=="function"&&this.$parent.updateDeviceCount(this.devices.length)}).catch(({msg:t})=>{$A.modalError(t),this.devices=[]}).finally(()=>{this.loadIng--})},getIcon({app_type:t,app_name:r}){return/ios/i.test(t)?/ipad/i.test(r)?"tablet":/iphone/i.test(r)?"phone":"apple":/android/i.test(t)?/(tablet|phablet)/i.test(r)?"tablet":"android":/mac/i.test(t)?"macos":/win/i.test(t)?"window":"web"},getName({app_brand:t,app_model:r,device_name:i,app_type:e,app_name:o,browser:a}){const s=[];if(/web/i.test(e))s.push(a,this.$L("\u6D4F\u89C8\u5668"));else{if(i)return i;t?s.push(t,r):s.push(o||e,this.$L("\u5BA2\u6237\u7AEF"))}return s.join(" ")},getOs({app_os:t,os:r}){return t||r},onLogout(t){$A.modalConfirm({title:"\u9000\u51FA\u767B\u5F55",content:"\u662F\u5426\u5728\u8BE5\u8BBE\u5907\u4E0A\u9000\u51FA\u767B\u5F55\uFF1F",loading:!0,onOk:()=>new Promise((r,i)=>{this.$store.dispatch("call",{url:"users/device/logout",data:{id:t.id}}).then(({msg:e})=>{r(e),this.getDeviceList()}).catch(({msg:e})=>{i(e)})})})}}},n={};var u=l(c,m,p,!1,d,null,null,null);function d(t){for(let r in n)this[r]=n[r]}var st=function(){return u.exports}();export{st as default};
|
||||
1
public/js/build/device.d052421e.js
vendored
1
public/js/build/device.d052421e.js
vendored
@ -1 +0,0 @@
|
||||
import{n as l}from"./app.f486e34c.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var m=function(){var t=this,r=t.$createElement,i=t._self._c||r;return i("div",{staticClass:"setting-device"},[i("ul",[t.loadIng>0&&t.devices.length===0?i("li",{staticClass:"loading"},[i("Loading")],1):t._l(t.devices,function(e){return i("li",{key:e.id},[i("div",{staticClass:"icon"},[i("span",{class:t.getIcon(e.detail)})]),i("div",{staticClass:"info"},[i("div",{staticClass:"title"},[i("span",{staticClass:"name"},[t._v(t._s(t.getName(e.detail)))]),i("span",{staticClass:"device"},[t._v(t._s(t.getOs(e.detail)))])]),i("div",{staticClass:"time"},[i("EPopover",{attrs:{placement:"bottom-start",trigger:"click"}},[i("div",{staticClass:"setting-device-popover"},[i("p",[t._v(t._s(t.$L("\u767B\u5F55\u65F6\u95F4"))+": "+t._s(e.created_at))]),i("p",[t._v(t._s(t.$L("\u66F4\u65B0\u65F6\u95F4"))+": "+t._s(e.updated_at))]),i("p",[t._v(t._s(t.$L("\u8FC7\u671F\u65F6\u95F4"))+": "+t._s(e.expired_at))])]),i("span",{attrs:{slot:"reference"},slot:"reference"},[t._v(t._s(e.updated_at))])])],1)]),i("div",[e.is_current?i("span",{staticClass:"current"},[t._v(t._s(t.$L("\u5F53\u524D\u8BBE\u5907")))]):i("Button",{on:{click:function(o){return t.onLogout(e)}}},[t._v(t._s(t.$L("\u9000\u51FA\u767B\u5F55")))])],1)])})],2)])},p=[];const c={name:"SettingDevice",data(){return{loadIng:0,devices:[]}},mounted(){this.getDeviceList()},methods:{getDeviceList(){this.loadIng++,this.$store.dispatch("call",{url:"users/device/list"}).then(({data:t})=>{this.devices=t.list,typeof this.$parent.updateDeviceCount=="function"&&this.$parent.updateDeviceCount(this.devices.length)}).catch(({msg:t})=>{$A.modalError(t),this.devices=[]}).finally(()=>{this.loadIng--})},getIcon({app_type:t,app_name:r}){return/ios/i.test(t)?/ipad/i.test(r)?"tablet":/iphone/i.test(r)?"phone":"apple":/android/i.test(t)?/(tablet|phablet)/i.test(r)?"tablet":"android":/mac/i.test(t)?"macos":/win/i.test(t)?"window":"web"},getName({app_brand:t,app_model:r,device_name:i,app_type:e,app_name:o,browser:a}){const s=[];if(/web/i.test(e))s.push(a,this.$L("\u6D4F\u89C8\u5668"));else{if(i)return i;t?s.push(t,r):s.push(o||e,this.$L("\u5BA2\u6237\u7AEF"))}return s.join(" ")},getOs({app_os:t,os:r}){return t||r},onLogout(t){$A.modalConfirm({title:"\u9000\u51FA\u767B\u5F55",content:"\u662F\u5426\u5728\u8BE5\u8BBE\u5907\u4E0A\u9000\u51FA\u767B\u5F55\uFF1F",loading:!0,onOk:()=>new Promise((r,i)=>{this.$store.dispatch("call",{url:"users/device/logout",data:{id:t.id}}).then(({msg:e})=>{r(e),this.getDeviceList()}).catch(({msg:e})=>{i(e)})})})}}},n={};var u=l(c,m,p,!1,d,null,null,null);function d(t){for(let r in n)this[r]=n[r]}var nt=function(){return u.exports}();export{nt as default};
|
||||
1
public/js/build/dialog.1b008e50.js
vendored
Normal file
1
public/js/build/dialog.1b008e50.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{D as p}from"./DialogWrapper.6fc66bf5.js";import{m}from"./vuex.cc7cb26e.js";import{n as a}from"./app.47eab973.js";import"./index.b53ac940.js";import"./vue-virtual-scroll-list-hi.a171e791.js";import"./@babel.f9bcab46.js";import"./vue.fd9b772e.js";import"./lodash.18c5398d.js";import"./ImgUpload.2cca26d3.js";import"./jquery.26b8a080.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var e=function(){var t=this,o=t.$createElement,r=t._self._c||o;return r("div",{staticClass:"electron-dialog"},[r("PageTitle",{attrs:{title:t.dialogData.name}}),t.dialogId>0?r("DialogWrapper",{attrs:{dialogId:t.dialogId}}):t._e()],1)},n=[];const s={components:{DialogWrapper:p},computed:{...m(["cacheDialogs"]),dialogId(){const{dialogId:t}=this.$route.params;return parseInt(/^\d+$/.test(t)?t:0)},dialogData(){return this.cacheDialogs.find(({id:t})=>t===this.dialogId)||{}}}},i={};var l=a(s,e,n,!1,d,"4f6d7c8a",null,null);function d(t){for(let o in i)this[o]=i[o]}var et=function(){return l.exports}();export{et as default};
|
||||
1
public/js/build/dialog.cf236ea2.js
vendored
1
public/js/build/dialog.cf236ea2.js
vendored
@ -1 +0,0 @@
|
||||
import{D as p}from"./DialogWrapper.a6bf3506.js";import{m}from"./vuex.cc7cb26e.js";import{n as a}from"./app.f486e34c.js";import"./index.c170b434.js";import"./vue-virtual-scroll-list-hi.a171e791.js";import"./@babel.f9bcab46.js";import"./vue.fd9b772e.js";import"./lodash.18c5398d.js";import"./ImgUpload.1316075b.js";import"./tip.2ddbb005.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var e=function(){var t=this,o=t.$createElement,r=t._self._c||o;return r("div",{staticClass:"electron-dialog"},[r("PageTitle",{attrs:{title:t.dialogData.name}}),t.dialogId>0?r("DialogWrapper",{attrs:{dialogId:t.dialogId}}):t._e()],1)},n=[];const s={components:{DialogWrapper:p},computed:{...m(["cacheDialogs"]),dialogId(){const{dialogId:t}=this.$route.params;return parseInt(/^\d+$/.test(t)?t:0)},dialogData(){return this.cacheDialogs.find(({id:t})=>t===this.dialogId)||{}}}},i={};var l=a(s,e,n,!1,d,"4f6d7c8a",null,null);function d(t){for(let o in i)this[o]=i[o]}var st=function(){return l.exports}();export{st as default};
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
2
public/js/build/editor.7467f472.js
vendored
Normal file
2
public/js/build/editor.7467f472.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/build/editor.d123373b.js
vendored
2
public/js/build/editor.d123373b.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
public/js/build/email.7c78dc92.js
vendored
1
public/js/build/email.7c78dc92.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/email.fb7fc8b8.js
vendored
Normal file
1
public/js/build/email.fb7fc8b8.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
public/js/build/file.0e5a267c.js
vendored
Normal file
1
public/js/build/file.0e5a267c.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import n from"./FileContent.57d67e27.js";import l from"./FilePreview.c9367567.js";import{n as m}from"./app.47eab973.js";import"./openpgp_hi.15f91b1d.js";import"./IFrame.4e2ca77f.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var s=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"single-file"},[i("PageTitle",{attrs:{title:t.pageName}}),t.loadIng>0?i("Loading"):t.fileInfo?[t.isPreview?i("FilePreview",{attrs:{code:t.code,file:t.fileInfo,historyId:t.historyId,headerShow:!t.$isEEUIApp}}):i("FileContent",{attrs:{file:t.fileInfo},model:{value:t.fileShow,callback:function(r){t.fileShow=r},expression:"fileShow"}})]:t._e()],2)},p=[];const a={components:{FilePreview:l,FileContent:n},data(){return{loadIng:0,code:null,fileShow:!0,fileInfo:null}},mounted(){},computed:{historyId(){return this.$route.query?$A.runNum(this.$route.query.history_id):0},isPreview(){return this.windowPortrait||this.code||this.historyId>0||this.fileInfo&&this.fileInfo.permission===0},pageName(){return this.$route.query&&this.$route.query.history_title?this.$route.query.history_title:this.fileInfo?`${this.fileInfo.name} [${this.fileInfo.created_at}]`:""}},watch:{$route:{handler(){this.getInfo()},immediate:!0}},methods:{getInfo(){let{codeOrFileId:t}=this.$route.params,e={id:t};if(/^\d+$/.test(t))this.code=null;else if(t)this.code=t;else return;setTimeout(i=>{this.loadIng++},600),this.$store.dispatch("call",{url:"file/one",data:e}).then(({data:i})=>{this.fileInfo=i}).catch(({msg:i})=>{$A.modalError({content:i,onOk:()=>{window.close()}})}).finally(i=>{this.loadIng--})}}},o={};var f=m(a,s,p,!1,u,"662d0b64",null,null);function u(t){for(let e in o)this[e]=o[e]}var lt=function(){return f.exports}();export{lt as default};
|
||||
1
public/js/build/file.1759f11c.css
vendored
1
public/js/build/file.1759f11c.css
vendored
@ -1 +0,0 @@
|
||||
.single-file[data-v-e0fab8f8]{display:flex;align-items:center}.single-file .file-content[data-v-e0fab8f8],.single-file .file-preview[data-v-e0fab8f8]{border-radius:0}
|
||||
1
public/js/build/file.46e16f62.js
vendored
1
public/js/build/file.46e16f62.js
vendored
@ -1 +0,0 @@
|
||||
import n from"./FileContent.5afe7299.js";import m from"./FilePreview.2fb4682c.js";import{n as l}from"./app.f486e34c.js";import"./openpgp_hi.15f91b1d.js";import"./IFrame.8edb85e2.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var s=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"single-file"},[i("PageTitle",{attrs:{title:t.pageName}}),t.loadIng>0?i("Loading"):t.fileInfo?[t.isPreview?i("FilePreview",{attrs:{code:t.code,file:t.fileInfo,historyId:t.historyId,headerShow:!t.$isEEUiApp}}):i("FileContent",{attrs:{file:t.fileInfo},model:{value:t.fileShow,callback:function(r){t.fileShow=r},expression:"fileShow"}})]:t._e()],2)},p=[];const a={components:{FilePreview:m,FileContent:n},data(){return{loadIng:0,code:null,fileShow:!0,fileInfo:null}},mounted(){},computed:{historyId(){return this.$route.query?$A.runNum(this.$route.query.history_id):0},isPreview(){return this.windowPortrait||this.code||this.historyId>0||this.fileInfo&&this.fileInfo.permission===0},pageName(){return this.$route.query&&this.$route.query.history_title?this.$route.query.history_title:this.fileInfo?`${this.fileInfo.name} [${this.fileInfo.created_at}]`:""}},watch:{$route:{handler(){this.getInfo()},immediate:!0}},methods:{getInfo(){let{codeOrFileId:t}=this.$route.params,e={id:t};if(/^\d+$/.test(t))this.code=null;else if(t)this.code=t;else return;setTimeout(i=>{this.loadIng++},600),this.$store.dispatch("call",{url:"file/one",data:e}).then(({data:i})=>{this.fileInfo=i}).catch(({msg:i})=>{$A.modalError({content:i,onOk:()=>{window.close()}})}).finally(i=>{this.loadIng--})}}},o={};var f=l(a,s,p,!1,u,"e0fab8f8",null,null);function u(t){for(let e in o)this[e]=o[e]}var st=function(){return f.exports}();export{st as default};
|
||||
1
public/js/build/file.faa69c59.css
vendored
Normal file
1
public/js/build/file.faa69c59.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.single-file[data-v-662d0b64]{display:flex;align-items:center}.single-file .file-content[data-v-662d0b64],.single-file .file-preview[data-v-662d0b64]{border-radius:0}
|
||||
1
public/js/build/fileMsg.914acb9f.js
vendored
Normal file
1
public/js/build/fileMsg.914acb9f.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/fileMsg.b4a2da1e.js
vendored
1
public/js/build/fileMsg.b4a2da1e.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/fileTask.5916e3c2.js
vendored
1
public/js/build/fileTask.5916e3c2.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/fileTask.e715b736.js
vendored
Normal file
1
public/js/build/fileTask.e715b736.js
vendored
Normal file
File diff suppressed because one or more lines are too long
9
public/js/build/highlight.js.ab8aeea4.js
vendored
9
public/js/build/highlight.js.ab8aeea4.js
vendored
File diff suppressed because one or more lines are too long
10
public/js/build/highlight.js.cb28ef06.js
vendored
Normal file
10
public/js/build/highlight.js.cb28ef06.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/index.0d5f0d6f.css
vendored
Normal file
1
public/js/build/index.0d5f0d6f.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.micro-modal{width:100vw;height:100vh;will-change:auto}.micro-modal.transparent-mode{--modal-mask-bg: transparent;--modal-close-display: none;--modal-resize-display: none;--modal-content-left: 0;--modal-content-min-width: 100%;--modal-content-max-width: 100%;--modal-body-border-radius: 0;--modal-body-background-color: transparent}@media (max-width: 500px){.micro-modal{--modal-mask-bg: transparent;--modal-close-display: none;--modal-resize-display: none;--modal-content-left: 0;--modal-content-min-width: 100%;--modal-content-max-width: 100%;--modal-body-border-radius: 0;--modal-slide-transform: translate(0, 15%) scale(.98)}}.micro-modal-hidden{animation:fade-hide 0s forwards;animation-delay:.3s}@keyframes fade-hide{to{display:none}}.micro-modal-mask{position:fixed;top:0;bottom:0;left:0;right:0;background-color:var(--modal-mask-bg, rgba(0, 0, 0, .4))}.micro-modal-close{position:absolute;top:0;left:-40px;z-index:1;width:40px;height:40px;border-radius:50%;display:var(--modal-close-display, flex);align-items:center;justify-content:center;color:var(--modal-close-color, #ffffff);cursor:pointer}.micro-modal-close>svg{width:24px;height:24px;transition:transform .3s ease-in-out}.micro-modal-close:hover>svg{transform:rotate(-90deg)}.micro-modal-resize{display:var(--modal-resize-display, "block");position:absolute;top:0;bottom:0;left:-3px;z-index:1;width:3px}.micro-modal-content{position:absolute;top:0;right:0;bottom:0;left:var(--modal-content-left, auto);display:flex;flex-direction:column;height:100%;min-width:var(--modal-content-min-width, auto);max-width:var(--modal-content-max-width, calc(100% - 40px))}.micro-modal-body{flex:1;height:0;overflow:hidden;border-radius:var(--modal-body-border-radius, 18px 0 0 18px);background-color:var(--modal-body-background-color, #ffffff);position:relative}.micro-modal-fade-enter-active,.micro-modal-fade-leave-active{transition:all .2s ease}.micro-modal-fade-enter,.micro-modal-fade-leave-to{opacity:0}.micro-modal-slide-enter-active,.micro-modal-slide-leave-active{transition:all .2s ease}.micro-modal-slide-enter,.micro-modal-slide-leave-to{transform:var(--modal-slide-transform, translate(15%, 0) scale(.98));opacity:0}body.dark-mode-reverse .micro-modal:not(.transparent-mode):not(.no-dark-content){--modal-mask-bg: rgba(230, 230, 230, .6);--modal-close-color: #323232}body.dark-mode-reverse .micro-modal:not(.transparent-mode).no-dark-content{--modal-mask-bg: rgba(20, 20, 20, .6);--modal-body-background-color: #000000}.micro-app-loader{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center}.transparent-mode .micro-app-loader{background-color:#fff9}.micro-app-assist{width:0;height:0;opacity:0;display:none;visibility:hidden;pointer-events:none}
|
||||
1
public/js/build/index.2374eeee.js
vendored
1
public/js/build/index.2374eeee.js
vendored
@ -1 +0,0 @@
|
||||
import{n,l as o}from"./app.f486e34c.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var m=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div")},p=[];const s={data(){return{}},mounted(){if(/^https?:/i.test(window.location.protocol)){let t=null;if(this.$router.mode==="hash"?$A.stringLength(window.location.pathname)>2&&(t=`${window.location.origin}/#${window.location.pathname}${window.location.search}`):this.$router.mode==="history"&&$A.strExists(window.location.href,"/#/")&&(t=window.location.href.replace("/#/","/")),t)throw this.$store.dispatch("userUrl",t).then(i=>{window.location.href=i}),SyntaxError()}},activated(){this.start()},methods:{start(){if(this.$isSoftware){this.goNext();return}this.$store.dispatch("showSpinner",1e3),this.$store.dispatch("needHome").then(t=>{this.goIndex()}).catch(t=>{this.goNext()}).finally(t=>{this.$store.dispatch("hiddenSpinner")})},goIndex(){o==="zh"||o==="zh-CHT"?window.location.href=$A.mainUrl("site/zh/index.html"):window.location.href=$A.mainUrl("site/en/index.html")},goNext(){this.userId>0?this.goForward({name:"manage-dashboard"},!0):this.goForward({name:"login"},!0)}}},r={};var a=n(s,m,p,!1,h,null,null,null);function h(t){for(let i in r)this[i]=r[i]}var rt=function(){return a.exports}();export{rt as default};
|
||||
1
public/js/build/index.2aae29b9.js
vendored
Normal file
1
public/js/build/index.2aae29b9.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/index.3c048759.js
vendored
1
public/js/build/index.3c048759.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/index.776bd966.js
vendored
Normal file
1
public/js/build/index.776bd966.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{_ as m}from"./openpgp_hi.15f91b1d.js";import{e as n}from"./index.40a8e116.js";import{n as p}from"./app.47eab973.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var a=function(){var t=this,o=t.$createElement,i=t._self._c||o;return t.ready?i("VEditor",{attrs:{leftToolbar:t.leftToolbar,rightToolbar:t.rightToolbar,tocNavPositionRight:t.tocNavPositionRight,includeLevel:t.includeLevel},model:{value:t.content,callback:function(e){t.content=e},expression:"content"}}):i("Loading")},s=[];const l={name:"VMEditor",mixins:[n],components:{VEditor:()=>m(()=>import("./editor.7467f472.js"),["js/build/editor.7467f472.js","js/build/editor.e437d81f.css","js/build/@kangc.92e0b796.js","js/build/@kangc.d8464d83.css","js/build/@babel.f9bcab46.js","js/build/vue.fd9b772e.js","js/build/copy-to-clipboard.a53c061d.js","js/build/toggle-selection.d2487283.js","js/build/prismjs.ed627128.js","js/build/app.47eab973.js","js/build/app.1c28e8e9.css","js/build/jquery.26b8a080.js","js/build/dayjs.3dad8836.js","js/build/localforage.33a83312.js","js/build/markdown-it.bda97caf.js","js/build/mdurl.ce6c1dd8.js","js/build/uc.micro.8d343c98.js","js/build/entities.48a44fec.js","js/build/linkify-it.c5e8196e.js","js/build/punycode.js.4b3f125a.js","js/build/highlight.js.cb28ef06.js","js/build/markdown-it-link-attributes.e1d5d151.js","js/build/@traptitech.79d08561.js","js/build/vuex.cc7cb26e.js","js/build/openpgp_hi.15f91b1d.js","js/build/axios.e6dcdb34.js","js/build/mitt.1ea0a2a3.js","js/build/quill-hi.b7430b13.js","js/build/parchment.d5c5924e.js","js/build/quill-delta.f1b7ce48.js","js/build/fast-diff.f17881f3.js","js/build/lodash.clonedeep.e8ef3f14.js","js/build/lodash.isequal.d6a986d0.js","js/build/eventemitter3.78b735ad.js","js/build/lodash-es.df04b444.js","js/build/quill-mention-hi.0fc702d1.js","js/build/view-design-hi.18b9f7fe.js","js/build/vue-router.2d566cd7.js","js/build/vue-clipboard2.50be9c5e.js","js/build/clipboard.058ef547.js","js/build/vuedraggable.9fd6afed.js","js/build/sortablejs.d74243d9.js","js/build/vue-resize-observer.c3c9ca4e.js","js/build/element-sea.1d49e96e.js","js/build/deepmerge.cecf392e.js","js/build/resize-observer-polyfill.0bdc1850.js","js/build/throttle-debounce.7c3948b2.js","js/build/babel-helper-vue-jsx-merge-props.5ed215c3.js","js/build/normalize-wheel.2a034b9f.js","js/build/async-validator.49abba38.js","js/build/babel-runtime.4773988a.js","js/build/core-js.314b4a1d.js","js/build/codemirror.8cc0d7e8.js","js/build/codemirror.9ace6687.css","js/build/index.40a8e116.js","js/build/ImgUpload.2cca26d3.js"])},data(){return{ready:!1,content:""}},async mounted(){await $A.loadScriptS(["js/katex/katex.min.js","js/katex/katex.min.css","js/mermaid.min.js"]),this.ready=!0},watch:{value:{handler(t){t==null&&(t=""),this.content=t},immediate:!0},content(t){this.$emit("input",t)}}},r={};var c=p(l,a,s,!1,_,null,null,null);function _(t){for(let o in r)this[o]=r[o]}var et=function(){return c.exports}();export{et as default};
|
||||
1
public/js/build/index.a455d6a6.js
vendored
1
public/js/build/index.a455d6a6.js
vendored
@ -1 +0,0 @@
|
||||
import{_ as m}from"./openpgp_hi.15f91b1d.js";import{e as n}from"./index.40a8e116.js";import{n as p}from"./app.f486e34c.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var a=function(){var t=this,o=t.$createElement,i=t._self._c||o;return t.ready?i("VEditor",{attrs:{leftToolbar:t.leftToolbar,rightToolbar:t.rightToolbar,tocNavPositionRight:t.tocNavPositionRight,includeLevel:t.includeLevel},model:{value:t.content,callback:function(e){t.content=e},expression:"content"}}):i("Loading")},s=[];const l={name:"VMEditor",mixins:[n],components:{VEditor:()=>m(()=>import("./editor.d123373b.js"),["js/build/editor.d123373b.js","js/build/editor.e437d81f.css","js/build/@kangc.92e0b796.js","js/build/@kangc.d8464d83.css","js/build/@babel.f9bcab46.js","js/build/vue.fd9b772e.js","js/build/copy-to-clipboard.a53c061d.js","js/build/toggle-selection.d2487283.js","js/build/prismjs.ed627128.js","js/build/app.f486e34c.js","js/build/app.a708a049.css","js/build/@micro-zoe.c2e1472d.js","js/build/jquery.995d0ab9.js","js/build/dayjs.25f5428c.js","js/build/localforage.5f2e4597.js","js/build/markdown-it.bda97caf.js","js/build/mdurl.ce6c1dd8.js","js/build/uc.micro.8d343c98.js","js/build/entities.48a44fec.js","js/build/linkify-it.c5e8196e.js","js/build/punycode.js.4b3f125a.js","js/build/highlight.js.ab8aeea4.js","js/build/markdown-it-link-attributes.e1d5d151.js","js/build/@traptitech.897ae552.js","js/build/vuex.cc7cb26e.js","js/build/openpgp_hi.15f91b1d.js","js/build/axios.e6dcdb34.js","js/build/mitt.1ea0a2a3.js","js/build/quill-hi.b7430b13.js","js/build/parchment.d5c5924e.js","js/build/quill-delta.f1b7ce48.js","js/build/fast-diff.f17881f3.js","js/build/lodash.clonedeep.e8ef3f14.js","js/build/lodash.isequal.d6a986d0.js","js/build/eventemitter3.78b735ad.js","js/build/lodash-es.df04b444.js","js/build/quill-mention-hi.0fc702d1.js","js/build/view-design-hi.18b9f7fe.js","js/build/vue-router.2d566cd7.js","js/build/vue-clipboard2.50be9c5e.js","js/build/clipboard.058ef547.js","js/build/vuedraggable.9fd6afed.js","js/build/sortablejs.d74243d9.js","js/build/vue-resize-observer.c3c9ca4e.js","js/build/element-sea.055290ae.js","js/build/deepmerge.cecf392e.js","js/build/resize-observer-polyfill.0bdc1850.js","js/build/throttle-debounce.7c3948b2.js","js/build/babel-helper-vue-jsx-merge-props.5ed215c3.js","js/build/normalize-wheel.2a034b9f.js","js/build/async-validator.49abba38.js","js/build/babel-runtime.4773988a.js","js/build/core-js.314b4a1d.js","js/build/lodash.18c5398d.js","js/build/codemirror.8cc0d7e8.js","js/build/codemirror.9ace6687.css","js/build/index.40a8e116.js","js/build/ImgUpload.1316075b.js"])},data(){return{ready:!1,content:""}},async mounted(){await $A.loadScriptS(["js/katex/katex.min.js","js/katex/katex.min.css","js/mermaid.min.js"]),this.ready=!0},watch:{value:{handler(t){t==null&&(t=""),this.content=t},immediate:!0},content(t){this.$emit("input",t)}}},r={};var c=p(l,a,s,!1,_,null,null,null);function _(t){for(let o in r)this[o]=r[o]}var nt=function(){return c.exports}();export{nt as default};
|
||||
1
public/js/build/index.b53ac940.js
vendored
Normal file
1
public/js/build/index.b53ac940.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/index.bc18810c.js
vendored
1
public/js/build/index.bc18810c.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/index.c170b434.js
vendored
1
public/js/build/index.c170b434.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/index.ed5d7c71.js
vendored
Normal file
1
public/js/build/index.ed5d7c71.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/index.fa397c8f.js
vendored
Normal file
1
public/js/build/index.fa397c8f.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{n as e}from"./app.47eab973.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./vuex.cc7cb26e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var m=function(){var t=this,o=t.$createElement,i=t._self._c||o;return i("div")},n=[];const p={data(){return{}},mounted(){if(/^https?:/i.test(window.location.protocol)){let t=null;if(this.$router.mode==="hash"?$A.stringLength(window.location.pathname)>2&&(t=`${window.location.origin}/#${window.location.pathname}${window.location.search}`):this.$router.mode==="history"&&$A.strExists(window.location.href,"/#/")&&(t=window.location.href.replace("/#/","/")),t)throw this.$store.dispatch("userUrl",t).then(o=>{window.location.href=o}),SyntaxError()}},activated(){this.start()},methods:{start(){this.userId>0?this.goForward({name:"manage-dashboard"},!0):this.goForward({name:"login"},!0)}}},r={};var a=e(p,m,n,!1,s,null,null,null);function s(t){for(let o in r)this[o]=r[o]}var tt=function(){return a.exports}();export{tt as default};
|
||||
1
public/js/build/keyboard.457cfeb9.css
vendored
Normal file
1
public/js/build/keyboard.457cfeb9.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.input-box[data-v-4c9c4878]{display:flex;align-items:center}.input-box .input-box-push[data-v-4c9c4878]{opacity:.5;padding:0 12px 0 8px}.input-box .input-box-key[data-v-4c9c4878]{width:60px}
|
||||
1
public/js/build/keyboard.58779677.js
vendored
Normal file
1
public/js/build/keyboard.58779677.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/build/keyboard.b6840672.css
vendored
1
public/js/build/keyboard.b6840672.css
vendored
@ -1 +0,0 @@
|
||||
.input-box[data-v-3f2987a4]{display:flex;align-items:center}.input-box .input-box-push[data-v-3f2987a4]{opacity:.5;padding:0 12px 0 8px}.input-box .input-box-key[data-v-3f2987a4]{width:60px}
|
||||
1
public/js/build/keyboard.ec14c48a.js
vendored
1
public/js/build/keyboard.ec14c48a.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/language.5042f34c.js
vendored
1
public/js/build/language.5042f34c.js
vendored
@ -1 +0,0 @@
|
||||
import{b as e,l as n,h as s,n as p}from"./app.f486e34c.js";import{m as l}from"./vuex.cc7cb26e.js";import"./@micro-zoe.c2e1472d.js";import"./jquery.995d0ab9.js";import"./@babel.f9bcab46.js";import"./dayjs.25f5428c.js";import"./localforage.5f2e4597.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.ab8aeea4.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.897ae552.js";import"./vue.fd9b772e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.055290ae.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";import"./lodash.18c5398d.js";var u=function(){var t=this,a=t.$createElement,r=t._self._c||a;return r("div",{staticClass:"setting-item submit"},[r("Form",t._b({ref:"formData",attrs:{model:t.formData,rules:t.ruleData},nativeOn:{submit:function(o){o.preventDefault()}}},"Form",t.formOptions,!1),[r("FormItem",{attrs:{label:t.$L("\u9009\u62E9\u8BED\u8A00"),prop:"language"}},[r("Select",{attrs:{placeholder:t.$L("\u9009\u9879\u8BED\u8A00")},model:{value:t.formData.language,callback:function(o){t.$set(t.formData,"language",o)},expression:"formData.language"}},t._l(t.languageList,function(o,i){return r("Option",{key:i,attrs:{value:i}},[t._v(t._s(o))])}),1)],1)],1),r("div",{staticClass:"setting-footer"},[r("Button",{attrs:{loading:t.loadIng>0,type:"primary"},on:{click:t.submitForm}},[t._v(t._s(t.$L("\u63D0\u4EA4")))]),r("Button",{staticStyle:{"margin-left":"8px"},attrs:{loading:t.loadIng>0},on:{click:t.resetForm}},[t._v(t._s(t.$L("\u91CD\u7F6E")))])],1)],1)},f=[];const g={data(){return{loadIng:0,languageList:e,formData:{language:""},ruleData:{}}},mounted(){this.initData()},computed:{...l(["formOptions"])},methods:{initData(){this.$set(this.formData,"language",n),this.formData_bak=$A.cloneJSON(this.formData)},submitForm(){this.$refs.formData.validate(t=>{t&&s(this.formData.language)})},resetForm(){this.formData=$A.cloneJSON(this.formData_bak)}}},m={};var c=p(g,u,f,!1,_,null,null,null);function _(t){for(let a in m)this[a]=m[a]}var st=function(){return c.exports}();export{st as default};
|
||||
1
public/js/build/language.8ce01529.js
vendored
Normal file
1
public/js/build/language.8ce01529.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
import{c as e,l as n,j as s,n as p}from"./app.47eab973.js";import{m as l}from"./vuex.cc7cb26e.js";import"./jquery.26b8a080.js";import"./@babel.f9bcab46.js";import"./dayjs.3dad8836.js";import"./localforage.33a83312.js";import"./markdown-it.bda97caf.js";import"./mdurl.ce6c1dd8.js";import"./uc.micro.8d343c98.js";import"./entities.48a44fec.js";import"./linkify-it.c5e8196e.js";import"./punycode.js.4b3f125a.js";import"./highlight.js.cb28ef06.js";import"./markdown-it-link-attributes.e1d5d151.js";import"./@traptitech.79d08561.js";import"./vue.fd9b772e.js";import"./openpgp_hi.15f91b1d.js";import"./axios.e6dcdb34.js";import"./mitt.1ea0a2a3.js";import"./quill-hi.b7430b13.js";import"./parchment.d5c5924e.js";import"./quill-delta.f1b7ce48.js";import"./fast-diff.f17881f3.js";import"./lodash.clonedeep.e8ef3f14.js";import"./lodash.isequal.d6a986d0.js";import"./eventemitter3.78b735ad.js";import"./lodash-es.df04b444.js";import"./quill-mention-hi.0fc702d1.js";import"./view-design-hi.18b9f7fe.js";import"./vue-router.2d566cd7.js";import"./vue-clipboard2.50be9c5e.js";import"./clipboard.058ef547.js";import"./vuedraggable.9fd6afed.js";import"./sortablejs.d74243d9.js";import"./vue-resize-observer.c3c9ca4e.js";import"./element-sea.1d49e96e.js";import"./deepmerge.cecf392e.js";import"./resize-observer-polyfill.0bdc1850.js";import"./throttle-debounce.7c3948b2.js";import"./babel-helper-vue-jsx-merge-props.5ed215c3.js";import"./normalize-wheel.2a034b9f.js";import"./async-validator.49abba38.js";import"./babel-runtime.4773988a.js";import"./core-js.314b4a1d.js";var u=function(){var t=this,o=t.$createElement,r=t._self._c||o;return r("div",{staticClass:"setting-item submit"},[r("Form",t._b({ref:"formData",attrs:{model:t.formData,rules:t.ruleData},nativeOn:{submit:function(a){a.preventDefault()}}},"Form",t.formOptions,!1),[r("FormItem",{attrs:{label:t.$L("\u9009\u62E9\u8BED\u8A00"),prop:"language"}},[r("Select",{attrs:{placeholder:t.$L("\u9009\u9879\u8BED\u8A00")},model:{value:t.formData.language,callback:function(a){t.$set(t.formData,"language",a)},expression:"formData.language"}},t._l(t.languageList,function(a,i){return r("Option",{key:i,attrs:{value:i}},[t._v(t._s(a))])}),1)],1)],1),r("div",{staticClass:"setting-footer"},[r("Button",{attrs:{loading:t.loadIng>0,type:"primary"},on:{click:t.submitForm}},[t._v(t._s(t.$L("\u63D0\u4EA4")))]),r("Button",{staticStyle:{"margin-left":"8px"},attrs:{loading:t.loadIng>0},on:{click:t.resetForm}},[t._v(t._s(t.$L("\u91CD\u7F6E")))])],1)],1)},f=[];const c={data(){return{loadIng:0,languageList:e,formData:{language:""},ruleData:{}}},mounted(){this.initData()},computed:{...l(["formOptions"])},methods:{initData(){this.$set(this.formData,"language",n),this.formData_bak=$A.cloneJSON(this.formData)},submitForm(){this.$refs.formData.validate(t=>{t&&s(this.formData.language)})},resetForm(){this.formData=$A.cloneJSON(this.formData_bak)}}},m={};var g=p(c,u,f,!1,_,null,null,null);function _(t){for(let o in m)this[o]=m[o]}var et=function(){return g.exports}();export{et as default};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user