Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
computedRoomPad
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
邓文彬
computedRoomPad
Commits
290d8a23
提交
290d8a23
authored
3月 06, 2025
作者:
caodi\cd
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:注释
上级
aa48b4e3
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
18 行增加
和
22 行删除
+18
-22
index.vue
components/searchCom/index.vue
+13
-22
home.vue
pages/home/home.vue
+1
-0
index.vue
pages/inspectionManagement/index.vue
+1
-0
login.vue
pages/login/login.vue
+1
-0
shaftInspectionNew.vue
pages/shaftInspection/shaftInspectionNew.vue
+2
-0
没有找到文件。
components/searchCom/index.vue
浏览文件 @
290d8a23
<
template
>
<
template
>
<!-- 巡检管理搜索页 -->
<view
class=
"search-com"
>
<view
class=
"search-com"
>
<view
class=
"search-com-left"
>
<view
class=
"search-com-left"
>
<uni-data-select
<uni-data-select
...
@@ -34,19 +35,9 @@
...
@@ -34,19 +35,9 @@
:clear=
"true"
:clear=
"true"
:key=
"new Date().getTime()"
:key=
"new Date().getTime()"
></uni-data-select>
></uni-data-select>
<uni-data-select
v-if=
"!hiddenSearch.includes('inspectionTime')"
class=
"uni-search-item"
v-model=
"searchFrom.inspectionTime"
:localdata=
"dateArr"
placeholder=
"选择时间"
@
change=
"(e) => change(e, 'inspectionTime')"
:clear=
"true"
:key=
"new Date().getTime()"
></uni-data-select>
</view>
</view>
<
!--
<
view
<view
class=
"search-com-right"
class=
"search-com-right"
v-if=
"!hiddenSearch.includes('inspectionTime')"
v-if=
"!hiddenSearch.includes('inspectionTime')"
>
>
...
@@ -57,7 +48,7 @@
...
@@ -57,7 +48,7 @@
:border=
"false"
:border=
"false"
@
change=
"(e) => change(e, 'inspectionTime')"
@
change=
"(e) => change(e, 'inspectionTime')"
/>
/>
</view>
-->
</view>
</view>
</view>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -96,12 +87,6 @@ export default {
...
@@ -96,12 +87,6 @@ export default {
{
value
:
"1"
,
text
:
"有"
},
{
value
:
"1"
,
text
:
"有"
},
{
value
:
"0"
,
text
:
"无"
},
{
value
:
"0"
,
text
:
"无"
},
],
],
dateArr
:
[
{
value
:
"0"
,
text
:
"本月"
},
{
value
:
"1"
,
text
:
"本季"
},
{
value
:
"2"
,
text
:
"本年"
},
{
value
:
"3"
,
text
:
"自定义"
},
],
};
};
},
},
methods
:
{
methods
:
{
...
@@ -118,22 +103,28 @@ export default {
...
@@ -118,22 +103,28 @@ export default {
.search-com {
.search-com {
display: flex;
display: flex;
align-items: center;
align-items: center;
width: 50%;
margin-top: 8px;
// width: 50%;
.search-com-left {
.search-com-left {
display: flex;
display: flex;
flex:1;
align-items: center;
align-items: center;
flex: 1;
.uni-search-item {
.uni-search-item {
margin-right: 12px;
width: 132px;
height: 36px;
margin-right: 16px;
background: #fff;
background: #fff;
border-radius:
4
px;
border-radius:
10
px;
border: none !important;
border: none !important;
}
}
}
}
.search-com-right {
.search-com-right {
width: 300px;
width: 300px;
.uni-datetime-picker {
.uni-datetime-picker {
height: 36px;
background: #fff;
background: #fff;
border-radius: 10px;
border: none !important;
}
}
}
}
}
}
...
...
pages/home/home.vue
浏览文件 @
290d8a23
<
template
>
<
template
>
<!-- 首页 -->
<view
class=
"container"
>
<view
class=
"container"
>
<!-- 第一个模块 -->
<!-- 第一个模块 -->
<view
class=
"header"
>
<view
class=
"header"
>
...
...
pages/inspectionManagement/index.vue
浏览文件 @
290d8a23
<
template
>
<
template
>
<!-- 巡检管理 -->
<view
class=
"inspection-management"
>
<view
class=
"inspection-management"
>
<uni-nav-bar
:fixed=
"true"
background-color=
"rgba(214, 240, 255, 0.0)"
status-bar
rightWidth=
"300"
>
<uni-nav-bar
:fixed=
"true"
background-color=
"rgba(214, 240, 255, 0.0)"
status-bar
rightWidth=
"300"
>
<block
slot=
"left"
>
<block
slot=
"left"
>
...
...
pages/login/login.vue
浏览文件 @
290d8a23
<
template
>
<
template
>
<!-- 登录页 -->
<view
class=
"content"
>
<view
class=
"content"
>
<view
class=
"login_wrap"
>
<view
class=
"login_wrap"
>
...
...
pages/shaftInspection/shaftInspectionNew.vue
浏览文件 @
290d8a23
<
template
>
<
template
>
<!-- 井道巡检操作 -->
<view
class=
"container"
>
<view
class=
"container"
>
<uni-nav-bar
:fixed=
"true"
background-color=
"rgba(214, 240, 255, 0.0)"
status-bar
rightWidth=
"300"
>
<uni-nav-bar
:fixed=
"true"
background-color=
"rgba(214, 240, 255, 0.0)"
status-bar
rightWidth=
"300"
>
<block
slot=
"left"
>
<block
slot=
"left"
>
...
@@ -217,6 +218,7 @@
...
@@ -217,6 +218,7 @@
position
:
this
.
location
,
// 位置
position
:
this
.
location
,
// 位置
floor
:
this
.
floor
,
// 楼层
floor
:
this
.
floor
,
// 楼层
isSubmit
:
""
,
// 0 是草稿态; 1 是正式提交
isSubmit
:
""
,
// 0 是草稿态; 1 是正式提交
isSign
:
""
,
// 是否签字
conclusion
:
""
,
//摘要
conclusion
:
""
,
//摘要
creatTime
:
`
${
new
Date
().
getTime
()}
`
,
creatTime
:
`
${
new
Date
().
getTime
()}
`
,
items
:
[],
items
:
[],
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论