Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
property-company
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
物业总平台
property-company
Commits
a139300c
提交
a139300c
authored
7月 27, 2023
作者:
宋雄
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
94240f43
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
21 行增加
和
11 行删除
+21
-11
.env.development
.env.development
+2
-2
NoticeForm.vue
src/views/base/housing/modules/NoticeForm.vue
+17
-7
RecordList.vue
src/views/base/record/RecordList.vue
+1
-0
RoleUserList.vue
src/views/system/RoleUserList.vue
+0
-1
LoginAccount.vue
src/views/user/LoginAccount.vue
+1
-1
没有找到文件。
.env.development
浏览文件 @
a139300c
NODE_ENV=development
# VUE_APP_API_BASE_URL='http://192.168.0.108
:9999'
VUE_APP_API_BASE_URL='http://220.203.25.212:9999'
VUE_APP_API_BASE_URL='http://192.168.0.102
: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_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
...
...
src/views/base/housing/modules/NoticeForm.vue
浏览文件 @
a139300c
...
...
@@ -86,13 +86,14 @@
<a-input
v-model=
"model.adminPassword"
placeholder=
"请输入管理员登录密码"
></a-input>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"访问域名前缀"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
prop=
"accessAddress"
>
<a-
input
v-model=
"model.accessAddress"
placeholder=
"请输入访问域名前缀"
addon-after=
".group.hjxbc.cn"
></a-input>
<p
v-if=
"model.accessAddress"
>
访问域名:
{{
model
.
accessAddress
}}
.group.hjxbc.cn
</p
>
</a-row
>
<a-row>
<a-col
:span=
"12"
style=
"position:relative"
>
<a-
form-model-item
label=
"访问域名前缀"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
prop=
"accessAddress"
>
<a-input
v-model=
"model.accessAddress"
placeholder=
"请输入访问域名前缀"
addon-after=
".group.hjxbc.cn"
></a-input
>
</a-form-model-item>
<a
@
click=
"onCopyLink"
v-if=
"model.accessAddress"
style=
"position:absolute;top:0;right:-10px;line-height:40px;z-index:999;pointer-events:auto;"
>
复制
</a>
</a-col>
</a-row>
<a-row>
...
...
@@ -157,7 +158,7 @@
communityIntro
:
''
,
adminName
:
''
,
adminPhone
:
''
,
adminPassword
:
''
,
adminPassword
:
'
123456
'
,
adminAvatar
:
''
,
accessAddress
:
''
,
},
...
...
@@ -224,6 +225,15 @@
this
.
model
=
Object
.
assign
({},
record
);
this
.
visible
=
true
;
},
onCopyLink
()
{
let
txa
=
document
.
createElement
(
"textarea"
);
txa
.
value
=
this
.
model
.
accessAddress
+
'.group.hjxbc.cn'
document
.
body
.
appendChild
(
txa
);
txa
.
select
();
document
.
execCommand
(
"copy"
);
document
.
body
.
removeChild
(
txa
);
this
.
$message
.
success
(
"复制成功!"
);
},
submitForm
()
{
const
that
=
this
;
// 触发表单验证
...
...
src/views/base/record/RecordList.vue
浏览文件 @
a139300c
...
...
@@ -146,6 +146,7 @@ const columns = [
title
:
'公司审核状态'
,
dataIndex
:
'companyAuditStatus'
,
key
:
'companyAuditStatus'
,
align
:
'center'
,
// customRender: function (text) {
// return filterDictTextByCache('companyAuditStatus', text)
// },
...
...
src/views/system/RoleUserList.vue
浏览文件 @
a139300c
...
...
@@ -346,7 +346,6 @@
this
.
selectedRowKeys1
=
selectedRowKeys
this
.
selectionRows1
=
selectionRows
this
.
model1
=
Object
.
assign
({},
selectionRows
[
0
])
console
.
log
(
this
.
model1
)
this
.
currentRoleId
=
selectedRowKeys
[
0
]
this
.
loadData2
()
},
...
...
src/views/user/LoginAccount.vue
浏览文件 @
a139300c
...
...
@@ -2,7 +2,7 @@
<div>
<a-form-model
ref=
"form"
:model=
"model"
:rules=
"validatorRules"
>
<a-form-model-item
required
prop=
"username"
>
<a-input
v-model=
"model.username"
size=
"large"
placeholder=
"请输入帐
户
"
>
<a-input
v-model=
"model.username"
size=
"large"
placeholder=
"请输入帐
号
"
>
<a-icon
slot=
"prefix"
type=
"user"
:style=
"
{ color: 'rgba(0,0,0,.25)' }"/>
</a-input>
</a-form-model-item>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论