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
f4e97ca9
authored
2022-10-25 15:40:25 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
申请记录查询详情修改
1 parent
4edb3a5b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
25 deletions
src/api/sqcxjl.js
src/views/sqcx/sqcxjl/components/sqcxjlInfo.vue
src/views/sqcx/sqcxjl/sqcxjl.vue
src/api/sqcxjl.js
0 → 100644
View file @
f4e97ca
import
request
from
'@/utils/request'
// 获取申请查询记录详细信息
export
function
getJtfcInfo
(
params
)
{
return
request
({
url
:
'/sqcx/jtfc/getJtfcInfo/'
,
method
:
'get'
,
params
})
}
src/views/sqcx/sqcxjl/components/sqcxjlInfo.vue
View file @
f4e97ca
...
...
@@ -31,6 +31,7 @@
<el-col>
<lb-table
:column=
"sqrData.columns"
border
:data=
"sqrData.data"
:maxHeight=
"200"
heightNumSetting
...
...
@@ -52,6 +53,7 @@
<el-col>
<lb-table
:column=
"qlrData.columns"
border
:data=
"qlrData.data"
:maxHeight=
"200"
heightNumSetting
...
...
@@ -77,6 +79,7 @@
<el-row>
<el-col>
<lb-table
border
:column=
"cxjgData.columns"
:data=
"cxjgData.data"
:maxHeight=
"200"
...
...
@@ -91,7 +94,7 @@
</
template
>
<
script
>
import
{
addJtfcCxjgXx
}
from
"@/api/jtfc
"
;
import
{
getJtfcInfo
}
from
"@/api/sqcxjl
"
;
import
{
datas
,
sendThis
}
from
"./sqcxjlInfodata"
;
export
default
{
...
...
@@ -101,12 +104,9 @@ export default {
// },
props
:
[
"formData"
],
mounted
()
{
sendThis
(
this
);
// var bdcdyid: this.formData.bdcdyid,
created
()
{
// debugger;
// alert(this.formData.sqcxBsm);
},
data
()
{
...
...
@@ -133,6 +133,26 @@ export default {
},
};
},
mounted
()
{
debugger
;
sendThis
(
this
);
var
sqcxBsm
=
this
.
formData
.
sqcxBsm
;
getJtfcInfo
({
sqcxBsm
:
sqcxBsm
})
.
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
sqrData
.
data
=
res
.
result
.
sqxx
;
this
.
qlrData
.
data
=
res
.
result
.
qlrxx
;
this
.
cxjgData
.
data
=
res
.
result
.
djSqcxCxjgDOList
;
}
})
.
catch
((
error
)
=>
{
console
.
log
(
error
);
});
},
methods
:
{},
};
</
script
>
...
...
src/views/sqcx/sqcxjl/sqcxjl.vue
View file @
f4e97ca
...
...
@@ -100,23 +100,7 @@ export default {
},
// 查看
handleView
(
scope
)
{
debugger
;
// this.isDialog = true
var
sqcxBsm
=
scope
.
row
.
bsmSqcx
;
getLpb
({
zrzbsm
:
zrzbsm
})
.
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
var
lpbdata
=
res
.
result
;
}
})
.
catch
((
error
)
=>
{
console
.
log
(
error
);
});
let
that
=
this
;
this
.
$popup
({
title
:
"申请查询记录"
,
width
:
"85%"
,
...
...
@@ -124,8 +108,7 @@ export default {
editItem
:
"sqcx/sqcxjl/components/sqcxjlInfo"
,
// 弹窗内容
height
:
"700px"
,
formData
:
{
bsmSlsq
:
this
.
bsmSlsq
,
dataList
:
this
.
unitData
,
sqcxBsm
:
sqcxBsm
,
},
cancel
:
function
()
{},
//取消事件的回调
confirm
:
function
()
{
...
...
Please
register
or
sign in
to post a comment