Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
H
housing-estate
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
物业总平台
housing-estate
Commits
88984bc3
提交
88984bc3
authored
8月 31, 2023
作者:
赵明
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
小区商铺添加合同 列表搜索调整
上级
7ff38acb
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
32 行增加
和
7 行删除
+32
-7
ShopDetail.vue
src/views/shops/ShopDetail.vue
+15
-3
ShopList.vue
src/views/shops/ShopList.vue
+17
-4
没有找到文件。
src/views/shops/ShopDetail.vue
浏览文件 @
88984bc3
...
...
@@ -94,9 +94,20 @@
:auto-size=
"
{ minRows: 3, maxRows: 5 }" />
</a-form-model-item>
</a-col>
</a-row>
</a-card>
<a-card
title=
"合同附件"
style=
"margin-top: 10px;"
>
<a-row>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"合同附件"
:labelCol=
"
{ xs:{ span: 24 }, sm:{ span: 3 } }" :wrapperCol="wrapperCol">
<j-upload
v-model=
"model.contractUrl"
></j-upload>
</a-form-model-item>
</a-col>
</a-row>
</a-card>
<a-card
title=
"商铺管理员"
>
<a-card
title=
"商铺管理员"
style=
"margin-top: 10px;"
>
<a-row>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"管理员账户"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
prop=
"adminLoginName"
>
...
...
@@ -124,13 +135,13 @@
</a-row>
</a-card>
<a-card
title=
"商铺二维码"
v-if=
"pageType != 'add'"
>
<a-card
title=
"商铺二维码"
v-if=
"pageType != 'add'"
style=
"margin-top: 10px;"
>
<a-row>
<img
:src=
"shopQrcode"
alt=
"商铺二维码"
class=
"shopQrcode"
>
</a-row>
</a-card>
<a-card
title=
"审核记录"
v-if=
"pageType != 'add'"
>
<a-card
title=
"审核记录"
v-if=
"pageType != 'add'"
style=
"margin-top: 10px;"
>
<a-row>
<a-table
ref=
"table"
...
...
@@ -270,6 +281,7 @@ export default {
addressInfo
:
[{
required
:
true
,
message
:
'请输入详细地址'
,
trigger
:
'blur'
}],
logoUrl
:
[{
required
:
true
,
message
:
'请上传LOGO'
,
trigger
:
'change'
}],
adminLoginName
:
[{
required
:
true
,
message
:
'请输入管理员账号'
,
trigger
:
'blur'
}],
contractUrl
:
[{
required
:
true
,
message
:
'请上传合同附件'
,
trigger
:
'change'
}],
adminPassword
:
[{
required
:
true
,
message
:
'请输入管理员密码'
,
trigger
:
'blur'
}],
accessAddress
:
[
{
required
:
true
,
message
:
'请输入访问域名前缀'
,
trigger
:
'blur'
},
...
...
src/views/shops/ShopList.vue
浏览文件 @
88984bc3
...
...
@@ -10,12 +10,17 @@
</a-form-item>
</a-col>
<a-col
:md=
"6"
:sm=
"8"
>
<a-form-item
label=
"入驻时间"
>
<a-input
placeholder=
"请选择入驻时间"
v-model=
"queryParam.createTime"
></a-input>
</a-form-item>
<a-range-picker
style=
"width: 100%"
format=
"YYYY-MM-DD"
:placeholder=
"['开始时间', '结束时间']"
@
change=
"onDateChange"
@
ok=
"onDateOk"
/>
</a-col>
<span
style=
"float: left;overflow: hidden;"
class=
"table-page-search-submitButtons"
>
<a-col
:md=
"
6
"
:sm=
"24"
>
<a-col
:md=
"
8
"
:sm=
"24"
>
<a-button
type=
"primary"
@
click=
"searchQuery"
>
查询
</a-button>
<a-button
style=
"margin-left: 8px"
@
click=
"searchReset"
>
重置
</a-button>
</a-col>
...
...
@@ -251,6 +256,14 @@ export default {
handlePerssion
(
roleId
)
{
this
.
$refs
.
modalUserRole
.
show
(
roleId
)
}
,
onDateChange
:
function
(
value
,
dateString
)
{
console
.
log
(
dateString
[
0
],
dateString
[
1
]);
this
.
queryParam
.
beginDate
=
dateString
[
0
];
this
.
queryParam
.
endDate
=
dateString
[
1
];
}
,
onDateOk
(
value
)
{
console
.
log
(
value
);
}
,
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论