123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- <template>
- <view class="work-container">
- <!-- 轮播图 -->
- <uni-swiper-dot class="uni-swiper-dot-box" :info="data" :current="current" field="content">
- <swiper class="swiper-box" :current="swiperDotIndex" @change="changeSwiper">
- <swiper-item v-for="(item, index) in data" :key="index">
- <view class="swiper-item" @click="clickBannerItem(item)">
- <image :src="item.image" mode="aspectFill" :draggable="false" />
- </view>
- </swiper-item>
- </swiper>
- </uni-swiper-dot>
- <!-- 宫格组件 -->
- <!-- <uni-section title="系统管理" type="line"></uni-section> -->
- <view class="grid-body">
- <uni-grid :column="2" :showBorder="false">
- <uni-grid-item>
- <view class="grid-item-box" @click="showMinYong">
- <uni-icons type="person-filled" size="30"></uni-icons>
- <text class="text">民用工程</text>
- </view>
- </uni-grid-item>
- <uni-grid-item>
- <view class="grid-item-box" >
- <uni-icons type="staff-filled" size="30"></uni-icons>
- <text class="text">工业工程</text>
- </view>
- </uni-grid-item>
- <uni-grid-item>
- <view class="grid-item-box" @click="municipalProjectClick">
- <uni-icons type="color" size="30"></uni-icons>
- <text class="text">市政工程</text>
- </view>
- </uni-grid-item>
- <uni-grid-item>
- <view class="grid-item-box">
- <uni-icons type="settings-filled" size="30"></uni-icons>
- <text class="text">危险作业工程</text>
- </view>
- </uni-grid-item>
- <uni-grid-item>
- <view class="grid-item-box">
- <uni-icons type="heart-filled" size="30"></uni-icons>
- <text class="text">预警工程</text>
- </view>
- </uni-grid-item>
- <uni-grid-item>
- <view class="grid-item-box">
- <uni-icons type="bars" size="30"></uni-icons>
- <text class="text">基建工程</text>
- </view>
- </uni-grid-item>
- </uni-grid>
- <view v-if="showPopup" class="popup">
- <view class="content">
- <view class="line1">
- <view>旧改工程</view>
- </view>
- <view class="line2" v-for="(item, index) in OldProjectList" :key="index">
- <view @click="OldProject(item.dictValue)">{{item.dictLabel}}</view>
- <!-- <view @click="Courtyard(0)">庭院</view>
- <view @click="Overhead(0)">架空</view> -->
- </view>
- <view class="line1">
- <view>新建工程</view>
- </view>
- <view class="line2" v-for="(item, index) in NewProjectList" :key="index">
- <view @click="NewProject(item.dictValue)">{{item.dictLabel}}</view>
- <!-- <view @click="Courtyard(0)">庭院</view>
- <view @click="Overhead(0)">架空</view> -->
- </view>
- </view>
- <view class="btn-group">
- <view class="btn_position">
- <view class="cancel" @click="showMinYong">取消</view>
- </view>
- </view>
- </view>
- <view v-if="showPopup" class="mask" @click="showMinYong"></view>
- </view>
- <view class="share">
- <view :class="{'share-box': shareState}" @click="handleHiddenShare">
- </view>
- <view class="share-item" :class="{'share-show': shareState}">
- <view class="share-to">
- <text>请选择</text>
- </view>
- <view class="content">
- <view class="block" v-for="(item, index) in typeList" :key="index" @click="showTypeSheet(item)">
- <!-- <image :src="item.image" mode="aspectFill"></image> -->
- <text>{{item.dictLabel}}</text>
- </view>
- </view>
- <view class="cancel" @click.stop="handleHiddenShare">
- <text>取消</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getDicts
- } from "@/api/system/dict/data";
- export default {
- data() {
- return {
- showPopup: false,
- shareState: false,
- array: [],
- OldProjectList: '', //旧改工程
- NewProjectList: '', //民用工程
- typeList: '', //二次弹窗数据
- enginType: '',
- enginClassification: '', // 旧改节点 数据字典
- enginClassValue: '', //二次节点 数据字典
- current: 0,
- swiperDotIndex: 0,
- data: [{
- image: '/static/images/banner/banner01.jpg'
- },
- {
- image: '/static/images/banner/banner02.jpg'
- },
- {
- image: '/static/images/banner/banner03.jpg'
- }
- ]
- }
- },
- methods: {
- // 显示二次弹窗
- handleShowSheet() {
- this.shareState = true;
- },
- // 隐藏二次弹窗
- handleHiddenShare() {
- this.shareState = false;
- },
- clickBannerItem(item) {
- console.info(item)
- },
- changeSwiper(e) {
- this.current = e.detail.current
- },
- changeGrid(e) {
- this.$modal.showToast('模块建设中~')
- },
- showMinYong() {
- getDicts("old_renovation").then(response => {
- this.OldProjectList = response.data;
- });
- getDicts("new_built").then(response => {
- this.NewProjectList = response.data;
- });
- this.showPopup = !this.showPopup;
- },
- //市政工程-首页-点击事件
- municipalProjectClick(){
- uni.navigateTo({
- url: '/pages/municipal/municipal'
- });
- },
- NewProject(e) {
- this.enginType = 'new_built'; //写死
- this.enginClassification = e;
- this.typeList = ''; //置空
- console.log("新建", e)
- if (e == 'indoor_engin') {
- //新建室内
- getDicts("new_built_indoor_engin").then(response => {
- this.typeList = response.data;
- });
- } else if (e == 'courtyard') {
- //新建庭院
- getDicts("new_built_courtyard_engin").then(response => {
- console.log("庭院", response.data)
- this.typeList = response.data;
- });
- } else if (e == 'overhead') {
- //新建架空
- getDicts("new_built_courtyard_engin").then(response => {
- console.log("架空", response.data)
- this.typeList = response.data;
- });
- }
- this.handleShowSheet();
- },
- OldProject(e) {
- this.enginType = 'old_renovation'; //写死
- this.enginClassification = e;
- console.log("旧改", e)
- this.typeList = ''; //置空
- if (e == 'indoor_engin') {
- //旧改室内
- getDicts("old_renovation_indoor_engin").then(response => {
- this.typeList = response.data;
- });
- } else if (e == 'courtyard') {
- //旧改庭院
- getDicts("old_renovation_courtyard_engin").then(response => {
- console.log("庭院", response.data)
- this.typeList = response.data;
- });
- } else if (e == 'overhead') {
- //旧改架空
- getDicts("old_renovation_overhead").then(response => {
- console.log("架空", response.data)
- this.typeList = response.data;
- });
- }
- this.handleShowSheet();
- },
- //二次弹窗 选择类型
- showTypeSheet(item) {
- this.showPopup = !this.showPopup; //隐藏第一次弹窗
- this.enginClassValue = item.dictValue; //二次节点赋值
- const obj = {
- enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
- enginType: this.enginType, //旧改 还是新建 写死
- enginClassification: this.enginClassification //室内 庭院 架空
- };
- console.log(obj)
- this.handleHiddenShare();
- // 室内
- if (this.enginClassification == 'indoor_engin') {
- uni.navigateTo({
- url: '/pages/oldrenovation/indoor/indoor?params=' + encodeURIComponent(JSON.stringify(
- obj))
- })
- }
- // 庭院
- else if (this.enginClassification == 'courtyard') {
- uni.navigateTo({
- url: '/pages/oldrenovation/courtyard/courtyard?params=' + encodeURIComponent(JSON
- .stringify(
- obj))
- })
- } else if (this.enginClassification == 'overhead') { //架空
- uni.navigateTo({
- url: '/pages/oldrenovation/overhead/overhead?params=' + encodeURIComponent(JSON.stringify(
- obj))
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- /* #ifndef APP-NVUE */
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #fff;
- min-height: 100%;
- height: auto;
- }
- view {
- font-size: 14px;
- line-height: inherit;
- }
- /* #endif */
- .text {
- text-align: center;
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- .grid-item-box {
- flex: 1;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 15px 0;
- }
- .uni-margin-wrap {
- width: 690rpx;
- width: 100%;
- ;
- }
- .swiper {
- height: 300rpx;
- }
- .swiper-box {
- height: 150px;
- }
- .swiper-item {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #fff;
- height: 300rpx;
- line-height: 300rpx;
- }
- @media screen and (min-width: 500px) {
- .uni-swiper-dot-box {
- width: 400px;
- /* #ifndef APP-NVUE */
- margin: 0 auto;
- /* #endif */
- margin-top: 8px;
- }
- .image {
- width: 100%;
- }
- }
- // 弹窗效果
- .popup {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #fff;
- // padding: 20rpx;
- box-sizing: border-box;
- z-index: 999;
- }
- // 遮罩层
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 888;
- }
- // 弹窗内容
- .content {
- .line1 {
- background-color: #6ea8e7;
- text-align: center;
- padding: 20rpx;
- }
- .line2 {
- padding: 20rpx;
- // border-bottom: 1px solid black;
- view {
- margin-bottom: 10rpx;
- }
- }
- }
- // 按钮样式
- .btn-group {
- box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.5);
- /* 示例阴影参数,根据需要进行调整 */
- .btn_position {
- display: flex;
- width: 100%;
- .cancel {
- width: 50%;
- text-align: center;
- padding: 20rpx 0;
- color: #519fe7;
- }
- .submit {
- width: 50%;
- background-color: #519fe7;
- text-align: center;
- padding: 20rpx 0;
- color: #fff;
- }
- }
- }
- .share {
- width: 100%;
- height: 100%;
- }
- .share-box {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0rpx;
- left: 0rpx;
- bottom: 0rpx;
- right: 0rpx;
- background-color: rgba(0, 0, 0, 0.4);
- transition: .3s;
- z-index: 999;
- }
- // 进入分享动画
- .share-show {
- transition: all 0.3s ease;
- transform: translateY(0%) !important;
- }
- // 离开分享动画
- .share-item {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- height: auto;
- background-color: #FFFFFF;
- transition: all 0.3s ease;
- transform: translateY(100%);
- z-index: 1999;
- .share-to {
- width: 100%;
- height: 3rem;
- display: flex;
- justify-content: center;
- align-items: center;
- &::after {
- content: '';
- width: 240rpx;
- height: 0rpx;
- border-top: 1px solid #E4E7ED;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- margin-left: 30rpx;
- }
- &::before {
- content: '';
- width: 240rpx;
- height: 0rpx;
- border-top: 1px solid #E4E7ED;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- margin-right: 30rpx;
- }
- }
- .content {
- width: 100%;
- height: 50%;
- display: flex;
- flex-wrap: wrap;
- .block {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 80rpx;
- text {
- margin-top: 16rpx;
- font-size: 28rpx;
- color: #606266;
- }
- }
- }
- .cancel {
- width: 100%;
- height: 3rem;
- display: flex;
- justify-content: center;
- align-items: center;
- border-top: 1rpx solid #E4E7ED;
- }
- }
- </style>
|