Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fulixin
dsk-operate-sys-cscec
Commits
852bedab
Commit
852bedab
authored
Jan 09, 2024
by
tianhongyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
3477f4ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
9 deletions
+36
-9
index.js
dsk-operate-ui/src/api/consultingOrgManagement/index.js
+13
-0
consultingAgency.vue
...ent/components/EnterpriseList/detail/consultingAgency.vue
+23
-9
No files found.
dsk-operate-ui/src/api/consultingOrgManagement/index.js
View file @
852bedab
...
@@ -42,4 +42,17 @@ export const getgetConsultingOrgProjectDetailApi = (params) => request({
...
@@ -42,4 +42,17 @@ export const getgetConsultingOrgProjectDetailApi = (params) => request({
url
:
"/advisory/body/getProjectDetail"
,
url
:
"/advisory/body/getProjectDetail"
,
method
:
"get"
,
method
:
"get"
,
params
params
});
/**
* 查询咨询机构
* @param {*} advisoryBodyName
* @returns
*/
export
const
searchConsultingApi
=
(
advisoryBodyName
)
=>
request
({
url
:
"/advisory/body/checkAdvisoryBodyExist"
,
method
:
"get"
,
params
:
{
advisoryBodyName
}
});
});
\ No newline at end of file
dsk-operate-ui/src/views/consultingOrgManagement/components/EnterpriseList/detail/consultingAgency.vue
View file @
852bedab
...
@@ -14,14 +14,15 @@
...
@@ -14,14 +14,15 @@
<tr>
<tr>
<td
class=
"table-key"
>
咨询机构名称
</td>
<td
class=
"table-key"
>
咨询机构名称
</td>
<td>
<td>
<!--
<transition
mode=
"out-in"
name=
"edit-fade"
>
-->
<transition
mode=
"out-in"
name=
"edit-fade"
>
<div
class=
"normal-value"
v-if=
"!comIsModify"
>
<div
class=
"normal-value"
v-if=
"!comIsModify"
>
{{
comProjectDetailInfo
.
advisoryBody
&&
comProjectDetailInfo
.
advisoryBody
.
advisoryBodyName
?
comProjectDetailInfo
.
advisoryBody
.
advisoryBodyName
:
"-"
}}
{{
comProjectDetailInfo
.
advisoryBody
&&
comProjectDetailInfo
.
advisoryBody
.
advisoryBodyName
?
comProjectDetailInfo
.
advisoryBody
.
advisoryBodyName
:
"-"
}}
</div>
</div>
<el-form-item
label=
""
v-if=
"comIsModify"
>
<el-form-item
label=
""
v-if=
"comIsModify"
>
<el-input
v-model=
"comProjectDetailInfo.advisoryBody.advisoryBodyName"
clearable
v-focus
></el-input>
<el-input
v-model=
"comProjectDetailInfo.advisoryBody.advisoryBodyName"
clearable
v-focus
placeholder=
"请输入完整咨询机构名称"
</el-form-item>
@
input=
"searchConsulting"
></el-input>
<!--
</transition>
-->
</el-form-item>
</transition>
</td>
</td>
<td
class=
"table-key"
>
法人代表
</td>
<td
class=
"table-key"
>
法人代表
</td>
<td>
<td>
...
@@ -100,6 +101,7 @@
...
@@ -100,6 +101,7 @@
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
searchConsultingApi
}
from
"@/api/consultingOrgManagement"
;
export
default
{
export
default
{
name
:
"consultingAgency"
,
name
:
"consultingAgency"
,
props
:
{
props
:
{
...
@@ -138,7 +140,8 @@ export default {
...
@@ -138,7 +140,8 @@ export default {
rules
:
{
rules
:
{
},
},
tableKeyWidth
:
0
tableKeyWidth
:
0
,
searchTimer
:
null
};
};
},
},
//可访问data属性
//可访问data属性
...
@@ -177,6 +180,17 @@ export default {
...
@@ -177,6 +180,17 @@ export default {
},
},
cancelModify
()
{
cancelModify
()
{
this
.
comProjectDetailInfo
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
oldComProjectDetailInfo
));
this
.
comProjectDetailInfo
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
oldComProjectDetailInfo
));
},
async
searchConsulting
(
keywords
)
{
try
{
}
catch
(
error
)
{
}
},
clearSearchTimer
()
{
clearTimeout
(
this
.
searchTimer
);
this
.
searchTimer
=
null
;
}
}
},
},
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment