Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
提交
议题看板
打开侧边栏
jingqi.liu
pica.cloud.web-education-admin
提交
a6ab1693
提交
a6ab1693
编写于
10月 16, 2020
作者:
haochangdi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
解决loading消失时间不正确的问题
上级
2c341d8b
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
16 行增加
和
15 行删除
+16
-15
renyuan.vue
src/components/yqrange/member-management/renyuan.vue
+6
-5
range-apply.vue
src/views/yqrange/range-apply.vue
+8
-7
yq-range.vue
src/views/yqrange/yq-range.vue
+2
-3
未找到文件。
src/components/yqrange/member-management/renyuan.vue
浏览文件 @
a6ab1693
...
...
@@ -313,8 +313,6 @@ export default {
}
},
mounted
()
{
},
methods
:
{
initRange
()
{
...
...
@@ -322,7 +320,7 @@ export default {
this
.
formOrganization
.
name
=
""
;
this
.
formOrganization
.
orgName
=
""
;
this
.
formOrganization
.
source
=
0
this
.
getList
()
this
.
getList
(
1
)
},
setMoreOption
(
data
,
type
)
{
let
option
=
[];
...
...
@@ -347,7 +345,7 @@ export default {
this
.
formOrganization
.
pageNum
=
1
;
this
.
getList
()
},
getList
()
{
getList
(
first
)
{
let
idType
=
localStorage
.
getItem
(
"storageIdType"
);
let
req
=
{
circleId
:
this
.
circleId
,
...
...
@@ -360,7 +358,10 @@ export default {
};
openLoading
(
vm
);
mpRelSearch
(
req
).
then
(
res
=>
{
closeLoading
(
vm
);
if
(
!
first
)
{
closeLoading
(
vm
);
}
if
(
res
.
code
==
"000000"
)
{
this
.
peoplesDtoList
=
res
.
data
.
peoplesDtoList
;
this
.
totalPeople
=
res
.
data
.
total
;
...
...
src/views/yqrange/range-apply.vue
浏览文件 @
a6ab1693
...
...
@@ -122,7 +122,7 @@
},
created
()
{
this
.
initPrivilege
();
this
.
search
();
this
.
search
(
1
);
},
methods
:
{
...
...
@@ -167,16 +167,17 @@
},
// 搜索
search
(){
search
(
first
){
this
.
searchForm
.
pageNo
=
1
;
this
.
searchList
();
this
.
searchList
(
first
);
},
searchList
()
{
openLoading
(
this
);
searchList
(
first
)
{
if
(
!
first
)
{
console
.
log
(
'查询圈子'
)
openLoading
(
this
);
}
let
params
=
this
.
searchForm
;
console
.
log
(
'查询圈子'
)
applyList
(
params
).
then
((
res
)
=>
{
closeLoading
(
this
);
if
(
res
.
code
==
"000000"
)
{
...
...
src/views/yqrange/yq-range.vue
浏览文件 @
a6ab1693
...
...
@@ -135,8 +135,8 @@
</template>
<
script
>
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
BreadCrumb
from
"@/components/breadcrumb.vue"
;
import
{
getRangeList
,
updateRangeStatus
,
getCircleSettingList
,
saveCircleSetting
}
from
"../../utils/yqrange/yqrangeApi"
;
import
BreadCrumb
from
"@/components/breadcrumb.vue"
;
import
{
getRangeList
,
updateRangeStatus
,
getCircleSettingList
,
saveCircleSetting
}
from
"../../utils/yqrange/yqrangeApi"
;
import
ElTabPane
from
"element-ui/packages/tabs/src/tab-pane"
;
import
RangeApply
from
"./range-apply"
;
export
default
{
...
...
@@ -401,7 +401,6 @@ export default {
// 应用配置
setting
(
row
){
this
.
dialogSettingVisible
=
true
;
this
.
settingForm
.
circleId
=
row
.
id
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录