58 lines
1.6 KiB
Vue
58 lines
1.6 KiB
Vue
<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>
|