first commit

This commit is contained in:
2026-01-08 14:58:16 +08:00
commit 556e5d64aa
9575 changed files with 1621095 additions and 0 deletions
@@ -0,0 +1,57 @@
<template>
<div>
<el-card v-if="!visible">
<div></div>
2222222222222222222222222222222222222222 2222222222222222222222222222222222222222 2222222222222222222222222222222222222222
2222222222222222222222222222222222222222 申请需要的说明 流程图等等等等等等等等等等
<el-row :gutter="10">
<el-button type="primary" @click="onStart">开始申请</el-button>
</el-row>
</el-card>
<template v-if="visible">
<slot></slot>
</template>
</div>
</template>
<script>
module.exports = {
name: "index",
props: {},
data() {
return {
visible: false,
taskId: parseInt(GetQueryString("TASK_ID"))
}
},
methods: {
onStart() {
const loading = this.$loading({
lock: true,
text: "Loading",
spinner: "el-icon-loading",
background: "rgba(0, 0, 0, 0.7)"
})
$.post(loc() + "/startProcess").then((res) => {
if (res.code === 0) {
this.$emit("task_id", res.data.taskId)
this.$emit("business_id", res.data.businessId)
setTimeout(() => {
loading.close()
this.visible = true
}, 1000)
}
})
}
},
created() {
if (this.taskId) {
this.visible = true
}
}
}
</script>
<style scoped></style>