基础模块文件夹建立
This commit is contained in:
parent
9236d34a6a
commit
14f0bc1732
|
|
@ -0,0 +1,18 @@
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
/** 新增工程 */
|
||||||
|
export const addProjectApi = (data) => {
|
||||||
|
return request.post('/xxx/xx', data)
|
||||||
|
}
|
||||||
|
/** 删除工程 */
|
||||||
|
export const deleteProjectApi = (id) => {
|
||||||
|
return request.delete('/xxx/xx', id)
|
||||||
|
}
|
||||||
|
/** 修改工程 */
|
||||||
|
export const editProjectApi = (data) => {
|
||||||
|
return request.post('/xxx/xx', data)
|
||||||
|
}
|
||||||
|
/** 工程列表查询 */
|
||||||
|
export const queryProjectListApi = (data) => {
|
||||||
|
return request.post('/xxx/xx', data)
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 往来单位 -->
|
||||||
|
<div> 往来单位 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 机具供应商 -->
|
||||||
|
<div> 机具供应商 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 工程管理 -->
|
||||||
|
<div> 工程管理 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 协议管理 -->
|
||||||
|
<div> 协议管理 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 单位类型 -->
|
||||||
|
<div> 单位类型 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
Loading…
Reference in New Issue