城阳居民端公众号前端代码
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.
 
 
 
 

110 lines
2.8 KiB

<template>
<div>
<div class="flex flex-mean" style="background-color: #FFFFFF; height: 200px;">
<img src="../../assets/images/peoSuggestion/5.png" style="width: 100%; height: 200px;" />
</div>
<div class='' style="position: relative;top: -10px;">
<div class="card">
<span>
各位建议人:
</span>
<br>
<span>&emsp;&emsp;为贯彻落实"以人民为中心"的发展思想坚持 新时代党的群众路线,践行'大社会、大治理、大服 务"工作</span>
<br>
<span>
注意事项:
</span>
<br>
<span> 1、人民建议,是指公民、法人或社会组织(简称建 议人)为了社会公共利益,针对社会公共事务,对 我市经济建设、政治建 </span>
<br>
<span> 2、人民建议,是指公民、法人或社会组织(简称建 议人)为了社会公共利益,针对社会公共事务,对 我市经济建设、政治建 </span>
</div>
</div>
<div class="flex flex-center1 ">
<van-button block color="linear-gradient(to right, #81B5FB, #3E92FF)" style="width: 300px;" round @click="onClickdaily">开始填写</van-button>
</div>
<Android @send-number="handleNumber" />
</div>
</template>
<script>
import {sphereLifeSearcdetail } from "@/api/lingCircle"
import Share from "@/components/Share"
import registerDialog from '@/components/registerDialog';
import { setConfig } from '@/utils/jweixin'
import { Toast, Dialog } from 'vant'
export default {
data() {
return {
};
},
created() {
},
async mounted() {
},
methods: {
//建议征集
onClickdaily(){
this.$router.push({path:`solicitationDaily`})
},
},
components: { Share, registerDialog },
computed: {
disabledRecord() {
return (item) => {
if (!item.cutOffTime || item.online != 1) return true
let flag = new Date(item.cutOffTime.replace(/-/g, '/')).getTime() < Date.now() || item.currentParticipants >= item.participants || item.currentParticipants >= item.participants;
return flag || false
}
},
},
watch: {},
}
</script>
<style lang='less' scoped>
.phone{
height: 50px;
bottom:8vh;
}
:deep img{
max-width: 100%;
}
:deep(.p0>.van-cell) {
padding: 0;
}
:deep(.van-cell) {
padding: 16px 8px;
}
:deep(.van-cell__title) {
color: #666666;
display: flex;
&>span {
flex: 1;
}
}
:deep(.van-cell__value) {
text-align: left;
}
:deep(.van-cell--required) {
&::before {
left: -5px;
}
}
</style>