Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
H
housing-estate
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
物业总平台
housing-estate
Commits
4b30296c
提交
4b30296c
authored
6月 28, 2023
作者:
宋雄
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加对账
上级
f98a35c0
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
34 行增加
和
8 行删除
+34
-8
.env.development
.env.development
+2
-2
NoticeForm.vue
src/views/information/building/modules/NoticeForm.vue
+24
-2
complaint-detail.vue
src/views/property/complaint/complaint-detail.vue
+4
-1
complaint.vue
src/views/property/complaint/complaint.vue
+3
-2
living.vue
src/views/property/living/living.vue
+1
-1
RecordDetails.vue
src/views/property/record/RecordDetails.vue
+0
-0
RecordList.vue
src/views/property/record/RecordList.vue
+0
-0
没有找到文件。
.env.development
浏览文件 @
4b30296c
NODE_ENV=development
NODE_ENV=development
VUE_APP_API_BASE_URL='http://192.168.0.119:9999'
#
VUE_APP_API_BASE_URL='http://192.168.0.119:9999'
# VUE_APP_API_BASE_URL='http://192.168.0.100:9999'
# VUE_APP_API_BASE_URL='http://192.168.0.100:9999'
#
VUE_APP_API_BASE_URL='http://220.203.25.212:9999'
VUE_APP_API_BASE_URL='http://220.203.25.212:9999'
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
...
...
src/views/information/building/modules/NoticeForm.vue
浏览文件 @
4b30296c
...
@@ -77,6 +77,13 @@
...
@@ -77,6 +77,13 @@
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
</a-row>
<a-row>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"管理员头像"
:labelCol=
"
{ xs:{ span: 24 }, sm:{ span: 3 } }" :wrapperCol="wrapperCol" prop="adminAvatar">
<j-image-upload
:isMultiple=
"false"
text=
"点击上传"
bizPath=
"scott/pic"
v-model=
"model.adminAvatar"
></j-image-upload>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</a-form-model>
</j-form-container>
</j-form-container>
</a-spin>
</a-spin>
...
@@ -87,6 +94,7 @@
...
@@ -87,6 +94,7 @@
import
{
httpAction
,
getAction
}
from
'@/api/manage'
import
{
httpAction
,
getAction
}
from
'@/api/manage'
import
{
validateDuplicateValue
}
from
'@/utils/util'
import
{
validateDuplicateValue
}
from
'@/utils/util'
import
{
ajaxGetDictItems
,
getDictItemsFromCache
}
from
'@/api/api'
import
{
ajaxGetDictItems
,
getDictItemsFromCache
}
from
'@/api/api'
import
{
isMobile
}
from
'@/utils/validate'
const
columns
=
[
const
columns
=
[
{
{
title
:
'序号'
,
title
:
'序号'
,
...
@@ -122,6 +130,13 @@
...
@@ -122,6 +130,13 @@
}
}
},
},
data
()
{
data
()
{
const
validateToNextPhone
=
(
rule
,
value
,
callback
)
=>
{
if
(
value
&&
isMobile
(
value
))
{
callback
();
}
else
{
callback
(
'请输入正确的联系人电话!'
);
}
}
return
{
return
{
dictOptions
:
[],
dictOptions
:
[],
model
:{
model
:{
...
@@ -132,7 +147,8 @@
...
@@ -132,7 +147,8 @@
communityUnitList
:
[],
communityUnitList
:
[],
haveLift
:
'1'
,
haveLift
:
'1'
,
buildingAdmin
:
''
,
buildingAdmin
:
''
,
adminPhone
:
''
adminPhone
:
''
,
adminAvatar
:
''
},
},
labelCol
:
{
labelCol
:
{
xs
:
{
span
:
24
},
xs
:
{
span
:
24
},
...
@@ -146,7 +162,13 @@
...
@@ -146,7 +162,13 @@
validatorRules
:
{
validatorRules
:
{
buildingName
:
[{
required
:
true
,
message
:
'请输入楼宇名称'
,
trigger
:
'blur'
}],
buildingName
:
[{
required
:
true
,
message
:
'请输入楼宇名称'
,
trigger
:
'blur'
}],
communityUnitList
:
[{
required
:
true
,
message
:
'请输入单元数量'
,
trigger
:
'change'
}],
communityUnitList
:
[{
required
:
true
,
message
:
'请输入单元数量'
,
trigger
:
'change'
}],
useTo
:
[{
required
:
true
,
message
:
'请选择房屋用途'
,
trigger
:
'change'
}]
useTo
:
[{
required
:
true
,
message
:
'请选择房屋用途'
,
trigger
:
'change'
}],
buildingAdmin
:
[{
required
:
true
,
message
:
'请输入楼栋管理员'
,
trigger
:
'blur'
}],
adminPhone
:
[
{
required
:
true
,
message
:
'请输入管理员联系电话'
,
trigger
:
'blur'
},
{
validator
:
validateToNextPhone
}
],
adminAvatar
:
[{
required
:
true
,
message
:
'请上传管理员头像'
,
trigger
:
'blur'
}]
},
},
url
:
{
url
:
{
add
:
"/property-community/building/communityBuilding/add"
,
add
:
"/property-community/building/communityBuilding/add"
,
...
...
src/views/property/complaint/complaint-detail.vue
浏览文件 @
4b30296c
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
<a-form-model-item
label=
"处理状态"
:labelCol=
"
{ xs: { span: 24 }, sm: { span: 2 } }" :wrapperCol="wrapperCol"
<a-form-model-item
label=
"处理状态"
:labelCol=
"
{ xs: { span: 24 }, sm: { span: 2 } }" :wrapperCol="wrapperCol"
prop="handleStatus">
prop="handleStatus">
<a-select
v-model=
"form.handleStatus"
placeholder=
"请选择处理状态"
style=
"width:50%"
>
<a-select
v-model=
"form.handleStatus"
placeholder=
"请选择处理状态"
style=
"width:50%"
>
<a-select-option
value=
"pending"
>
处理中
</a-select-option>
<a-select-option
value=
"pending"
v-if=
"model.handleStatus !== 'pending'"
>
处理中
</a-select-option>
<a-select-option
value=
"finish"
>
处理完成
</a-select-option>
<a-select-option
value=
"finish"
>
处理完成
</a-select-option>
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
...
@@ -114,6 +114,9 @@ export default {
...
@@ -114,6 +114,9 @@ export default {
this
.
confirmLoading
=
true
this
.
confirmLoading
=
true
let
{
result
}
=
await
querycommunityComplaintApi
({
id
:
this
.
$route
.
query
.
id
})
let
{
result
}
=
await
querycommunityComplaintApi
({
id
:
this
.
$route
.
query
.
id
})
this
.
model
=
{
...
result
}
this
.
model
=
{
...
result
}
if
(
this
.
model
.
handleStatus
==
'pending'
)
{
this
.
form
.
handleStatus
=
'finish'
}
if
(
this
.
model
.
handleStatus
==
'finish'
)
{
if
(
this
.
model
.
handleStatus
==
'finish'
)
{
this
.
form
.
handleStatus
=
this
.
model
.
handleStatus
this
.
form
.
handleStatus
=
this
.
model
.
handleStatus
this
.
form
.
handleResult
=
this
.
model
.
handleResult
this
.
form
.
handleResult
=
this
.
model
.
handleResult
...
...
src/views/property/complaint/complaint.vue
浏览文件 @
4b30296c
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
<template
v-if=
"record.handleStatus !== 'finish'"
>
<template
v-if=
"record.handleStatus !== 'finish'"
>
<a-divider
type=
"vertical"
/>
<a-divider
type=
"vertical"
/>
<a
@
click=
"onDetail(record.id, '2')"
>
处理
</a>
<a
@
click=
"onDetail(record.id, '2')"
>
{{
record
.
handleStatus
===
'pending'
?
'去完成'
:
'处理'
}}
</a>
</
template
>
</
template
>
</span>
</span>
</a-table>
</a-table>
...
@@ -133,7 +133,8 @@
...
@@ -133,7 +133,8 @@
dataIndex
:
'action'
,
dataIndex
:
'action'
,
scopedSlots
:
{
customRender
:
'action'
},
scopedSlots
:
{
customRender
:
'action'
},
align
:
'center'
,
align
:
'center'
,
width
:
150
width
:
150
,
fixed
:
'right'
}
}
]
]
...
...
src/views/property/living/living.vue
浏览文件 @
4b30296c
...
@@ -110,7 +110,7 @@ const columns = [
...
@@ -110,7 +110,7 @@ const columns = [
title
:
'收费项目'
,
title
:
'收费项目'
,
dataIndex
:
'chargeItem'
,
dataIndex
:
'chargeItem'
,
key
:
'chargeItem'
,
key
:
'chargeItem'
,
width
:
1
20
,
width
:
2
20
,
align
:
'center'
,
align
:
'center'
,
},
},
{
{
...
...
src/views/property/record/RecordDetails.vue
0 → 100644
浏览文件 @
4b30296c
差异被折叠。
点击展开。
src/views/property/record/RecordList.vue
0 → 100644
浏览文件 @
4b30296c
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论