|
|
|
@ -8,6 +8,7 @@
|
|
|
|
|
<a-spin :spinning="dloading">
|
|
|
|
|
<div class="ds-card">
|
|
|
|
|
<a-button @click="save" type="link">保存</a-button>
|
|
|
|
|
<a-button @click="deleteItem" type="link">删除</a-button>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 表单区域 -->
|
|
|
|
|
<div class="form-area">
|
|
|
|
@ -47,6 +48,7 @@
|
|
|
|
|
import { onMounted, ref } from 'vue'
|
|
|
|
|
import { BasicTable, useTable } from '/@/components/Table'
|
|
|
|
|
import { useMessage } from '/@/hooks/web/useMessage'
|
|
|
|
|
import { closePage } from '/@/hooks/web/common'
|
|
|
|
|
import { BasicForm, useForm } from '/@/components/Form'
|
|
|
|
|
import ApplyInfo from './components/applyInfo.vue'
|
|
|
|
|
// 业务表格
|
|
|
|
@ -153,6 +155,10 @@
|
|
|
|
|
init()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 删除
|
|
|
|
|
const deleteItem = () => {
|
|
|
|
|
closePage()
|
|
|
|
|
}
|
|
|
|
|
// 详情页面初始化
|
|
|
|
|
const init = () => {
|
|
|
|
|
const id = route.query.id
|
|
|
|
|