mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
no message
This commit is contained in:
parent
6ee1824410
commit
8b40364722
10
cmd
10
cmd
@ -465,6 +465,16 @@ if [ $# -gt 0 ]; then
|
|||||||
elif [[ "$1" == "electron" ]]; then
|
elif [[ "$1" == "electron" ]]; then
|
||||||
shift 1
|
shift 1
|
||||||
run_electron $@
|
run_electron $@
|
||||||
|
elif [[ "$1" == "eeui" ]]; then
|
||||||
|
shift 1
|
||||||
|
cli="$@"
|
||||||
|
por=""
|
||||||
|
if [[ "$cli" == "build" ]]; then
|
||||||
|
cli="build --simple"
|
||||||
|
elif [[ "$cli" == "dev" ]]; then
|
||||||
|
por="-p 8880:8880"
|
||||||
|
fi
|
||||||
|
docker run -it --rm -v ${cur_path}/resources/mobile:/work -w /work ${por} kuaifan/eeui-cli:0.0.1 eeui ${cli}
|
||||||
elif [[ "$1" == "doc" ]]; then
|
elif [[ "$1" == "doc" ]]; then
|
||||||
shift 1
|
shift 1
|
||||||
run_exec php "php app/Http/Controllers/Api/apidoc.php"
|
run_exec php "php app/Http/Controllers/Api/apidoc.php"
|
||||||
|
|||||||
1
docker/office/resources/require.js
vendored
1
docker/office/resources/require.js
vendored
@ -52,7 +52,6 @@
|
|||||||
window._disableDownload = setInterval(function() {
|
window._disableDownload = setInterval(function() {
|
||||||
var downloadBtn = document.getElementById("slot-hbtn-download")
|
var downloadBtn = document.getElementById("slot-hbtn-download")
|
||||||
if(downloadBtn) {
|
if(downloadBtn) {
|
||||||
console.log(1)
|
|
||||||
clearInterval(window._disableDownload);
|
clearInterval(window._disableDownload);
|
||||||
document.getElementById("slot-hbtn-download")?.remove()
|
document.getElementById("slot-hbtn-download")?.remove()
|
||||||
document.getElementById("fm-btn-download")?.remove()
|
document.getElementById("fm-btn-download")?.remove()
|
||||||
|
|||||||
6
electron/build.js
vendored
6
electron/build.js
vendored
@ -229,14 +229,16 @@ function startBuild(data) {
|
|||||||
fs.writeFileSync(indexFile, indexString, 'utf8');
|
fs.writeFileSync(indexFile, indexString, 'utf8');
|
||||||
//
|
//
|
||||||
if (data.id === 'app') {
|
if (data.id === 'app') {
|
||||||
|
const eeuiDir = path.resolve(__dirname, "../resources/mobile");
|
||||||
|
const eeuiCli = "kuaifan/eeui-cli:0.0.1"
|
||||||
const publicDir = path.resolve(__dirname, "../resources/mobile/src/public");
|
const publicDir = path.resolve(__dirname, "../resources/mobile/src/public");
|
||||||
fse.removeSync(publicDir)
|
fse.removeSync(publicDir)
|
||||||
fse.copySync(electronDir, publicDir)
|
fse.copySync(electronDir, publicDir)
|
||||||
if (argv[3] === "setting") {
|
if (argv[3] === "setting") {
|
||||||
child_process.spawnSync("eeui", ["setting"], {stdio: "inherit", cwd: "resources/mobile"});
|
child_process.spawnSync("docker", `run -it --rm -v ${eeuiDir}:/work -w /work ${eeuiCli} eeui setting`.split(" "), {stdio: "inherit", cwd: "resources/mobile"});
|
||||||
}
|
}
|
||||||
if (['setting', 'build'].includes(argv[3])) {
|
if (['setting', 'build'].includes(argv[3])) {
|
||||||
child_process.spawnSync("eeui", ["build", "--simple"], {stdio: "inherit", cwd: "resources/mobile"});
|
child_process.spawnSync("docker", `run -it --rm -v ${eeuiDir}:/work -w /work ${eeuiCli} eeui build --simple`.split(" "), {stdio: "inherit", cwd: "resources/mobile"});
|
||||||
} else {
|
} else {
|
||||||
[
|
[
|
||||||
path.resolve(publicDir, "../../platforms/ios/eeuiApp/bundlejs/eeui/public"),
|
path.resolve(publicDir, "../../platforms/ios/eeuiApp/bundlejs/eeui/public"),
|
||||||
|
|||||||
2
resources/assets/js/store/actions.js
vendored
2
resources/assets/js/store/actions.js
vendored
@ -4021,6 +4021,8 @@ export default {
|
|||||||
* @param state
|
* @param state
|
||||||
* @param type
|
* @param type
|
||||||
* @param meetingid
|
* @param meetingid
|
||||||
|
* @param meetingdisabled
|
||||||
|
* @param meetingSharekey
|
||||||
*/
|
*/
|
||||||
showMeetingWindow({state}, {type, meetingid, meetingdisabled, meetingSharekey}) {
|
showMeetingWindow({state}, {type, meetingid, meetingdisabled, meetingSharekey}) {
|
||||||
state.meetingWindow = {
|
state.meetingWindow = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user