diff --git a/src/mods/wxwork/AppWxworkQrcode/mdpi_img-chongqing.png b/src/mods/wxwork/AppWxworkQrcode/mdpi_img-chongqing.png
deleted file mode 100644
index c97c725..0000000
Binary files a/src/mods/wxwork/AppWxworkQrcode/mdpi_img-chongqing.png and /dev/null differ
diff --git a/src/project/fengdu/AppHome/AppHome.vue b/src/project/fengdu/AppHome/AppHome.vue
index aff01d9..ca68bd8 100644
--- a/src/project/fengdu/AppHome/AppHome.vue
+++ b/src/project/fengdu/AppHome/AppHome.vue
@@ -20,10 +20,10 @@
-

+
diff --git a/src/project/fengdu/AppHome/img/ic-jiaoyuhuzhu.png b/src/project/fengdu/AppHome/img/ic-jiaoyuhuzhu.png
deleted file mode 100644
index b4fc5e3..0000000
Binary files a/src/project/fengdu/AppHome/img/ic-jiaoyuhuzhu.png and /dev/null differ
diff --git a/src/project/fengdu/AppHome/img/img-fengduxinnongren.png b/src/project/fengdu/AppHome/img/img-fengduxinnongren.png
deleted file mode 100644
index ca4b4b0..0000000
Binary files a/src/project/fengdu/AppHome/img/img-fengduxinnongren.png and /dev/null differ
diff --git a/src/project/fengdu/AppHome/img/img-fengshouyinhang.png b/src/project/fengdu/AppHome/img/img-fengshouyinhang.png
deleted file mode 100644
index ef7f878..0000000
Binary files a/src/project/fengdu/AppHome/img/img-fengshouyinhang.png and /dev/null differ
diff --git a/src/project/fengdu/AppMine/img-zhuangshi.png b/src/project/fengdu/AppMine/img-zhuangshi.png
deleted file mode 100644
index f1089f1..0000000
Binary files a/src/project/fengdu/AppMine/img-zhuangshi.png and /dev/null differ
diff --git a/src/project/fengdu/AppMine/myHarvestQR.vue b/src/project/fengdu/AppMine/myHarvestQR.vue
index 724883e..45e83bc 100644
--- a/src/project/fengdu/AppMine/myHarvestQR.vue
+++ b/src/project/fengdu/AppMine/myHarvestQR.vue
@@ -17,7 +17,7 @@
我的丰收码
-

+
diff --git a/src/mods/wxwork/AppWxworkQrcode/AppWxworkQrcode.vue b/src/project/fengdu/AppWxworkQrcode/AppWxworkQrcode.vue
similarity index 66%
rename from src/mods/wxwork/AppWxworkQrcode/AppWxworkQrcode.vue
rename to src/project/fengdu/AppWxworkQrcode/AppWxworkQrcode.vue
index 25b21a6..47ff761 100644
--- a/src/mods/wxwork/AppWxworkQrcode/AppWxworkQrcode.vue
+++ b/src/project/fengdu/AppWxworkQrcode/AppWxworkQrcode.vue
@@ -1,12 +1,20 @@
-

+
@@ -30,15 +38,29 @@ export default {
},
data() {
return {
- list: {},
+ dictList: [],
id: '',
current: 0,
+ list: [],
+ picUrl: '',
}
},
onShow() {
this.getSelect()
},
+ watch: {
+ id: {
+ handler(v) {
+ if(v) {
+ this.picUrl = this.list.filter(i=> i.id == v)[0].qrCode
+ }
+ }
+ }
+ },
methods: {
+ selectBtn(e) {
+ console.log(e);
+ },
getSelect() {
const {areaId} = this.user
areaId && this.$instance.post(`/app/wxcp/wxgroup/listByAreaId`, null, {
@@ -51,6 +73,12 @@ export default {
}).then(res => {
if (res?.data) {
this.list = res.data.records
+ this.dictList = res.data.records.map(e=> {
+ return {
+ value: e.id,
+ label: e.name
+ }
+ })
}
})
},
@@ -114,16 +142,19 @@ export default {
padding: 36px;
box-sizing: border-box;
- ::v-deep .qrcode-img {
- width: 420px;
- height: 420px;
- margin-bottom: 24px;
+ .qrcode-img {
+ width: 100%;
+ height: 100%;
image {
- width: 420px;
- height: 420px;
+ width: 100%;
+ height: 100%;
}
}
+ .tips {
+ margin-top: 200px;
+ }
+
div {
font-size: 26px;
@@ -149,5 +180,8 @@ export default {
height: 100%;
}
}
+ .col-666 {
+ color: #666;
+ }
}