Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
412027b6
Commit
412027b6
authored
Jun 27, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.scsmile.cn/zxf/smart_gov_platform
parents
2f2bc10e
c8fc9728
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
155 additions
and
15 deletions
+155
-15
base-manager/src/main/java/com/mortals/xhx/module/window/model/WindowEntity.java
...ava/com/mortals/xhx/module/window/model/WindowEntity.java
+14
-1
base-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowBusinessServiceImpl.java
...module/window/service/impl/WindowBusinessServiceImpl.java
+1
-1
base-manager/src/main/java/com/mortals/xhx/module/window/web/WindowController.java
...a/com/mortals/xhx/module/window/web/WindowController.java
+52
-0
base-manager/src/main/java/com/mortals/xhx/module/workman/web/WorkmanController.java
...com/mortals/xhx/module/workman/web/WorkmanController.java
+10
-0
base-manager/src/test/java/com/mortals/httpclient/system/system.http
...r/src/test/java/com/mortals/httpclient/system/system.http
+1
-1
base-manager/src/test/java/com/mortals/httpclient/window/WindowController.http
.../java/com/mortals/httpclient/window/WindowController.http
+7
-0
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/callRecordForm.vue
...dataAdmin/components/networkGovernance/callRecordForm.vue
+1
-1
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/letterRecordForm.vue
...taAdmin/components/networkGovernance/letterRecordForm.vue
+1
-1
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+42
-2
portal-manager-ui/admin/src/views/thePlatformIsSet/components/APIServe/APIServe.vue
...c/views/thePlatformIsSet/components/APIServe/APIServe.vue
+22
-7
portal-manager-ui/admin/src/views/thePlatformIsSet/components/menuManagement/menuMgmt.vue
...s/thePlatformIsSet/components/menuManagement/menuMgmt.vue
+3
-1
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/productManage.vue
...ePlatformIsSet/components/productManage/productManage.vue
+1
-0
No files found.
base-manager/src/main/java/com/mortals/xhx/module/window/model/WindowEntity.java
View file @
412027b6
...
@@ -35,38 +35,47 @@ public class WindowEntity extends WindowVo {
...
@@ -35,38 +35,47 @@ public class WindowEntity extends WindowVo {
/**
/**
* 窗口名称
* 窗口名称
*/
*/
@Excel
(
name
=
"窗口名称"
)
private
String
name
;
private
String
name
;
/**
/**
* 英语窗口名
* 英语窗口名
*/
*/
@Excel
(
name
=
"窗口英语名"
)
private
String
englishName
;
private
String
englishName
;
/**
/**
* 区域
* 区域
*/
*/
@Excel
(
name
=
"用户名"
)
private
String
region
;
private
String
region
;
/**
/**
* 英语区域
* 英语区域
*/
*/
@Excel
(
name
=
"用户名"
)
private
String
englishRegion
;
private
String
englishRegion
;
/**
/**
* 窗口编号
* 窗口编号
*/
*/
@Excel
(
name
=
"用户名"
)
private
String
fromnum
;
private
String
fromnum
;
/**
/**
* 红旗窗口 (1.是,0.否)
* 红旗窗口 (1.是,0.否)
*/
*/
@Excel
(
name
=
"红旗窗口"
,
combo
={
"是"
,
"否"
},
readConverterExp
=
"1=是,0=否"
)
private
Integer
hongqi
;
private
Integer
hongqi
;
/**
/**
* 无人值守(1.是
,
)
* 无人值守(1.是)
*/
*/
@Excel
(
name
=
"无人值守"
,
combo
={
"是"
,
"否"
},
readConverterExp
=
"1=是,0=否"
)
private
Integer
duty
;
private
Integer
duty
;
/**
/**
* 显示内容
* 显示内容
*/
*/
@Excel
(
name
=
"显示内容"
)
private
String
dutyContent
;
private
String
dutyContent
;
/**
/**
* 显示英文
* 显示英文
*/
*/
@Excel
(
name
=
"显示英文"
)
private
String
dutyEnglish
;
private
String
dutyEnglish
;
/**
/**
* 备注
* 备注
...
@@ -75,18 +84,22 @@ public class WindowEntity extends WindowVo {
...
@@ -75,18 +84,22 @@ public class WindowEntity extends WindowVo {
/**
/**
* 楼栋
* 楼栋
*/
*/
@Excel
(
name
=
"楼栋"
,
cellType
=
Excel
.
ColumnType
.
NUMERIC
)
private
Integer
building
;
private
Integer
building
;
/**
/**
* 楼层
* 楼层
*/
*/
@Excel
(
name
=
"楼层"
,
cellType
=
Excel
.
ColumnType
.
NUMERIC
)
private
Integer
level
;
private
Integer
level
;
/**
/**
* 名称描述
* 名称描述
*/
*/
@Excel
(
name
=
"名称描述"
)
private
String
nameDesc
;
private
String
nameDesc
;
/**
/**
* 英文名称描述
* 英文名称描述
*/
*/
@Excel
(
name
=
"英文名称描述"
)
private
String
englishNameDesc
;
private
String
englishNameDesc
;
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
...
...
base-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowBusinessServiceImpl.java
View file @
412027b6
...
@@ -68,7 +68,7 @@ public class WindowBusinessServiceImpl extends AbstractCRUDServiceImpl<WindowBus
...
@@ -68,7 +68,7 @@ public class WindowBusinessServiceImpl extends AbstractCRUDServiceImpl<WindowBus
item
.
setHallId
(
windowHallEntity
.
getHallId
());
item
.
setHallId
(
windowHallEntity
.
getHallId
());
item
.
setHallName
(
windowHallEntity
.
getHallName
());
item
.
setHallName
(
windowHallEntity
.
getHallName
());
}
else
{
}
else
{
log
.
info
(
"windowhallEntity is null windowId:{}"
,
item
.
getWindowId
());
//
log.info("windowhallEntity is null windowId:{}",item.getWindowId());
}
}
}
else
{
}
else
{
iterator
.
remove
();
iterator
.
remove
();
...
...
base-manager/src/main/java/com/mortals/xhx/module/window/web/WindowController.java
View file @
412027b6
...
@@ -11,10 +11,15 @@ import com.mortals.framework.util.DataUtil;
...
@@ -11,10 +11,15 @@ import com.mortals.framework.util.DataUtil;
import
com.mortals.framework.web.BaseCRUDJsonBodyMappingController
;
import
com.mortals.framework.web.BaseCRUDJsonBodyMappingController
;
import
com.mortals.framework.web.BasePhpCRUDJsonMappingController
;
import
com.mortals.framework.web.BasePhpCRUDJsonMappingController
;
import
com.mortals.xhx.base.system.param.service.ParamService
;
import
com.mortals.xhx.base.system.param.service.ParamService
;
import
com.mortals.xhx.module.dept.model.DeptEntity
;
import
com.mortals.xhx.module.dept.service.DeptService
;
import
com.mortals.xhx.module.matter.model.MatterEntity
;
import
com.mortals.xhx.module.matter.model.MatterEntity
;
import
com.mortals.xhx.module.site.model.SiteEntity
;
import
com.mortals.xhx.module.site.service.SiteService
;
import
com.mortals.xhx.module.window.model.WindowEntity
;
import
com.mortals.xhx.module.window.model.WindowEntity
;
import
com.mortals.xhx.module.window.service.WindowBusinessService
;
import
com.mortals.xhx.module.window.service.WindowBusinessService
;
import
com.mortals.xhx.module.window.service.WindowService
;
import
com.mortals.xhx.module.window.service.WindowService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
...
@@ -38,10 +43,15 @@ import static com.mortals.framework.ap.SysConstains.PAGEINFO_KEY;
...
@@ -38,10 +43,15 @@ import static com.mortals.framework.ap.SysConstains.PAGEINFO_KEY;
*/
*/
@RestController
@RestController
@RequestMapping
(
"window"
)
@RequestMapping
(
"window"
)
@Slf4j
public
class
WindowController
extends
BaseCRUDJsonBodyMappingController
<
WindowService
,
WindowEntity
,
Long
>
{
public
class
WindowController
extends
BaseCRUDJsonBodyMappingController
<
WindowService
,
WindowEntity
,
Long
>
{
@Autowired
@Autowired
private
ParamService
paramService
;
private
ParamService
paramService
;
@Autowired
private
SiteService
siteService
;
@Autowired
private
DeptService
deptService
;
public
WindowController
()
{
public
WindowController
()
{
...
@@ -49,6 +59,15 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe
...
@@ -49,6 +59,15 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe
super
.
setModuleDesc
(
"站点部门窗口"
);
super
.
setModuleDesc
(
"站点部门窗口"
);
}
}
/**
*
*/
@Override
@UnAuth
public
void
downloadTemplate
()
{
super
.
downloadTemplate
();
}
@Override
@Override
protected
void
init
(
Map
<
String
,
Object
>
model
,
Context
context
)
{
protected
void
init
(
Map
<
String
,
Object
>
model
,
Context
context
)
{
this
.
addDict
(
model
,
"hongqi"
,
paramService
.
getParamBySecondOrganize
(
"Window"
,
"hongqi"
));
this
.
addDict
(
model
,
"hongqi"
,
paramService
.
getParamBySecondOrganize
(
"Window"
,
"hongqi"
));
...
@@ -139,4 +158,37 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe
...
@@ -139,4 +158,37 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe
return
ret
;
return
ret
;
}
}
/**
* @param list
* @param updateSupport
* @param context
* @throws AppException
*/
@Override
public
void
doImportDataBefore
(
List
<
WindowEntity
>
list
,
boolean
updateSupport
,
Context
context
)
throws
AppException
{
String
siteId
=
request
.
getParameter
(
"siteId"
);
String
deptId
=
request
.
getParameter
(
"deptId"
);
log
.
info
(
"siteId:{}"
,
siteId
);
SiteEntity
siteEntity
=
null
;
DeptEntity
deptEntity
=
null
;
if
(!
ObjectUtils
.
isEmpty
(
siteId
))
{
siteEntity
=
siteService
.
get
(
Long
.
parseLong
(
siteId
));
}
if
(!
ObjectUtils
.
isEmpty
(
deptId
))
{
deptEntity
=
deptService
.
get
(
Long
.
parseLong
(
deptId
));
}
for
(
WindowEntity
windowEntity
:
list
)
{
if
(!
ObjectUtils
.
isEmpty
(
siteEntity
))
{
windowEntity
.
setSiteId
(
siteEntity
.
getId
());
windowEntity
.
setSiteName
(
siteEntity
.
getSiteName
());
}
if
(!
ObjectUtils
.
isEmpty
(
deptEntity
))
{
windowEntity
.
setDeptId
(
deptEntity
.
getId
());
windowEntity
.
setDeptName
(
deptEntity
.
getName
());
}
}
}
}
}
\ No newline at end of file
base-manager/src/main/java/com/mortals/xhx/module/workman/web/WorkmanController.java
View file @
412027b6
...
@@ -84,6 +84,16 @@ public class WorkmanController extends BaseCRUDJsonBodyMappingController<Workman
...
@@ -84,6 +84,16 @@ public class WorkmanController extends BaseCRUDJsonBodyMappingController<Workman
super
.
init
(
model
,
context
);
super
.
init
(
model
,
context
);
}
}
/**
*
*/
@Override
@UnAuth
public
void
downloadTemplate
()
{
super
.
downloadTemplate
();
}
/**
/**
* 工作人员登录
* 工作人员登录
*/
*/
...
...
base-manager/src/test/java/com/mortals/httpclient/system/system.http
View file @
412027b6
...
@@ -5,7 +5,7 @@ Content-Type: application/json
...
@@ -5,7 +5,7 @@ Content-Type: application/json
{
{
"loginName":"admin",
"loginName":"admin",
"password":"
xhx@yb888
",
"password":"
admin
",
"securityCode":"8888"
"securityCode":"8888"
}
}
...
...
base-manager/src/test/java/com/mortals/httpclient/window/WindowController.http
View file @
412027b6
...
@@ -68,6 +68,13 @@ Accept: application/json
...
@@ -68,6 +68,13 @@ Accept: application/json
GET {{baseUrl}}/window/delete?id={{Window_id}}
GET {{baseUrl}}/window/delete?id={{Window_id}}
Accept: application/json
Accept: application/json
###模板导出
POST {{baseUrl}}/window/downloadTemplate
Content-Type: application/json
Authorization: {{authToken}}
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/callRecordForm.vue
View file @
412027b6
...
@@ -158,7 +158,7 @@ export default {
...
@@ -158,7 +158,7 @@ export default {
this
.
tHeader
,
this
.
tHeader
,
this
.
filterVal
,
this
.
filterVal
,
data
,
data
,
"
填单
记录报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
"
12345拨打
记录报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
);
this
.
btnLoading
=
false
;
this
.
btnLoading
=
false
;
},
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/letterRecordForm.vue
View file @
412027b6
...
@@ -376,7 +376,7 @@ export default {
...
@@ -376,7 +376,7 @@ export default {
tHeader
,
tHeader
,
filterVal
,
filterVal
,
data
,
data
,
"
填单
记录报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
"
12345写信
记录报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
);
this
.
btnLoading
=
false
;
this
.
btnLoading
=
false
;
},
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
412027b6
...
@@ -10,6 +10,18 @@
...
@@ -10,6 +10,18 @@
</div>
</div>
<span>
<span>
<a-space>
<a-space>
<a-select
v-model=
"searchForm.hallid"
>
<a-select-option
value=
""
>
全部大厅
</a-select-option>
<a-select-option
v-for=
"item in datingList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
hallName
}}
</a-select-option>
</a-select>
<a-select
v-model=
"searchForm.sectionid"
>
<a-select-option
value=
""
>
全部部门
</a-select-option>
<a-select-option
v-for=
"item in bumenList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
</a-select>
<a-select
v-model=
"searchForm.id"
>
<a-select
v-model=
"searchForm.id"
>
<a-select-option
value=
""
>
全部设备
</a-select-option>
<a-select-option
value=
""
>
全部设备
</a-select-option>
<a-select-option
v-for=
"item in deviceData"
:key=
"item.id"
:value=
"item.id"
>
<a-select-option
v-for=
"item in deviceData"
:key=
"item.id"
:value=
"item.id"
>
...
@@ -126,6 +138,8 @@ import BusinessInfo from "./components/businessInfo.vue";
...
@@ -126,6 +138,8 @@ import BusinessInfo from "./components/businessInfo.vue";
import
WorkpeopleInfo
from
"
./components/workpeopleInfo.vue
"
;
import
WorkpeopleInfo
from
"
./components/workpeopleInfo.vue
"
;
import
HandlingDetails
from
"
./components/HandlingDetails.vue
"
;
import
HandlingDetails
from
"
./components/HandlingDetails.vue
"
;
import
{
import
{
getDatingList
,
getBumenList
,
getCalllist
,
getCalllist
,
getCallQueList
,
getCallQueList
,
getBusinessEvent
,
getBusinessEvent
,
...
@@ -265,7 +279,13 @@ export default {
...
@@ -265,7 +279,13 @@ export default {
style
:
""
,
// 状态
style
:
""
,
// 状态
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
flownum
:
""
,
// 排号编码
flownum
:
""
,
// 排号编码
hallid
:
""
,
sectionid
:
""
},
},
// 大厅列表
datingList
:
[],
// 部门列表
bumenList
:
[],
//状态
//状态
style
:
[
style
:
[
{
{
...
@@ -326,11 +346,25 @@ export default {
...
@@ -326,11 +346,25 @@ export default {
HandlingDetails
,
HandlingDetails
,
},
},
created
()
{
created
()
{
this
.
getDatingListArr
();
this
.
getBumenListArr
();
this
.
getCalllistArr
();
this
.
getCalllistArr
();
this
.
getCallQueListArr
();
this
.
getCallQueListArr
();
},
},
mounted
()
{
},
mounted
()
{
},
methods
:
{
methods
:
{
// 获取大厅列表
async
getDatingListArr
()
{
await
getDatingList
({
page
:
1
,
size
:
-
1
}).
then
((
res
)
=>
{
this
.
datingList
=
res
.
data
.
data
;
});
},
// // 获取部门列表
async
getBumenListArr
()
{
await
getBumenList
({
page
:
1
,
size
:
-
1
}).
then
((
res
)
=>
{
this
.
bumenList
=
res
.
data
.
data
;
});
},
//重置按钮
//重置按钮
resetBtn
()
{
resetBtn
()
{
this
.
tableSelectedKeys
=
[];
this
.
tableSelectedKeys
=
[];
...
@@ -341,6 +375,8 @@ export default {
...
@@ -341,6 +375,8 @@ export default {
style
:
""
,
// 状态
style
:
""
,
// 状态
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
flownum
:
""
,
// 排号编码
flownum
:
""
,
// 排号编码
hallid
:
""
,
sectionid
:
""
};
};
this
.
getCallQueListArr
();
this
.
getCallQueListArr
();
},
},
...
@@ -504,6 +540,10 @@ export default {
...
@@ -504,6 +540,10 @@ export default {
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
/deep/.ant-select {
width: 120px;
}
/deep/.ant-spin-container {
/deep/.ant-spin-container {
display: block !important;
display: block !important;
}
}
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/APIServe/APIServe.vue
View file @
412027b6
...
@@ -67,7 +67,12 @@ export default {
...
@@ -67,7 +67,12 @@ export default {
data
()
{
data
()
{
return
{
return
{
searchVal
:
""
,
searchVal
:
""
,
stepsList
:
[],
stepsList
:
[
{
id
:
''
,
productName
:
'
全部
'
,
}
],
isSearch
:
false
,
isSearch
:
false
,
active
:
0
,
active
:
0
,
...
@@ -86,13 +91,22 @@ export default {
...
@@ -86,13 +91,22 @@ export default {
getProduct
({
getProduct
({
page
:
1
,
page
:
1
,
size
:
-
1
,
//每页条数
size
:
-
1
,
//每页条数
productName
:
`%
${
this
.
searchVal
}
%`
,
//
productName: `%${this.searchVal}%`,
}).
then
((
res
)
=>
{
}).
then
((
res
)
=>
{
let
{
code
,
data
}
=
res
;
let
{
code
,
data
}
=
res
;
if
(
code
==
1
)
{
if
(
code
==
1
)
{
if
(
data
.
data
.
length
)
{
if
(
data
.
data
.
length
)
{
this
.
stepsList
=
data
.
data
;
let
arr
=
[
this
.
getApiDetail
(
data
.
data
[
0
]);
{
id
:
''
,
productName
:
'
全部
'
,
}
]
data
.
data
.
forEach
(
item
=>
{
arr
.
push
(
item
)
});
this
.
stepsList
=
arr
this
.
getApiDetail
(
this
.
stepsList
[
0
]);
}
else
{
}
else
{
this
.
curApiInfo
=
{};
this
.
curApiInfo
=
{};
}
}
...
@@ -101,7 +115,7 @@ export default {
...
@@ -101,7 +115,7 @@ export default {
},
},
getApiDetail
(
item
)
{
getApiDetail
(
item
)
{
getInterfaceList
({
page
:
1
,
size
:
-
1
,
productId
:
item
.
id
}).
then
(
getInterfaceList
({
page
:
1
,
size
:
-
1
,
productId
:
item
.
id
,
interfaceName
:
`%
${
this
.
searchVal
}
%`
,
}).
then
(
(
res
)
=>
{
(
res
)
=>
{
let
{
code
,
data
}
=
res
;
let
{
code
,
data
}
=
res
;
if
(
code
==
1
)
{
if
(
code
==
1
)
{
...
@@ -115,8 +129,9 @@ export default {
...
@@ -115,8 +129,9 @@ export default {
);
);
},
},
handleSearch
()
{
handleSearch
()
{
this
.
active
=
0
;
// this.active = 0;
this
.
getServiceApiList
();
// this.getServiceApiList();
this
.
getApiDetail
(
this
.
stepsList
[
this
.
active
])
// this.isSearch = !this.isSearch;
// this.isSearch = !this.isSearch;
// if (this.isSearch) {
// if (this.isSearch) {
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/menuManagement/menuMgmt.vue
View file @
412027b6
...
@@ -218,10 +218,12 @@ export default {
...
@@ -218,10 +218,12 @@ export default {
// 搜索
// 搜索
async
searchData
()
{
async
searchData
()
{
if
(
this
.
searchForm
.
parentId
||
this
.
searchForm
.
name
)
{
if
(
this
.
searchForm
.
parentId
||
this
.
searchForm
.
name
)
{
let
obj
=
{...
this
.
searchForm
}
obj
.
name
=
'
%
'
+
this
.
searchForm
.
name
+
'
%
'
let
res
=
await
menuList
({
let
res
=
await
menuList
({
page
:
this
.
tablePagination
.
current
,
page
:
this
.
tablePagination
.
current
,
size
:
-
1
,
size
:
-
1
,
...
this
.
searchForm
,
...
obj
,
});
});
let
{
data
,
total
}
=
res
.
data
;
let
{
data
,
total
}
=
res
.
data
;
this
.
tablePagination
.
total
=
total
;
this
.
tablePagination
.
total
=
total
;
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/productManage.vue
View file @
412027b6
...
@@ -116,6 +116,7 @@ export default {
...
@@ -116,6 +116,7 @@ export default {
this
.
$refs
.
AddEditAppName
.
appInfoFome
.
id
=
item
.
id
;
this
.
$refs
.
AddEditAppName
.
appInfoFome
.
id
=
item
.
id
;
this
.
$refs
.
AddEditAppName
.
appInfoFome
.
productName
=
item
.
productName
;
this
.
$refs
.
AddEditAppName
.
appInfoFome
.
productName
=
item
.
productName
;
}
else
{
}
else
{
this
.
$refs
.
AddEditAppName
.
appInfoFome
.
id
=
''
;
this
.
$refs
.
AddEditAppName
.
VisibleTitle
=
"
新增产品
"
;
this
.
$refs
.
AddEditAppName
.
VisibleTitle
=
"
新增产品
"
;
}
}
this
.
$refs
.
AddEditAppName
.
Visible
=
true
;
this
.
$refs
.
AddEditAppName
.
Visible
=
true
;
...
...
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