注释分享相关代码

This commit is contained in:
fofolee 2024-01-23 00:27:27 +08:00
parent 632adf11e1
commit 5f00c125d9

View File

@ -233,9 +233,9 @@
@delCrontab="delCrontab" @delCrontab="delCrontab"
/> />
</q-dialog> </q-dialog>
<q-dialog v-model="showShare"> <!-- <q-dialog v-model="showShare">
<ShareDialog :command="getRawCommand(commandInfo)" /> <ShareDialog :command="getRawCommand(commandInfo)" />
</q-dialog> </q-dialog> -->
</div> </div>
</template> </template>
@ -243,10 +243,13 @@
import commandTypes from "../js/options/commandTypes.js"; import commandTypes from "../js/options/commandTypes.js";
import platformTypes from "../js/options/platformTypes.js"; import platformTypes from "../js/options/platformTypes.js";
import CrontabSetting from "components/popup/CrontabSetting"; import CrontabSetting from "components/popup/CrontabSetting";
import ShareDialog from "components/popup/ShareDialog"; // import ShareDialog from "components/popup/ShareDialog";
export default { export default {
components: { CrontabSetting, ShareDialog }, components: {
CrontabSetting,
// ShareDialog
},
data() { data() {
return { return {
allProgrammings: this.$root.programs, allProgrammings: this.$root.programs,
@ -254,7 +257,7 @@ export default {
commandTypes: commandTypes, commandTypes: commandTypes,
platformTypes: platformTypes, platformTypes: platformTypes,
showCrontab: false, showCrontab: false,
showShare: false, // showShare: false,
cronJob: null, cronJob: null,
showCtrlButtons: false, showCtrlButtons: false,
}; };