diff --git a/pages.json b/pages.json
index 8003ffd6e657c8007df1549159d8adb50df6728d..39cfb403a814cb51c8798de4c7ba4bdab70313e5 100644
--- a/pages.json
+++ b/pages.json
@@ -107,6 +107,12 @@
"navigationStyle": "custom"
}
},
+ {
+ "path": "pages/tsby_xq",
+ "style": {
+ "navigationStyle": "custom"
+ }
+ },
{
"path": "pages/tsby_lsgd",
"style": {
diff --git a/pages/wy-home.vue b/pages/wy-home.vue
index fd6ad3c4ace91f5c1b0b5bf724b7045d8dbd04ce..beaf3e37f9dcdd4c2d4555e0b28174ae03aac7f5 100644
--- a/pages/wy-home.vue
+++ b/pages/wy-home.vue
@@ -236,7 +236,6 @@
}
if (index == 4) {
this.$wskj.toast("敬请期待")
- this.$wskj.to("/pages/my/feedback")
return
}
if (index == 5) {
diff --git a/pagesMain/pages/bxbs_lsgd.vue b/pagesMain/pages/bxbs_lsgd.vue
index 9f4db51c32cd10b49e24771dd626a1f73879bf0f..fe0f2b27008aa18b7c2897de52d087d204ff754e 100644
--- a/pagesMain/pages/bxbs_lsgd.vue
+++ b/pagesMain/pages/bxbs_lsgd.vue
@@ -27,7 +27,7 @@
style="box-shadow: 0px 0px 15px 1px rgba(142,142,142,0.16);background: white;">
- 居家报修
+ {{item.type==1?'居家报修':'公区报事'}}
{{item.state==1?'待处理':item.state==2?'待支付':item.state==3?'已完成':item.state==4?'已取消':''}}
-
- 居家报修
- 待支付
+
+ {{data.type==1?'居家报修':'公区报事'}}
+ {{data.state==1?'待处理':data.state==2?'待支付':data.state==3?'已完成':data.state==4?'已取消':''}}
业主姓名:
- 张三
+ {{$wskj.isNullStr(data.proprietorName)}}
业主房间号
- 利达国宾中心1栋2单元205室
+ {{data.room}}
业主手机号
- 17778767876
+ {{data.proprietorPhone}}
-
+
报修信息
- 利达国宾中心利达国宾中心1栋2单元205室卫生
- 间漏水,请物业及时查看
+ {{data.repairsDescription}}
-
-
+
+
报修时间:
- 2025-03-10 10:01:45
+ {{data.repairsTime}}
+
+
+ 关闭报修
-
+
负责人:
- 张三
+ {{data.accountName}}
手机号:
- 利达国宾中心1栋2单元205室
+ {{data.accountMobile}}
完成时间:
- 17778767876
+ {{data.completeTime}}
-
+
+ 关闭时间:
+ {{data.closeTime}}
+
-
-
-
+
去支付
-
+
取消报修
@@ -90,62 +97,50 @@
export default {
data() {
return {
- title: '居家报修',
type: 0,
reason: '',
submitShow: false,
images: '',
+ id: '',
+ data: {},
};
},
onLoad(e) {
- this.type = e.type
- if (e.type == 0) {
- this.title = "居家报修"
- } else {
- this.title = "公区报事"
- }
+ this.id = e.id
+ this.getData()
},
methods: {
- onSubmit() {
- this.$wskj.to("/pagesMain/pages/tjsq?type=" + this.type)
- // if (!this.reason) {
- // return this.$u.toast('请输入内容')
- // }
- // if (!this.images) {
- // return this.$u.toast('请至少上传一张照片')
- // }
- // if (this.reason.length < 10) {
- // return this.$u.toast('文字描述最低10个字')
- // }
- // this.submitShow = true
+ getData() {
+ const params = {
+ url: '/api/repairs/' + this.id,
+ method: 'GET',
+ }
+ this.$request(params).then(res => {
+ this.data = res.data
+ })
+ },
+ gb() {
+ const params = {
+ url: '/api/repairs/cancel/' + this.id,
+ method: 'PUT',
+ }
+ this.$request(params).then(res => {
+ this.$wskj.toast('关闭成功')
+ setTimeout(() => {
+ this.$wskj.goBack(1)
+ }, 600)
+ })
},
- // 提交
- onConfirmSubmit() {
- // const params = {
- // url: '/api/user/yijian',
- // loadingTip: '',
- // data: {
- // content: this.reason,
- // images: this.images
- // }
- // }
- // // console.log(params);
- // this.$request(params).then(res => {
- // // console.log(res)
- // this.submitShow = false
- // if (res.code === 1) {
- // this.$u.toast(res.msg || '提交成功')
+ onCz(e) {
+ if (e == "关闭报修") {
+ this.gb();
+ return
+ }
+ if (e == "去支付") {
- // this.reason = ''
- // this.images = ''
- // } else {
- // this.$u.toast(res.msg || '提交失败')
- // }
- // }).catch(err => {
- // this.submitShow = false
- // this.$u.toast(err.msg || '提交失败')
- // })
- }
+ return
+ }
+ },
},
};
diff --git a/pagesMain/pages/fwgz.vue b/pagesMain/pages/fwgz.vue
index 35bce9f32f5c40ecdf9b81086b837c594e570fc2..2582332dfad4f83d25a7a0813d584e979758aa9f 100644
--- a/pagesMain/pages/fwgz.vue
+++ b/pagesMain/pages/fwgz.vue
@@ -37,7 +37,7 @@
};
},
onLoad(e) {
- this.onGz(1)
+ this.onGz(e.type)
},
methods: {
onGz(type) {
diff --git a/pagesMain/pages/jnzd.vue b/pagesMain/pages/jnzd.vue
index 0bd81ed8eb6514a0aa238f1d4a7d2f9281ccc36d..ff2d4f05222b5114a26c051713f0c0c8d35ebbea 100644
--- a/pagesMain/pages/jnzd.vue
+++ b/pagesMain/pages/jnzd.vue
@@ -2,17 +2,17 @@
-
- {{type==0?"电费缴纳":"水费缴纳"}}
+
+ {{type==1?"电费缴纳":"水费缴纳"}}
户号信息
- 张三
+ {{$wskj.isNullStr(userinfo.name)}}
住址信息
- 张三
+ {{userinfo.communityName+userinfo.room}}
缴费单位
@@ -26,7 +26,7 @@
- 20
+ {{(index+1)*20+'元'}}
@@ -34,7 +34,7 @@
¥
-
+
立即缴费
@@ -47,36 +47,66 @@
data() {
return {
indexTab: 0,
- type: 0,
+ type: 1,
+ money: 20,
+ userinfo: '',
};
},
onLoad(options) {
this.type = options.type
+ this.userinfo = uni.getStorageSync("userInfo")
},
methods: {
onClickPrice(index) {
this.indexTab = index
+ this.money = (index + 1) * 20
},
-
- onClick(index) {
- if (index == 0) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=0")
- return
- }
- if (index == 1) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=1")
- return
- }
- if (index == 2) {
- this.$wskj.to("/pagesMain/pages/tsby_lsgd")
- return
+ onSubmit() {
+ this.onCjdd()
+ },
+ onCjdd() {
+ const params = {
+ url: '/api/liveBill/add',
+ loadingTip: '',
+ data: {
+ money: this.money,
+ type: this.type, //类型(1电费 2水费 3物业费 4车位管理费 5车位出租费 6储藏室出租 7其他费用)
+ }
}
- if (index == 3) {
- this.$wskj.to("/pagesMain/pages/fwgz")
- return
+ this.$request(params).then(res => {
+ this.pay(res.data.billId)
+ })
+ },
+ pay(orderId) {
+ const params = {
+ url: '/api/payRecord/pay',
+ loadingTip: '',
+ data: {
+ orderId: orderId,
+ amount: this.money,
+ payBizCode: "PRESTORE",
+ }
}
+ this.$request(params).then(res => {
+ uni.requestPayment({
+ provider: 'wxpay',
+ appid: res.data.data.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
+ nonceStr: res.data.data.nonceStr, // 随机字符串
+ package: res.data.data.package, // 固定值
+ timeStamp: res.data.data.timeStamp, // 时间戳(单位:秒)
+ paySign: res.data.data.paySign, // 签名,这里用的 MD5/RSA 签名
+ signType: 'MD5',
+ success: (res) => {
+
+ },
+ fail: (err) => {
+ console.log(err);
+ }
+ });
+
+ })
}
}
};
diff --git a/pagesMain/pages/jnzd_czf.vue b/pagesMain/pages/jnzd_czf.vue
index d8c377e4408d84856865801c7bbcb1ede08b7c54..4b8da41300389afb62da749d9dcd7a20cdbe4280 100644
--- a/pagesMain/pages/jnzd_czf.vue
+++ b/pagesMain/pages/jnzd_czf.vue
@@ -17,7 +17,7 @@
¥0
-
+
立即缴费
{
+ this.pay(res.data.billId)
+ })
+ },
+ pay(orderId) {
+ const params = {
+ url: '/api/payRecord/pay',
+ loadingTip: '',
+ data: {
+ orderId: orderId,
+ amount: this.monthsNumber.replace('个月', ''),
+ payBizCode: "PRESTORE",
+ }
+ }
+ this.$request(params).then(res => {
+ uni.requestPayment({
+ provider: 'wxpay',
+ appid: res.data.data.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
+ nonceStr: res.data.data.nonceStr, // 随机字符串
+ package: res.data.data.package, // 固定值
+ timeStamp: res.data.data.timeStamp, // 时间戳(单位:秒)
+ paySign: res.data.data.paySign, // 签名,这里用的 MD5/RSA 签名
+ signType: 'MD5',
+ success: (res) => {
+
+ },
+ fail: (err) => {
+ console.log(err);
+ }
+ });
+ })
+ },
+
}
};
diff --git a/pagesMain/pages/jnzd_qt.vue b/pagesMain/pages/jnzd_qt.vue
index 54dcc3729030fa6617424ffecdbeff19b79ca89b..55ed36492a65ca78890be6a6c2eedb860d02c4ff 100644
--- a/pagesMain/pages/jnzd_qt.vue
+++ b/pagesMain/pages/jnzd_qt.vue
@@ -5,11 +5,12 @@
其他缴费
项目名称
-
+
项目描述
-
+
@@ -20,13 +21,13 @@
- 20
+ {{(index+1)*20+'元'}}
-
+
立即缴费
@@ -39,6 +40,9 @@
return {
indexTab: 0,
type: 0,
+ money: 20,
+ projectName: '',
+ projectInfo: '',
};
},
@@ -49,25 +53,62 @@
methods: {
onClickPrice(index) {
this.indexTab = index
+ this.money = (index + 1) * 20
},
-
- onClick(index) {
- if (index == 0) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=0")
+ onSubmit() {
+ this.onCjdd()
+ },
+ onCjdd() {
+ if (this.$wskj.isNull(this.projectName)) {
+ this.$wskj.toast('请输入项目名称')
return
}
- if (index == 1) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=1")
+ if (this.$wskj.isNull(this.projectInfo)) {
+ this.$wskj.toast('请输入项目描述')
return
}
- if (index == 2) {
- this.$wskj.to("/pagesMain/pages/tsby_lsgd")
- return
+ const params = {
+ url: '/api/liveBill/add',
+ loadingTip: '',
+ data: {
+ money: this.money,
+ type: 7, //类型(1电费 2水费 3物业费 4车位管理费 5车位出租费 6储藏室出租 7其他费用)
+ projectName: this.projectName,
+ projectInfo: this.projectInfo,
+ }
}
- if (index == 3) {
- this.$wskj.to("/pagesMain/pages/fwgz")
- return
+ this.$request(params).then(res => {
+ this.pay(res.data.billId)
+ })
+ },
+ pay(orderId) {
+ const params = {
+ url: '/api/payRecord/pay',
+ loadingTip: '',
+ data: {
+ orderId: orderId,
+ amount: this.money,
+ payBizCode: "PRESTORE",
+ }
}
+ this.$request(params).then(res => {
+ uni.requestPayment({
+ provider: 'wxpay',
+ appid: res.data.data.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
+ nonceStr: res.data.data.nonceStr, // 随机字符串
+ package: res.data.data.package, // 固定值
+ timeStamp: res.data.data.timeStamp, // 时间戳(单位:秒)
+ paySign: res.data.data.paySign, // 签名,这里用的 MD5/RSA 签名
+ signType: 'MD5',
+ success: (res) => {
+
+ },
+ fail: (err) => {
+ console.log(err);
+ }
+ });
+
+ })
}
}
};
diff --git a/pagesMain/pages/jnzd_tcfmx.vue b/pagesMain/pages/jnzd_tcfmx.vue
index 17a70efe55e01ef194b9d480bebe9614375feceb..02cd8f9a3684f17e0d9aea80f7239da928cbb80c 100644
--- a/pagesMain/pages/jnzd_tcfmx.vue
+++ b/pagesMain/pages/jnzd_tcfmx.vue
@@ -2,7 +2,7 @@
-
+
停车管理费
@@ -10,15 +10,15 @@
户号信息
- 张三
+ {{$wskj.isNullStr(userinfo.name)}}
小区名称
- 张三
+ {{userinfo.communityName}}
住址信息
- 河南利龙物业管理有限公司
+ {{userinfo.room}}
车位号
@@ -89,12 +89,14 @@
columns: [
['T01', 'T02', 'T03', 'T04', 'T05']
],
- carNumber: ''
+ carNumber: '',
+ userinfo: '',
};
},
onLoad(options) {
this.type = options.type
+ this.userinfo = uni.getStorageSync("userInfo")
},
methods: {
diff --git a/pagesMain/pages/jnzd_wyf.vue b/pagesMain/pages/jnzd_wyf.vue
index ef57f901f8facb8e46962e5a6d260c137ad576ec..006b0cd3dbf520ecccb6544284034515dbe91629 100644
--- a/pagesMain/pages/jnzd_wyf.vue
+++ b/pagesMain/pages/jnzd_wyf.vue
@@ -5,11 +5,11 @@
物业费
房屋
- 111111111
+ {{userinfo.room}}
房屋面积
- 140m²
+ {{userinfo.sqm}}m²
缴费时长
@@ -22,7 +22,7 @@
-
+
立即缴费
{
+ this.pay(res.data.billId)
+ })
+ },
+ pay(orderId) {
+ const params = {
+ url: '/api/payRecord/pay',
+ loadingTip: '',
+ data: {
+ orderId: orderId,
+ amount: this.monthsNumber.replace('个月', ''),
+ payBizCode: "PRESTORE",
+ }
+ }
+ this.$request(params).then(res => {
+ uni.requestPayment({
+ provider: 'wxpay',
+ appid: res.data.data.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
+ nonceStr: res.data.data.nonceStr, // 随机字符串
+ package: res.data.data.package, // 固定值
+ timeStamp: res.data.data.timeStamp, // 时间戳(单位:秒)
+ paySign: res.data.data.paySign, // 签名,这里用的 MD5/RSA 签名
+ signType: 'MD5',
+ success: (res) => {
+
+ },
+ fail: (err) => {
+ console.log(err);
+ }
+ });
+ })
+ },
}
};
diff --git a/pagesMain/pages/jnzd_wyfmx.vue b/pagesMain/pages/jnzd_wyfmx.vue
index 2540d2bd150d0141a362818fb4f814a9a7716728..7e9b05facc193be3af6394349bf9b8140e51b499 100644
--- a/pagesMain/pages/jnzd_wyfmx.vue
+++ b/pagesMain/pages/jnzd_wyfmx.vue
@@ -2,8 +2,8 @@
-
- 物业费:1栋2单元205室
+
+ 物业费:{{userinfo.room}}
@@ -63,11 +63,13 @@
indexTab: 1,
indexNumber: 0,
type: 0,
+ userinfo: '',
};
},
onLoad(options) {
this.type = options.type
+ this.userinfo = uni.getStorageSync("userInfo")
},
methods: {
diff --git a/pagesMain/pages/shjf.vue b/pagesMain/pages/shjf.vue
index a1bed7c95ce58a50c0a5ce920a260ac91581181f..dbe21dd4bcbcfb45f62ff5b86da1e4a98e9b69d5 100644
--- a/pagesMain/pages/shjf.vue
+++ b/pagesMain/pages/shjf.vue
@@ -7,7 +7,7 @@
- 你好,利达国宾中心1栋2单元205室
+ 你好,{{userinfo.communityName+userinfo.room}}
业主姓名
- 张三
+ {{$wskj.isNullStr(userinfo.name)}}
业主房间号
- 张三
+ {{$wskj.isNullStr(userinfo.room)}}
业主手机号
- 张三
+ {{userinfo.mobile}}
@@ -32,12 +32,12 @@
export default {
data() {
return {
-
+ userinfo: '',
};
},
onLoad(options) {
-
+ this.userinfo = uni.getStorageSync("userInfo")
},
methods: {
open() {
@@ -48,11 +48,11 @@
},
onClick(index) {
if (index == 0) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=0")
+ this.$wskj.to("/pagesMain/pages/tsby_submit?type=1")
return
}
if (index == 1) {
- this.$wskj.to("/pagesMain/pages/tsby_submit?type=1")
+ this.$wskj.to("/pagesMain/pages/tsby_submit?type=2")
return
}
if (index == 2) {
diff --git a/pagesMain/pages/tsby_lsgd.vue b/pagesMain/pages/tsby_lsgd.vue
index d95d3c56bd0d951f811707f822f3578c58e31859..3216924e140c70f0d9897fb23c098b43248b0f9a 100644
--- a/pagesMain/pages/tsby_lsgd.vue
+++ b/pagesMain/pages/tsby_lsgd.vue
@@ -11,7 +11,7 @@
:style="{ color: index==0?'#FF682D':index==1?'#EEA616':index==2?'#1FCA7C':'#23BBEE'}"
v-for="(item, index) in 3" :key="index">
25
- 待处理
+ {{index==0?'待处理':index==1?'已完成':index==2?'已取消':''}}
@@ -20,28 +20,31 @@
-
+
-
+
-
- 居家报修
- 待处理
+
+ {{item.type==1?'我要投诉':'我要表扬'}}
+ {{item.state==1?'待处理':item.state==2?'已完成':item.state==3?'已关闭':''}}
- 待处理
+ {{item.commentDescription}}
-
-
+
+
- 2025-03-10 10:01:45
- 去支付
- 报修详情
+ {{item.createTime}}
+ {{item.type==1?'关闭投诉':'关闭表扬'}}
+ {{item.type==1?'投诉详情':'表扬详情'}}
@@ -57,14 +60,48 @@
return {
type: 0,
tabIndex: 0,
+ list: [],
};
},
onLoad(e) {
this.type = e.type
},
+ onShow() {
+ this.getList()
+ },
methods: {
onClick(index) {
- this.$wskj.to("/pagesMain/pages/bxxq")
+ this.tabIndex = index;
+ this.getList()
+ },
+ onCz(e, index) {
+ if (e == "详情") {
+ this.$wskj.to("/pagesMain/pages/tsby_xq?id=" + this.list[index].id)
+ return
+ }
+ if (e == "关闭投诉表扬") {
+ this.gb(this.list[index].id);
+ return
+ }
+ },
+ getList() {
+ const params = {
+ url: '/api/comment/userListAll?state=' + (this.tabIndex + 1),
+ method: 'GET',
+ }
+ this.$request(params).then(res => {
+ this.list = res.data
+ })
+ },
+ gb(id) {
+ const params = {
+ url: '/api/comment/cancel/' + id,
+ method: 'PUT',
+ }
+ this.$request(params).then(res => {
+ this.getList()
+
+ })
}
},
};
diff --git a/pagesMain/pages/tsby_submit.vue b/pagesMain/pages/tsby_submit.vue
index e70610f6d11d19b02a1d9f362e47f7639f61a2cf..d441e2733fea8d87a53dddc85a0b743ca89e065f 100644
--- a/pagesMain/pages/tsby_submit.vue
+++ b/pagesMain/pages/tsby_submit.vue
@@ -7,54 +7,45 @@
-
- 利达国宾中心
+
+ {{userinfo.communityName}}
-
+
业主信息
业主姓名
- 张三
+ {{$wskj.isNullStr(userinfo.name)}}
业主房间号
- 张三
+ {{$wskj.isNullStr(userinfo.room)}}
业主手机号
- 张三
+ {{userinfo.mobile}}
- 报修信息
+ {{type == 1?'投诉信息':'表扬信息'}}
-
+
-
+
-
+
提交
-
-
-
-
-
- 确认提交?
-
-
-
@@ -65,58 +56,48 @@
title: '我要投诉',
type: 0,
reason: '',
- submitShow: false,
images: '',
+ userinfo: '',
};
},
onLoad(e) {
this.type = e.type
- if (e.type == 0) {
+ if (e.type == 1) {
this.title = "我要投诉"
} else {
this.title = "我要表扬"
}
+ this.userinfo = uni.getStorageSync("userInfo")
},
methods: {
- onSubmit() {
- this.$wskj.to("/pagesMain/pages/tjsq?type=" + this.type)
- // if (!this.reason) {
- // return this.$u.toast('请输入内容')
- // }
- // if (!this.images) {
- // return this.$u.toast('请至少上传一张照片')
- // }
- // if (this.reason.length < 10) {
- // return this.$u.toast('文字描述最低10个字')
- // }
- // this.submitShow = true
+ upload(e) {
+ this.images = e
},
- // 提交
- onConfirmSubmit() {
- // const params = {
- // url: '/api/user/yijian',
- // loadingTip: '',
- // data: {
- // content: this.reason,
- // images: this.images
- // }
- // }
- // // console.log(params);
- // this.$request(params).then(res => {
- // // console.log(res)
- // this.submitShow = false
- // if (res.code === 1) {
- // this.$u.toast(res.msg || '提交成功')
-
- // this.reason = ''
- // this.images = ''
- // } else {
- // this.$u.toast(res.msg || '提交失败')
- // }
- // }).catch(err => {
- // this.submitShow = false
- // this.$u.toast(err.msg || '提交失败')
- // })
+ onSubmit() {
+ console.log(this.images)
+ if (!this.reason) {
+ this.$wskj.toast('请输入表扬信息');
+ return
+ }
+ if (!this.images) {
+ this.$wskj.toast('请上传图片');
+ return
+ }
+ const params = {
+ url: '/api/comment/add',
+ loadingTip: '加载中...',
+ data: {
+ commentDescription: this.reason,
+ commentImg: this.images,
+ type: this.type
+ }
+ }
+ this.$request(params).then(res => {
+ this.$wskj.toast('提交成功')
+ setTimeout(() => {
+ this.$wskj.goBack(1)
+ }, 600)
+ })
}
},
};
diff --git a/pagesMain/pages/tsby_xq.vue b/pagesMain/pages/tsby_xq.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ad752a8e76f58750e59d3729c6d6bb0b09b82185
--- /dev/null
+++ b/pagesMain/pages/tsby_xq.vue
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+ {{data.type==1?'今日投诉':'今日表扬'}}
+ {{data.type==1?'投诉详情我知道':'表扬详情我知道'}}
+
+
+
+
+
+
+
+
+
+
+ {{data.type==1?'我要投诉':'我要表扬'}}
+ {{data.state==1?'待处理':data.state==2?'已完成':data.state==3?'已关闭':''}}
+
+
+
+ 业主姓名:
+ {{$wskj.isNullStr(userinfo.name)}}
+
+
+ 业主房间号
+ {{$wskj.isNullStr(userinfo.room)}}
+
+
+ 业主手机号
+ {{userinfo.mobile}}
+
+
+
+
+ {{data.type==1?'投诉信息':'表扬信息'}}
+
+
+ {{data.commentDescription}}
+
+
+
+
+
+
+
+
+
+ {{data.type==1?'投诉时间:':'表扬时间:'}}
+ {{data.createTime}}
+
+
+ 关闭时间:
+ {{data.closeTime}}
+
+
+
+
+
+
+ {{data.type==1?'关闭投诉':'关闭表扬'}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pagesMain/static/icon_cz_img.png b/pagesMain/static/icon_cz_img.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b921342fc3f8388457cedc0e17208c5417cdf52
Binary files /dev/null and b/pagesMain/static/icon_cz_img.png differ