Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
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
b69a9a67
authored
2021-02-03 16:32:11 +0800
by
宋力
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
土地承包经营权、农用地其他使用权调查表
1 parent
195c6ba6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
39 additions
and
22 deletions
.env
src/api/tdcb.js
src/store/index.js
src/views/Home.vue
src/views/zd/tdcb/index.vue
vue.config.js
.env
View file @
b69a9a6
VUE_APP_api = 'https://192.168.2.111:8006'
VUE_APP_api1 = 'https://127.0.0.1:8006'
VUE_APP_api2 = 'https://192.168.2.9:8006'
VUE_APP_api3 = 'https://192.168.2.11:8006'
VUE_APP_api4 = 'http://192.168.2.111:18080'
VUE_APP_api5 = 'https://192.168.2.142:8006'
VUE_APP_name = '开发环境'
NODE_ENV="development"
VUE_APP_VERSION = 'psh'
...
...
src/api/tdcb.js
0 → 100644
View file @
b69a9a6
import
request
from
'@/plugin/axios'
/**
* 查询土地承包经营权、农用地其他使用权调查表基本信息
*/
export
function
getQjTdcbjyqNydqtsyqdcDetailByZdbsm
(
data
)
{
return
request
({
url
:
'/zd/qjTdcbjyqNydqtsyqdc/getQjTdcbjyqNydqtsyqdcDetailByZdbsm'
,
method
:
'get'
,
params
:
{
zdbsm
:
data
,
}
})
}
/**
* 保存权籍_土地承包经营权、农用地其他使用权调查基本信息
*/
export
function
saveOrUpdateQjTdcbjyqNydqtsyqdc
(
data
)
{
return
request
({
url
:
'/zd/qjTdcbjyqNydqtsyqdc/saveOrUpdateQjTdcbjyqNydqtsyqdc'
,
method
:
'post'
,
data
:
data
,
})
}
src/store/index.js
View file @
b69a9a6
...
...
@@ -55,6 +55,9 @@ const store = new Vuex.Store({
newZdbsm
:
''
,
isWorkFlow
:
false
,
// 判断是否工作流数据
lcgzShow
:
false
,
//是否待办箱的数据,显示流程追踪
familyList
:[],
//家庭关系分类
syttlx
:[],
//水域滩涂类型
yzyfs
:[]
//养殖业方式
},
modules
:
{
user
,
...
...
src/views/Home.vue
View file @
b69a9a6
...
...
@@ -321,6 +321,10 @@ export default {
s
.
cqlyOptions
=
s
.
cqlyOptions
.
length
==
0
?
await
this
.
getDicData
(
"产权来源"
)
:
s
.
cqlyOptions
;
s
.
jgOptions
=
s
.
jgOptions
.
length
==
0
?
await
this
.
getDicData
(
"房屋结构"
)
:
s
.
jgOptions
;
s
.
gmjjhyflbsmList
=
s
.
gmjjhyflbsmList
.
length
==
0
?
await
this
.
getDicData
(
"国民经济行业分类代码"
)
:
s
.
gmjjhyflbsmList
;
s
.
familyList
=
s
.
familyList
.
length
==
0
?
await
this
.
getDicData
(
"家庭成员"
)
:
s
.
familyList
;
s
.
syttlx
=
s
.
syttlx
.
length
==
0
?
await
this
.
getDicData
(
"水域滩涂类型"
)
:
s
.
syttlx
;
s
.
yzyfs
=
s
.
yzyfs
.
length
==
0
?
await
this
.
getDicData
(
"养殖业方式"
)
:
s
.
yzyfs
;
},
async
getDicData
(
name
)
{
return
await
getDdicByMC
(
name
).
then
((
res
)
=>
{
...
...
src/views/zd/tdcb/index.vue
View file @
b69a9a6
This diff is collapsed.
Click to expand it.
vue.config.js
View file @
b69a9a6
...
...
@@ -5,7 +5,6 @@ let Timestamp = new Date().getTime();
function
resolve
(
dir
)
{
return
path
.
join
(
__dirname
,
dir
)
}
const
UglifyJsPlugin
=
require
(
"uglifyjs-webpack-plugin"
);
module
.
exports
=
{
publicPath
:
'./'
,
...
...
@@ -20,7 +19,6 @@ module.exports = {
.
set
(
'@libs'
,
resolve
(
'src/libs'
))
.
set
(
'@router'
,
resolve
(
'src/router'
))
.
set
(
'@components'
,
resolve
(
'src/components'
))
.
set
(
'@assets'
,
resolve
(
'src/assets'
))
},
pluginOptions
:
{
'style-resources-loader'
:
{
...
...
@@ -33,17 +31,9 @@ module.exports = {
filename
:
`js/[name].
${
Timestamp
}
.js`
,
chunkFilename
:
`js/[name].
${
Timestamp
}
.js`
},
plugins
:
[
// 去除console和debugger
// new UglifyJsPlugin({
// uglifyOptions: {
// compress: {
// drop_console: true,
// drop_debugger: true,
// },
// },
// parallel: true,
// }),
devtool
:
'source-map'
// plugins: [
// new FileManagerPlugin({ //初始化 filemanager-webpack-plugin 插件实例
// onEnd: {
// mkdir: ['./zip','./dist'], //初始化生产zip和dist文件夹
...
...
@@ -52,20 +42,16 @@ module.exports = {
// ]
// }
// })
]
//
]
},
devServer
:
{
host
:
"192.168.2.61"
,
host
:
"0.0.0.0"
,
port
:
800
8
,
port
:
800
6
,
https
:
false
,
hotOnly
:
false
,
proxy
:
{
"/api"
:
{
// target: 'https://192.168.2.119:8006', //泽平
// target: process.env.VUE_APP_api1, //本地
target
:
process
.
env
.
VUE_APP_api
,
//赵千
// target: process.env.VUE_APP_api4, //赵千
target
:
process
.
env
.
VUE_APP_api
,
changeOrigin
:
true
,
pathRewrite
:
{
"^/api"
:
"/"
,
...
...
Please
register
or
sign in
to post a comment