Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -31,8 +31,8 @@
|
|||||||
数据更新于<span>{{ info.remindTime }}</span>
|
数据更新于<span>{{ info.remindTime }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="pie_card">
|
<div class="pie_card">
|
||||||
<div v-if="info.executedCount != null" id="pieEcharts"></div>
|
<div v-show="info.executedCount != null" id="pieEcharts"></div>
|
||||||
<AiEmpty description="暂无数据" v-else />
|
<AiEmpty description="暂无数据" v-show="info.executedCount == null" />
|
||||||
<div class="pie_right">
|
<div class="pie_right">
|
||||||
<div>
|
<div>
|
||||||
计划送达居民群: <span>{{ info.planCount || 0 }}</span>
|
计划送达居民群: <span>{{ info.planCount || 0 }}</span>
|
||||||
@@ -48,8 +48,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- v-if="info.status == 4" -->
|
<div v-if="info.status == 4" class="btn" @click="remindSend">提醒成员发送</div>
|
||||||
<div class="btn" @click="remindSend">提醒成员发送</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -187,6 +186,7 @@ export default {
|
|||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
this.tableData = res.data.executedList;
|
this.tableData = res.data.executedList;
|
||||||
}
|
}
|
||||||
|
this.getPieEcharts()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,10 @@
|
|||||||
<span>{{ data.choiceTime }}</span>
|
<span>{{ data.choiceTime }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="task_results">
|
||||||
|
<img v-if="data.status == 1" src="./images/refuse.png" alt="">
|
||||||
|
<img v-if="data.status == 2" src="./images/pass.png" alt="">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<div class="scope">
|
<div class="scope">
|
||||||
@@ -31,7 +35,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class="textarea" v-if="content.length">{{ content[0].content }}</div>
|
<div class="textarea" v-if="content.length">{{ content[0].content }}</div>
|
||||||
<div class="pictures">
|
<div class="pictures">
|
||||||
<!-- <image v-for="(item, index) in picList" :key="index" :src="item."/> -->
|
<!-- <image v-for="(item, index) in picList" :key="index" :src="item.url" @click.stop="previewImages(picList, item.url)/> -->
|
||||||
</div>
|
</div>
|
||||||
<div></div>
|
<div></div>
|
||||||
<div></div>
|
<div></div>
|
||||||
@@ -68,6 +72,12 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
previewImage(images, img) {
|
||||||
|
uni.previewImage({
|
||||||
|
urls: images.map(v => v.url),
|
||||||
|
current: img
|
||||||
|
})
|
||||||
|
},
|
||||||
// 拒绝
|
// 拒绝
|
||||||
refuseBtn() {
|
refuseBtn() {
|
||||||
this.pass = 0
|
this.pass = 0
|
||||||
@@ -110,6 +120,7 @@ export default {
|
|||||||
padding: 32px 32px 120px 32px;
|
padding: 32px 32px 120px 32px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
.task {
|
.task {
|
||||||
|
position: relative;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
background: #FFF;
|
background: #FFF;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@@ -135,6 +146,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.task_results {
|
||||||
|
position: absolute;
|
||||||
|
right: 30px;
|
||||||
|
top: 30px;
|
||||||
|
img {
|
||||||
|
width: 160px;
|
||||||
|
height: 130px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
|
|||||||
BIN
src/project/saas/AppCooperationPropaganda/images/pass.png
Normal file
BIN
src/project/saas/AppCooperationPropaganda/images/pass.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
src/project/saas/AppCooperationPropaganda/images/refuse.png
Normal file
BIN
src/project/saas/AppCooperationPropaganda/images/refuse.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Reference in New Issue
Block a user