You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
4.3 KiB

10 months ago
<template>
<view class="app-container">
<u-navbar
leftText="返回"
title="店铺店招预审"
:autoBack="true"
:placeholder="true"
>
<view slot="right">
<text class="nav-right"></text>
</view>
</u-navbar>
<view class="list-item">
<view>江宁开发区店招店牌申报流程</view>
<view>
所需材料
1.实景效果图A4纸全页近景1份远景2份包含白天和夜晚店招亮化远景实景效果图
要点照片要求横向拍摄原图制作彩色打印
2.房屋租赁合同复印件房屋产权证复印件营业执照副本复印件
3.法人身份证复印件或经办人身份证复印件(经办人办理需法人开具委托书
4.施工说明
要点用文字描述设置所使用的材质总体长度宽度厚度字体及英文长数量LOGO长宽等
5.加盟协议授权书商标注册证涉及注册商标需提供
6.安全检测报告涉及墙体广告字LED显示屏
7.洗衣店宠物店等需办理排水证
8.涉及舞台活动搭建需提供舞台搭建资质舞台结构图专家论证方案如涉及外来人员参与表演需到区防疫指挥中心进行报备
注意事项
1.店招店牌设置地址必须与营业执照地址相符合
2.店招店牌不宜使用泡沫即时贴扣板等材料制作店招店牌主要街路窗口地区按总体规划不得使用灯箱布和喷绘布等材料设置店招广告一般为铝塑底板亚克力字
3.店招店牌内容仅限于本单位的名称字号标识禁止出现商品营销经营服务范围电话号码变相发布广告等不符合规定的内容
4.店招店牌字体大小应与店招广告尺寸相协调
5.店招店牌效果图必须为实景拍摄门面整体轮廓真实准确反映现场所设置位置电脑准确制作设置画面要求画面清晰店面环境整洁无乱堆放晾晒张贴等位置准确
6.完全检测报告需在安装完成后一个月内送至我局备案
7.经批准后安装店招店牌的应设置围挡及警示标志做到安全施工文明施工
8.案件办理时间为上午8301200 下午200600
联系方式
邮箱280754057@qq.com 电话18151671177
店招店牌备案需要一定的时间请耐心等待没有收到前来办理的通知前请勿制作以及安装如在备案过程当中进行制作及安装所造成的一切后果由其自行承担
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
// 表单参数
form: {},
levelList: [],
// 查询参数
queryParams: {
sbLevelName: null,
},
};
},
onLoad() {
this.getList();
},
methods: {
onSearch() {
this.getList();
},
onClear() {
this.queryParams.sbLevelName = "";
this.getList();
},
getList() {
},
// 表单重置
reset() {
this.form = {
id: null,
activeName: null,
activeStart: null,
activeEnd: null,
activeContent: null,
activePoint: null,
joinRequire: null,
activeState: null,
createId: null,
createBy: null,
createTime: null,
updateId: null,
updateBy: null,
updateTime: null,
remark: null,
gridId: null,
gridName: null,
partId: null,
partName: null,
};
},
},
};
</script>
<style lang="scss" scoped>
.app-container {
.list-item {
background-color: #fff;
border-radius: 16rpx;
box-sizing: border-box;
padding: 25rpx;
margin-bottom: 30rpx;
margin-top: 30rpx;
.item-cell {
display: flex;
align-items: center;
.cell-lable {
width: 200rpx;
font-size: 28rpx;
font-weight: 400;
color: #9da2ab;
}
.cell-value {
flex: 1;
font-size: 28rpx;
font-weight: 400;
color: #2e2f31;
}
}
.cell-btn {
display: flex;
flex-direction: row-reverse;
}
& > view:not(.cell-btn) {
margin-bottom: 20rpx;
}
}
& > .list-item:last-child {
margin-bottom: 0;
}
}
</style>