Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
c02892fb
authored
2023-01-17 17:55:16 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcjg-web
2 parents
8dd2ad05
9491b6d8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
90 additions
and
13 deletions
src/api/sbbwcx.js
src/components/business/djtDjSlsq.vue
src/styles/element-ui.scss
src/views/jsbwcx/components/result.vue
src/views/jsbwcx/index.vue
src/views/system/dictionaries/dictionaries.vue
src/api/sbbwcx.js
View file @
c02892f
...
...
@@ -49,3 +49,13 @@ export function getDetail (params) {
})
}
// 结果
export
function
getReceiveDataReportResult
(
bsmReport
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/sjsb/DataReport/getReceiveDataReportResult'
,
method
:
'get'
,
params
:
{
bsmReport
:
bsmReport
}
})
}
\ No newline at end of file
...
...
src/components/business/djtDjSlsq.vue
View file @
c02892f
...
...
@@ -69,7 +69,7 @@
<p
class=
"label-detail"
>
(SQZSBS)
</p>
</span>
<el-select
:disabled=
"$store.state.business.Edit"
v-model=
"ruleForm.SQZSBS"
placeholder=
"申请证书版式"
>
<el-option
v-for=
"item in dicData['A41']"
:key=
"item.DCODE"
:label=
"item.DNAME"
:value=
"item.DCODE"
>
<el-option
v-for=
"item in dicData['A41']"
:key=
"item.DCODE"
:label=
"item.DNAME"
:value=
"item.DCODE
-0
"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -178,7 +178,7 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-col
:span=
"8"
>
<el-form-item
prop=
"SFWTAJ"
>
<span
slot=
"label"
>
是否问题案件:
<br
/>
...
...
@@ -245,7 +245,7 @@ export default {
default
:
""
,
},
},
data
()
{
data
()
{
return
{
ruleForm
:
{
YSDM
:
""
,
...
...
@@ -271,7 +271,7 @@ export default {
};
},
methods
:
{
async
featchData
()
{
async
featchData
()
{
try
{
let
{
result
:
res
}
=
await
business
.
getDjtDjSlsqById
(
this
.
bsmSjsb
);
this
.
ruleForm
=
res
;
...
...
@@ -280,7 +280,7 @@ export default {
this
.
$refs
.
msg
.
messageShow
();
}
},
handleUpdateForm
()
{
handleUpdateForm
()
{
return
new
Promise
(
async
(
resolve
)
=>
{
try
{
let
res
=
await
business
.
updateDjtDjSlsq
(
this
.
ruleForm
);
...
...
src/styles/element-ui.scss
View file @
c02892f
...
...
@@ -57,7 +57,8 @@
}
}
.el-icon-date
{
.el-icon-date
,
.el-icon-time
{
display
:
none
;
}
...
...
@@ -65,6 +66,7 @@
// refine element ui upload
.el-input.is-disabled
.el-input__inner
{
color
:
#FFFFFF
!
important
;
background-color
:
transparent
!
important
;
}
.upload-container
{
...
...
src/views/jsbwcx/components/result.vue
0 → 100644
View file @
c02892f
<!--
功能:结果
作者:calliope
-->
<
template
>
<div
class=
'result'
>
<p>
响应xml
</p>
<el-input
type=
"textarea"
:rows=
"6"
class=
"resulttext"
placeholder=
"请输入内容"
v-model=
"REPMSGXML"
>
</el-input>
<p>
错误信息
</p>
<el-input
type=
"textarea"
:rows=
"6"
class=
"resulttext"
placeholder=
"请输入内容"
v-model=
"ERRORINFO"
>
</el-input>
</div>
</
template
>
<
script
>
import
{
getReceiveDataReportResult
}
from
"@/api/sbbwcx.js"
;
export
default
{
components
:
{},
props
:
{
formData
:
{
type
:
Object
,
default
:
{}
}
},
data
()
{
return
{
REPMSGXML
:
''
,
ERRORINFO
:
''
,
}
},
created
()
{
getReceiveDataReportResult
(
this
.
formData
.
bsmReport
).
then
(
res
=>
{
let
data
=
res
.
result
this
.
REPMSGXML
=
data
.
REPMSGXML
this
.
ERRORINFO
=
data
.
ERRORINFO
})
}
}
</
script
>
<
style
scoped
lang=
'scss'
>
@import
'~@/styles/public.scss'
;
.result
{
padding
:
15px
;
p
{
color
:
#ffffff
;
line-height
:
26px
;
font-size
:
18px
;
}
}
/
deep
/
.el-textarea__inner
{
min-height
:
33vh
!important
;
background-color
:
#08346F
!important
;
color
:
#ffffff
;
border
:
none
!important
;
}
</
style
>
\ No newline at end of file
src/views/jsbwcx/index.vue
View file @
c02892f
...
...
@@ -185,7 +185,9 @@ export default {
>
详情
<
/el-button
>
<
el
-
button
type
=
"primary"
>
结果
<
/el-button
>
<
el
-
button
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleResult
(
scope
.
row
);
}}
>
结果
<
/el-button
>
<
/div
>
)
}
...
...
@@ -226,6 +228,10 @@ export default {
featchData
()
{
this
.
pageData
.
currentPage
=
1
this
.
queryClick
();
},
// 结果
handleResult
(
row
)
{
this
.
$popupDialog
(
'响应结果'
,
'views/jsbwcx/components/result'
,
row
)
}
}
}
...
...
src/views/system/dictionaries/dictionaries.vue
View file @
c02892f
...
...
@@ -2,7 +2,7 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
@
submit
.
native
.
prevent
:model=
"ruleForm"
label-width=
"120px"
>
<el-form
@
submit
.
native
.
prevent
:model=
"ruleForm"
label-width=
"120px"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"字典类型编码"
>
...
...
@@ -14,7 +14,7 @@
<el-input
v-model=
"ruleForm.dname"
@
clear=
"queryClick"
clearable
placeholder=
"字典类型名称"
></el-input>
</el-form-item>
</el-col>
<!-- 操作按钮 -->
<!-- 操作按钮 -->
<el-col
:span=
"12"
class=
"btnColRight"
>
<btn
nativeType=
"cx"
@
click=
"queryClick"
>
查询
</btn>
...
...
@@ -71,8 +71,8 @@ export default {
<
div
>
{
scope
.
row
.
isenable
==
'1'
?
<
el
-
button
type
=
"text"
icon
=
"el-icon-edit-outline"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
row
,
1
)
}}
>
修改
<
/el-button>
:
<
el
-
button
type
=
"text"
icon
=
"el-icon-view"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
row
,
2
)
}}
>
查看
<
/el-button
>
<
el
-
button
type
=
"text"
icon
=
"el-icon-edit-outline"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
row
,
1
)
}}
>
修改
<
/el-button>
:
<
el
-
button
type
=
"text"
icon
=
"el-icon-view"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
row
,
2
)
}}
>
查看
<
/el-button
>
}
<
/div
>
);
...
...
@@ -86,9 +86,9 @@ export default {
methods
:
{
// 初始化数据
queryClick
()
{
this
.
$startLoading
();
//
this.$startLoading();
getQlxxDictList
({
...
this
.
ruleForm
,
...
this
.
pageData
}).
then
(
res
=>
{
this
.
$endLoading
();
//
this.$endLoading();
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
?
records
:
[]
this
.
tableData
.
total
=
total
?
total
:
0
...
...
Please
register
or
sign in
to post a comment