Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
880ffe12
authored
2022-11-29 17:02:01 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
chore:文件夹整理
1 parent
062fcba2
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
34 deletions
src/api/file.js
src/api/fileController.js
src/api/lpb.js
src/api/zhcx.js
src/views/lpb/lpbContent/index.vue
src/views/system/sqywgz/components/editDialog.vue
src/views/zhcx/djbcx/djbcx.vue
src/views/zhcx/lpcx/lpcx.vue
src/api/file.js
View file @
880ffe1
import
request
from
'@/utils/request'
import
SERVER
from
'./config'
export
function
uploadUrl
()
{
return
process
.
env
.
VUE_APP_BASE_API
+
SERVER
.
SERVERAPI
+
'/file/upload'
}
// 上传单个文件
export
function
sjClmxUpload
(
data
)
{
return
request
({
...
...
src/api/fileController.js
deleted
100644 → 0
View file @
062fcba
import
SERVER
from
'./config'
class
fileController
{
uploadUrl
()
{
return
process
.
env
.
VUE_APP_BASE_API
+
SERVER
.
SERVERAPI
+
'/file/upload'
}
}
export
default
new
fileController
()
src/api/lpb.js
deleted
100644 → 0
View file @
062fcba
import
request
from
'@/utils/request'
import
SERVER
from
'./config'
/*
楼盘查询
*/
// 根据条件进行列表查询
export
function
getLpZrz
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpZrz'
,
method
:
'post'
,
data
:
data
})
}
// 获取楼盘表
export
function
getLpb
(
zrzbsm
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpb?zrzbsm='
+
zrzbsm
,
method
:
'get'
})
}
src/api/zhcx.js
View file @
880ffe1
...
...
@@ -140,3 +140,24 @@ export function getJdcxBysearch (data) {
data
})
}
/*
楼盘查询
*/
// 根据条件进行列表查询
export
function
getLpZrz
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpZrz'
,
method
:
'post'
,
data
:
data
})
}
// 获取楼盘表
export
function
getLpb
(
zrzbsm
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpb?zrzbsm='
+
zrzbsm
,
method
:
'get'
})
}
...
...
src/views/lpb/lpbContent/index.vue
View file @
880ffe1
...
...
@@ -189,7 +189,7 @@
</div>
</
template
>
<
script
>
import
{
getLpb
}
from
'@/api/
lpb
'
import
{
getLpb
}
from
'@/api/
zhcx
'
import
{
Message
}
from
'element-ui'
;
import
hbj
from
"../hbj/lpb-hbj/index"
;
export
default
{
...
...
src/views/system/sqywgz/components/editDialog.vue
View file @
880ffe1
...
...
@@ -122,9 +122,8 @@
</div>
</dialogBox>
</
template
>
<
script
>
import
fileController
from
'@/api/fileController
'
import
{
uploadUrl
}
from
'@/api/file
'
import
djqxsd
from
'./djqxsd.vue'
import
clgzsd
from
'./clgzsd.vue'
import
dyztsd
from
'./dyztsd.vue'
...
...
@@ -170,7 +169,7 @@ export default {
btnDisabled
:
false
,
tn
:
0
,
titleList
:
[],
imgUploadUrl
:
fileController
.
uploadUrl
(),
imgUploadUrl
:
uploadUrl
(),
n
:
0
,
leftList
:
[
{
...
...
src/views/zhcx/djbcx/djbcx.vue
View file @
880ffe1
...
...
@@ -52,10 +52,10 @@
</div>
</
template
>
<
script
>
import
{
mapGetters
}
from
"vuex"
;
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./djbcxdata"
;
import
{
getDjbBysearch
}
from
"@/api/zhcx.js"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
name
:
"djbcx"
,
...
...
src/views/zhcx/lpcx/lpcx.vue
View file @
880ffe1
...
...
@@ -50,7 +50,7 @@
<
script
>
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./lpcxdata"
;
import
{
getLpZrz
,
getLpb
}
from
"@/api/
lpb
.js"
;
import
{
getLpZrz
,
getLpb
}
from
"@/api/
zhcx
.js"
;
export
default
{
name
:
"lpcx"
,
components
:
{},
...
...
Please
register
or
sign in
to post a comment