diff --git a/pages/advertisementAdd/advertisementAdd.vue b/pages/advertisementAdd/advertisementAdd.vue index 64b5a45..b0d752d 100644 --- a/pages/advertisementAdd/advertisementAdd.vue +++ b/pages/advertisementAdd/advertisementAdd.vue @@ -8,7 +8,7 @@ - + @@ -187,6 +187,11 @@ url: '/pages/record/record' }) }, + toChangeTime(val) { + uni.navigateTo({ + url: `/pages/advertisementTime/advertisementTime?val=${val}` + }) + }, // 上一步 toBefor() { this.active = +this.active - 1; diff --git a/pages/advertisementDetail/advertisementDetail.vue b/pages/advertisementDetail/advertisementDetail.vue index e61be6e..5900783 100644 --- a/pages/advertisementDetail/advertisementDetail.vue +++ b/pages/advertisementDetail/advertisementDetail.vue @@ -71,8 +71,8 @@ 客服 - 意向申请 - 租赁申请 + 意向申请 + 租赁申请 @@ -106,11 +106,11 @@ export default { console.log(this.tableData); }, methods: { - leaseAdd(){ - uni.navigateTo({ - url: '/pages/advertisementAdd/advertisementAdd', - }) - } + leaseAdd(url){ + uni.navigateTo({ + url + }) + } } }; diff --git a/pages/advertisementTime/advertisementTime.scss b/pages/advertisementTime/advertisementTime.scss index 215a9a7..d7fadc7 100644 --- a/pages/advertisementTime/advertisementTime.scss +++ b/pages/advertisementTime/advertisementTime.scss @@ -3,20 +3,47 @@ left: 0; top: 0; width: 100%; - height: 100%; + overflow-y: scroll; + height: calc(100% - 120rpx); + background-color: #f6f6f6; } -.calendar { - margin-top: 20rpx; +.calendar-box { + margin: 20rpx; + background-color: #fff; + border-radius: 14rpx; + overflow: hidden; + .wn-calendar { + .labels { + background-color: #fff; + } + } +} +.form-box { + padding: 0 20rpx; + .add-list{ + padding: 0 4%; + background-color: #FFFFFF; + border-radius: 20rpx; + margin-top: 20rpx; + width: 100%; + } + .btns { + display: flex; + margin-top: 20rpx; + .u-btn { + padding: 0 60rpx; + } + } } /* 保存按钮 */ .page-footer{ position: fixed; left: 0; bottom: 0; - display: flex; width: 100%; - height: 100rpx; + height: 120rpx; background-color: #FFFFFF; + padding: 20rpx 20rpx; padding-bottom: constant(safe-area-inset-bottom); padding-bottom: env(safe-area-inset-bottom); .footer-buy{ @@ -30,7 +57,7 @@ align-items: center; justify-content: center; width: 100%; - height: 100rpx; + height: 70rpx; background-color: #3f9b6a; text{ font-size: 28rpx; diff --git a/pages/advertisementTime/advertisementTime.vue b/pages/advertisementTime/advertisementTime.vue index a385dad..156586e 100644 --- a/pages/advertisementTime/advertisementTime.vue +++ b/pages/advertisementTime/advertisementTime.vue @@ -1,173 +1,65 @@ - + \ No newline at end of file diff --git a/pages/createQuestionnaire/createQuestionnaire.scss b/pages/createQuestionnaire/createQuestionnaire.scss index 948c9c1..c878793 100644 --- a/pages/createQuestionnaire/createQuestionnaire.scss +++ b/pages/createQuestionnaire/createQuestionnaire.scss @@ -1,76 +1,67 @@ .page{ - padding: 20rpx 30rpx; - background-color: #fff; + padding: 0 20rpx 20rpx; + background-color: #f6f6f6; font-size: 24rpx; font-weight: 500; position: relative; - .titles{ - display: flex; - justify-content: space-between; - margin-bottom: 30rpx; - } - .uni-textarea{ - - padding: 20rpx 30rpx; - min-height: 50rpx; - font-size: 24rpx; - background-color: #EFEFEF; - /deep/ uni-textarea{ - height: 180rpx; - } - /deep/.textarea{ - width: 100%; - font-size: 24rpx; - - } + .form-box { + padding: 0 4%; + background-color: #FFFFFF; + border-radius: 20rpx; + margin-top: 20rpx; + width: 100%; } - .listCont{ - margin-top: 60rpx; - .listTitile{ - margin-bottom: 20rpx; - } - .uni-input{ - background-color: #E0E0E0; - margin-bottom: 20rpx; - height: 80rpx; - padding: 10rpx 20rpx; - font-size: 24rpx; + .select-item { + background-color: #FFFFFF; + border-radius: 20rpx; + margin-top: 20rpx; + width: 100%; + .top { + padding: 22rpx 4%; + .title { + font-size: 30rpx; + margin-bottom: 20rpx; + } + .radio-box { + font-size: 24rpx; + color: #7c7c7c; + } } - .btnList{ + .bottom { + padding: 20rpx 4%; display: flex; - flex-wrap: wrap; - font-weight: 200; - background-color: #E0E0E0; - padding: 14rpx 14rpx; - justify-content: space-between; - /deep/ uni-button{ + background-color: #EDFFF5; + border: #0FBB59 solid 1rpx; + border-radius: 0 0 20rpx 20rpx; + .u-btn { width: 18%; - height:45rpx; - font-size: 24rpx; - border-radius:none; - line-height: 45rpx; + } + :first-child { + margin-left: 0; + } + :last-child { + margin-right: 0; } } } - .page_foot{ + .page-footer{ position: fixed; + left: 0; bottom: 0; - left: 0; + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; width: 100%; - z-index: 10; - .foot_btnList{ - display: flex; - flex-wrap: wrap; - font-weight: 200; - padding: 14rpx 30rpx; - justify-content: space-between; - /deep/ uni-button{ - width: 21%; - height:70rpx; - font-size: 24rpx; - border-radius:none; - line-height: 70rpx; - } + height: 120rpx; + background-color: #FFFFFF; + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); + .u-btn { + width: 30%; + } + .u-icon { + margin-right: 10rpx; } } } \ No newline at end of file diff --git a/pages/createQuestionnaire/createQuestionnaire.vue b/pages/createQuestionnaire/createQuestionnaire.vue index 380eea2..e6d9a86 100644 --- a/pages/createQuestionnaire/createQuestionnaire.vue +++ b/pages/createQuestionnaire/createQuestionnaire.vue @@ -1,54 +1,36 @@