diff --git a/App.vue b/App.vue
index f71439e..4152317 100644
--- a/App.vue
+++ b/App.vue
@@ -33,63 +33,63 @@ export default {
this.globalData.config = config;
},
checkLogin() {
- const launchOptions = uni.getLaunchOptionsSync();
- const { query } = launchOptions;
- console.log(query, "query");
+ // const launchOptions = uni.getLaunchOptionsSync();
+ // const { query } = launchOptions;
+ // console.log(query, "query");
// console.log(Object.keys(query).length,"query.lengh");
- console.log(getToken(), "getToken()");
- if (!getToken()) {
- if (Object.keys(query).length !== 0) {
- console.log("获取query");
- // let params = this.getRequestParams();
- // console.log(params,"params携带的参数");
- // if (location.href.includes("code=")) {
- const code = query.code;
- const token = query.token;
- uni.setStorageSync("token", token);
- // console.log(code,"code");
- // console.log(token,"token");
- getSqByaccesstoken({
- code: code,
- })
- .then((res) => {
- // console.log("获取accessToken");
- uni.setStorageSync("accessToken", res.data.accessToken);
- return getUserinfo({
- accessToken: res.data.accessToken,
- });
- })
- .then((el) => {
- this.$tab.switchTab("/pages/index");
- uni.setStorageSync("userInfo", el.data);
- setToken(el.data.token);
- // location.reload();
- console.log("用户信息", el);
- });
- // }
- } else {
- // // #ifdef APP
- console.log("进入APP判断");
- // this.$tab.reLaunch("/pages/myLogin");
- uni.reLaunch({
- url: "/pages/myLogin",
- });
- // 打开手机浏览器指定的url
- // plus.runtime.openURL( "https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324", this.openErr );
- // // #endif
- // // #ifdef H5
- // location.href = `https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324`
- // // #endif
+ // console.log(getToken(), "getToken()");
+ // if (!getToken()) {
+ // if (Object.keys(query).length !== 0) {
+ // console.log("获取query");
+ // // let params = this.getRequestParams();
+ // // console.log(params,"params携带的参数");
+ // // if (location.href.includes("code=")) {
+ // const code = query.code;
+ // const token = query.token;
+ // uni.setStorageSync("token", token);
+ // // console.log(code,"code");
+ // // console.log(token,"token");
+ // getSqByaccesstoken({
+ // code: code,
+ // })
+ // .then((res) => {
+ // // console.log("获取accessToken");
+ // uni.setStorageSync("accessToken", res.data.accessToken);
+ // return getUserinfo({
+ // accessToken: res.data.accessToken,
+ // });
+ // })
+ // .then((el) => {
+ // this.$tab.switchTab("/pages/index");
+ // uni.setStorageSync("userInfo", el.data);
+ // setToken(el.data.token);
+ // // location.reload();
+ // console.log("用户信息", el);
+ // });
+ // // }
+ // } else {
+ // // // #ifdef APP
+ // console.log("进入APP判断");
+ // // this.$tab.reLaunch("/pages/myLogin");
+ // uni.reLaunch({
+ // url: "/pages/myLogin",
+ // });
+ // // 打开手机浏览器指定的url
+ // // plus.runtime.openURL( "https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324", this.openErr );
+ // // // #endif
+ // // // #ifdef H5
+ // // location.href = `https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324`
+ // // // #endif
- console.log("Before navigateTo or reLaunch");
- // this.$tab.reLaunch("/pages/myLogin");
- // uni.navigateTo({
- // url:'https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324'
- // })
- }
- } else {
- this.$tab.reLaunch("/pages/index");
- }
+ // console.log("Before navigateTo or reLaunch");
+ // // this.$tab.reLaunch("/pages/myLogin");
+ // // uni.navigateTo({
+ // // url:'https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324'
+ // // })
+ // }
+ // } else {
+ // this.$tab.reLaunch("/pages/index");
+ // }
},
openErr(err) {
console.log(err, "报错信息");
diff --git a/api/jn/apply.js b/api/jn/apply.js
index bf7ecc1..47b10d4 100644
--- a/api/jn/apply.js
+++ b/api/jn/apply.js
@@ -7,8 +7,22 @@ export function listActivity(query) {
method: "get",
params: query,
});
+}
+//门前三包评级规则
+export function listraterule(query) {
+ return request({
+ url: "/jn/raterule/list",
+ method: "get",
+ params: query,
+ });
+}
+export function listysfwlist(query) {
+ return request({
+ url: "/jn/ysfw/list",
+ method: "get",
+ params: query,
+ });
}
-
// 查询活动申请详细
export function getActivity(id) {
return request({
@@ -41,4 +55,11 @@ export function delActivity(id) {
url: "/jn/activity/" + id,
method: "delete",
});
+}
+//获取沿街店铺列表详细信息
+export function jnshop(id) {
+ return request({
+ url: "/jn/shop/" + id,
+ method: "GET",
+ });
}
diff --git a/components/fixedButtom/fixedButtom.vue b/components/fixedButtom/fixedButtom.vue
index 6891257..1298630 100644
--- a/components/fixedButtom/fixedButtom.vue
+++ b/components/fixedButtom/fixedButtom.vue
@@ -44,6 +44,7 @@
/* 兼容 iOS < 11.2 */
padding: 20rpx 20rpx calc(20rpx + env(safe-area-inset-bottom));
/* 兼容 iOS >= 11.2 */
- border-top: 1px solid #DCE3EC;
+ border-top: 1px solid #DCE3EC;
+ z-index: 3;
}
\ No newline at end of file
diff --git a/config.js b/config.js
index 5cd0a34..b710637 100644
--- a/config.js
+++ b/config.js
@@ -1,6 +1,6 @@
// 应用全局配置
module.exports = {
- // baseUrl: "http://39.101.188.84:9037",
+ // baseUrl: "http://192.168.0.105:9037",
TEST_LOGIN:"https://t-jn-development-manager.jsszkd.com/login", // ?clientId=
baseUrl: "https://t-jn-bjh-admin-server.jsszkd.com",
diff --git a/main.js b/main.js
index f7b758f..a239e4b 100644
--- a/main.js
+++ b/main.js
@@ -11,7 +11,7 @@ Vue.use(uView)
// import 'video.js/dist/video-js.css'
// Vue.prototype.$video = Videojs
-import 'mui-player/dist/mui-player.min.css'
+// import 'mui-player/dist/mui-player.min.css'
import fixedButtom from '@/components/fixedButtom/fixedButtom.vue'
Vue.component('fixedButtom', fixedButtom)
diff --git a/pages.json b/pages.json
index eb05125..bb5590e 100644
--- a/pages.json
+++ b/pages.json
@@ -105,7 +105,7 @@
"subPackages": [
{
"root": "subcontract/work/",
- "pages": [
+ "pages": [
{
"path": "event/index",
"style": {
@@ -256,7 +256,15 @@
"navigationBarTitleText": "新增店铺活动",
"enablePullDownRefresh": false
}
- },
+ },
+ {
+ "path" : "activity/activitydetails",
+ "style" :
+ {
+ "navigationBarTitleText": "活动详情",
+ "enablePullDownRefresh": false
+ }
+ },
{
"path": "threeGuarantees/index",
"style": {
@@ -298,7 +306,8 @@
"navigationBarTitleText": "消息中心",
"enablePullDownRefresh": false
}
- }
+ }
+
]
}
],
diff --git a/pages/index.vue b/pages/index.vue
index 5248ca0..1e59324 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -52,7 +52,7 @@ export default {
return {
grids: [
{
- name: "水生态治理科教(公众)",
+ name: "水生态治理科教",
gridImg: "/static/images/umale/gr8.png",
color: "#0D306B",
subcolor: "",
@@ -60,7 +60,7 @@ export default {
toPage: "/subPublic/waterEducation/index",
},
{
- name: "活动管理(商家)",
+ name: "活动管理",
gridImg: "/static/images/umale/gr8.png",
color: "#0D306B",
subcolor: "",
@@ -68,7 +68,7 @@ export default {
toPage: "/subEnterprise/activity/activity",
},
{
- name: "消息中心(商家)",
+ name: "消息中心",
gridImg: "/static/images/umale/gr8.png",
color: "#0D306B",
subcolor: "",
@@ -76,7 +76,7 @@ export default {
toPage: "/subEnterprise/msg/index",
},
{
- name: "门前三包服务(商家)",
+ name: "门前三包服务",
gridImg: "/static/images/umale/gr8.png",
color: "#0D306B",
subcolor: "",
@@ -84,7 +84,7 @@ export default {
toPage: "/subEnterprise/threeGuarantees/index",
},
{
- name: "店铺店招预审(商家)",
+ name: "店牌店招预审",
gridImg: "/static/images/umale/gr8.png",
color: "#0D306B",
subcolor: "",
@@ -132,11 +132,11 @@ export default {
onLoad() {
// this.getCircle();
- this.getUserLocation();
- this.times = setInterval(() => {
- console.log("获取用户位置信息");
- this.getUserLocation();
- }, 10000);
+ // this.getUserLocation();
+ // this.times = setInterval(() => {
+ // console.log("获取用户位置信息");
+ // this.getUserLocation();
+ // }, 10000);
},
mounted() {
this.userInfo = uni.getStorageSync("userInfo");
diff --git a/pages/myLogin.vue b/pages/myLogin.vue
index b9438f5..5697787 100644
--- a/pages/myLogin.vue
+++ b/pages/myLogin.vue
@@ -35,7 +35,7 @@ export default {
this.webview.overrideUrlLoading({ mode: "reject" }, (e) => {
//根据参数的不同,做不同的操作!url中,把双引号用别的字符串替换.就OK了.再替换回来可以转json
console.warn("参数为:" + e.url);
- // http://39.101.188.84:9999/demo/JiangNingUmale-App/#/?code=ckyb2r&clientId=641775453324&token=pygHmfvDNt4YxbucxXiIm0dN8d0IuLmd
+
// 获取当前页面的 URL
var url = e.url;
diff --git a/static/images/banner/green.png b/static/images/banner/green.png
new file mode 100644
index 0000000..8574c55
Binary files /dev/null and b/static/images/banner/green.png differ
diff --git a/static/images/banner/liucheng.png b/static/images/banner/liucheng.png
new file mode 100644
index 0000000..b599cd9
Binary files /dev/null and b/static/images/banner/liucheng.png differ
diff --git a/static/images/banner/orng.png b/static/images/banner/orng.png
new file mode 100644
index 0000000..57bab65
Binary files /dev/null and b/static/images/banner/orng.png differ
diff --git a/static/images/banner/red.png b/static/images/banner/red.png
new file mode 100644
index 0000000..4cefe83
Binary files /dev/null and b/static/images/banner/red.png differ
diff --git a/subEnterprise/activity/activity - 副本.vue b/subEnterprise/activity/activity - 副本.vue
new file mode 100644
index 0000000..3d2c769
--- /dev/null
+++ b/subEnterprise/activity/activity - 副本.vue
@@ -0,0 +1,299 @@
+
+
+
+
+
+
+
+
+ 活动名称:
+ {{ item.activeName }}
+
+
+ 活动时间:
+ {{ item.activeStart }}至{{ item.activeEnd }}
+
+
+ 活动内容:
+ {{ item.activeContent }}
+
+
+ 活动地点:
+ {{ item.activePoint }}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subEnterprise/activity/activity.vue b/subEnterprise/activity/activity.vue
index da62176..a7124f5 100644
--- a/subEnterprise/activity/activity.vue
+++ b/subEnterprise/activity/activity.vue
@@ -1,241 +1,177 @@
-
-
-
-
-
- 活动名称:
- {{ item.activeName }}
-
-
- 活动时间:
- {{ item.activeStart }}—{{ item.activeEnd }}
-
-
- 活动内容:
- {{ item.activeContent }}
-
-
- 活动地点:
- {{ item.activePoint }}
-
-
- 参与条件:
- {{ item.joinRequire }}
-
-
- 活动状态:
-
- {{ item.activeState | activeState }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ {{levelList[0].activeName || ""}}
+
+
+
+
+ {{levelList[0].activeRequest}}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subEnterprise/activity/activitydetails.vue b/subEnterprise/activity/activitydetails.vue
new file mode 100644
index 0000000..70ed15d
--- /dev/null
+++ b/subEnterprise/activity/activitydetails.vue
@@ -0,0 +1,129 @@
+
+ class="app-container"
+
+
+
+ 活动名称:
+ {{ data.activeName || "-"}}
+
+
+ 活动时间:
+ {{ data.activeStart || "-"}}至{{data.activeEnd || "-"}}
+
+
+ 活动内容:
+ {{ data.activeContent || '-'}}
+
+
+ 活动地点:
+ {{data.activePoint || '-'}}
+
+
+ 附件:
+ {{ data.joinRequire || '-'}}
+
+
+ 审核结果:
+ {{data.activeState | activeState}}
+
+
+ 审核意见:
+ {{ data.opinion || '-'}}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subEnterprise/activity/add.vue b/subEnterprise/activity/add.vue
index aff52fb..14c8954 100644
--- a/subEnterprise/activity/add.vue
+++ b/subEnterprise/activity/add.vue
@@ -1,191 +1,265 @@
-
-
-
-
-
- 活动名称
-
-
-
-
-
-
-
-
- 活动时间
-
-
-
- {{
- calendarRang || "请选择日期"
- }}
-
-
-
-
-
- 活动内容
-
-
-
-
-
-
-
-
- 活动地点
-
-
-
-
-
-
-
-
- 参与条件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ 活动名称
+
+
+
+
+
+
+
+
+ 活动时间
+
+
+
+ {{
+ calendarRang || "请选择日期"
+ }}
+
+
+
+
+
+ 活动描述
+
+
+
+
+
+
+
+
+ 活动地点
+
+
+
+
+
+
+
+
+
+ 上传附件
+
+
+
+
+ 点击上传
+
+
+
+ {{fileName}}
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subEnterprise/activity/addtow.vue b/subEnterprise/activity/addtow.vue
new file mode 100644
index 0000000..aff52fb
--- /dev/null
+++ b/subEnterprise/activity/addtow.vue
@@ -0,0 +1,191 @@
+
+
+
+
+
+ 活动名称
+
+
+
+
+
+
+
+
+ 活动时间
+
+
+
+ {{
+ calendarRang || "请选择日期"
+ }}
+
+
+
+
+
+ 活动内容
+
+
+
+
+
+
+
+
+ 活动地点
+
+
+
+
+
+
+
+
+ 参与条件
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/subEnterprise/prequalification/index.vue b/subEnterprise/prequalification/index.vue
index f1fef09..8fcc953 100644
--- a/subEnterprise/prequalification/index.vue
+++ b/subEnterprise/prequalification/index.vue
@@ -1,142 +1,245 @@
-
-
-
-
-
-
-
-
- 江宁开发区店招店牌申报流程
-
- 一、所需材料:
-1.实景效果图A4纸全页,近景1份、远景2份(包含白天和夜晚店招亮化远景实景效果图)
-要点:照片要求横向拍摄,原图制作、彩色打印。
-2.房屋租赁合同复印件、房屋产权证复印件、营业执照副本复印件。
-3.法人身份证复印件或经办人身份证复印件(经办人办理需法人开具委托书)。
-4.施工说明;
-要点:用文字描述设置所使用的材质、总体长度、宽度、厚度,字体及英文长、宽、数量,LOGO长、宽等。
-5.加盟协议(授权书)、商标注册证;(涉及注册商标需提供);
-6.安全检测报告(涉及墙体广告字、LED显示屏);
-7.洗衣店、宠物店等需办理排水证。
-8.涉及舞台活动搭建需提供舞台搭建资质、舞台结构图、专家论证方案,如涉及外来人员参与表演,需到区防疫指挥中心进行报备。
-二、注意事项:
-1.店招店牌设置地址必须与营业执照地址相符合;
-2.店招店牌不宜使用泡沫、即时贴、扣板等材料制作店招店牌。主要街路、窗口地区按总体规划不得使用灯箱布和喷绘布等材料设置店招广告(一般为铝塑底板,亚克力字)。
-3.店招店牌内容仅限于本单位的名称、字号、标识,禁止出现商品营销、经营服务范围、电话号码、变相发布广告等不符合规定的内容。
-4.店招店牌字体大小应与店招广告尺寸相协调。
-5.店招店牌效果图必须为实景拍摄门面整体轮廓,真实、准确反映现场所设置位置,电脑准确制作设置画面。要求画面清晰、店面环境整洁(无乱堆放、晾晒、张贴等)、位置准确。
-6.完全检测报告需在安装完成后一个月内送至我局备案。
-7.经批准后安装店招店牌的应设置围挡及警示标志,做到安全施工、文明施工。
-8.案件办理时间为:上午8:30—12:00 下午2:00—6:00
-三、联系方式:
-邮箱:280754057@qq.com 电话:18151671177 黄
-☆注:店招店牌备案需要一定的时间,请耐心等待,没有收到前来办理的通知前请勿制作以及安装,如在备案过程当中进行制作及安装,所造成的一切后果由其自行承担。
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ {{levelList[0].name || ""}}
+
+
+ {{levelList[0].msg || ""}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subEnterprise/threeGuarantees/index.vue b/subEnterprise/threeGuarantees/index.vue
index 61d70e7..2ecaf3a 100644
--- a/subEnterprise/threeGuarantees/index.vue
+++ b/subEnterprise/threeGuarantees/index.vue
@@ -1,155 +1,236 @@
-
-
-
-
- 评级规则
-
-
-
-
-
-
-
-
- 店铺名称:
- {{ item.sbLevelName }}
-
-
- 三包等级:
- {{ item.relationRateRule }}
-
-
- 有效期:
- {{ item.createTime }}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ 店铺名称:
+
+
+ {{titleObj.shopName || '优秀店铺'}}
+
+
+
+
+ 三包等级:
+
+
+
+ {{titleObj.sbLevel==3?'红牌':titleObj.sbLevel==4?'黄牌':titleObj.sbLevel==5?'绿牌':'暂无'}}
+
+
+
+
+ {{levelList[0].rateRuleName || ''}}
+
+
+
+
+
+
+ {{levelList[0].rateRuleContent || ""}}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/uni_modules/uview-ui/components/u-scroll-list/scrollWxs.wxs b/uni_modules/uview-ui/components/u-scroll-list/scrollWxs.wxs
index ce94f1d..cd69284 100644
--- a/uni_modules/uview-ui/components/u-scroll-list/scrollWxs.wxs
+++ b/uni_modules/uview-ui/components/u-scroll-list/scrollWxs.wxs
@@ -3,7 +3,7 @@ function scroll(event, ownerInstance) {
var detail = event.detail
var scrollWidth = detail.scrollWidth
var scrollLeft = detail.scrollLeft
- // 获取当前组件的dataset,说白了就是祸国殃民的腾xun搞出来的垃ji
+ // 获取当前组件的dataset,说白了就是搞出来的垃ji
var dataset = event.currentTarget.dataset
// 此为scroll-view外部包裹元素的宽度
// 某些HX版本(3.1.18),发现view元素中大写的data-scrollWidth,在wxs中,变成了全部小写,所以这里需要特别处理