Browse Source

新版本页面 7/14 0:18

master
xiangshunpu 4 years ago
parent
commit
d7c7d6b5af
  1. 6
      app.json
  2. 1
      app.wxss
  3. BIN
      assets/images/dcs.png
  4. BIN
      assets/images/jiankong.png
  5. 109
      pages/calculation-detail/calculation-detail.js
  6. 5
      pages/calculation-detail/calculation-detail.json
  7. 60
      pages/calculation-detail/calculation-detail.wxml
  8. 115
      pages/calculation-detail/calculation-detail.wxss
  9. 160
      pages/calculation/calculation.js
  10. 4
      pages/calculation/calculation.json
  11. 83
      pages/calculation/calculation.wxml
  12. 143
      pages/calculation/calculation.wxss
  13. 95
      pages/calendar/calendar.js
  14. 24
      pages/calendar/calendar.wxml
  15. 43
      pages/calendar/calendar.wxss
  16. 4
      pages/look-detail/look-detail.js
  17. 6
      pages/suggestion/suggestion.json
  18. 33
      pages/suggestion/suggestion.wxml
  19. 80
      pages/suggestion/suggestion.wxss
  20. 6
      project.private.config.json

6
app.json

@ -1,8 +1,8 @@
{ {
"pages": [ "pages": [
"pages/index/index",
"pages/calendar/calendar", "pages/calendar/calendar",
"pages/look/look", "pages/look/look",
"pages/index/index",
"pages/calculation/calculation", "pages/calculation/calculation",
"pages/ucenter/ucenter", "pages/ucenter/ucenter",
"pages/message/message", "pages/message/message",
@ -16,7 +16,8 @@
"pages/special-research/special-research", "pages/special-research/special-research",
"pages/land-promotion/land-promotion", "pages/land-promotion/land-promotion",
"pages/suggestion/suggestion", "pages/suggestion/suggestion",
"pages/about/about" "pages/about/about",
"pages/calculation-detail/calculation-detail"
], ],
"permission": { "permission": {
"scope.userLocation": { "scope.userLocation": {
@ -64,7 +65,6 @@
"style": "v2", "style": "v2",
"sitemapLocation": "sitemap.json", "sitemapLocation": "sitemap.json",
"useExtendedLib": { "useExtendedLib": {
"kbone": true,
"weui": true "weui": true
} }
} }

1
app.wxss

@ -152,7 +152,6 @@
} }
.table-item { .table-item {
border-bottom: 1px solid #E1E1E1;
font-size: 26rpx; font-size: 26rpx;
display: flex; display: flex;
} }

BIN
assets/images/dcs.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/images/jiankong.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 779 B

109
pages/calculation-detail/calculation-detail.js

@ -0,0 +1,109 @@
// pages/calculation-detail/calculation-detail.js
import * as echarts from '../../components/ec-canvas/echarts';
const app = getApp();
function initChart(canvas, width, height, dpr) {
const chart = echarts.init(canvas, null, {
width: width,
height: height,
devicePixelRatio: dpr // new
});
canvas.setChart(chart);
var option = {
title: {
text: '我的预测与成交溢价率的差异',
left: 'center'
},
legend: {
data: ['溢价率差异', '平均差异', '我的净利率'],
bottom: 50,
left: 'center',
z: 100
},
grid: {
containLabel: true
},
tooltip: {
show: true,
trigger: 'axis'
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['21001', '21002', '21003', '21004', '21005', '21006', '21007', '21008', '21009', '210010'],
show: false
},
yAxis: {
x: 'center',
type: 'value',
position: 'right',
offset: 5,
axisLabel: {
formatter: '{value}.00%'
}
},
series: [{
name: '溢价率差异',
type: 'bar',
smooth: true,
data: [17, 19, -16, -2, 8, 10, 5, 3, 2, 6],
itemStyle: {
color: '#9BBB59'
}
}, {
name: '平均差异',
type: 'line',
data: [3, 11, 13, -2, 8, 16, 3, 3, 2, 6],
showSymbol: false,
lineStyle: {
color: '#76589B',
width: 5
}
}, {
name: '我的净利率',
type: 'line',
showSymbol: false,
data: [17, 19, -16, -2, 8, 10, 5, 3, 2, 6],
lineStyle: {
color: '#4BACC6',
width: 5
}
}]
};
chart.setOption(option);
return chart;
}
Page({
onShareAppMessage: function (res) {
return {
title: 'ECharts 可以在微信小程序中使用啦!',
path: '/pages/index/index',
success: function () {},
fail: function () {}
}
},
data: {
ec: {
onInit: initChart
}
},
onShow(){
if (typeof this.getTabBar === 'function' &&
this.getTabBar()) {
this.getTabBar().setData({
selected: 3
})
}
},
comeHistory(){
wx.navigateTo({
url: '../../pages/history/history',
})
}
});

5
pages/calculation-detail/calculation-detail.json

@ -0,0 +1,5 @@
{
"usingComponents": {
"ec-canvas": "../../components/ec-canvas/ec-canvas"
}
}

60
pages/calculation-detail/calculation-detail.wxml

@ -0,0 +1,60 @@
<!--pages/calculation-detail/calculation-detail.wxml-->
<view class="pages">
<mp-navigation-bar ext-class="set-bar" title="测算监控"></mp-navigation-bar>
<view class="main">
<view class="top">
<view class="top-box center" bindtap="comeHistory">
<image class="top-icon" src="../../assets/images/history.png"></image>
<text>历史记录</text>
</view>
</view>
<view class="content">
<view class="info">
<view class="tab">
<view class="tab-item">
<view class="tab-surf">
<image class="my-pos" src="../../assets/images/bg2.png"></image>
<text class="tab-num">128</text>
</view>
<text class="tab-title">测算宗数</text>
</view>
<view class="tab-item">
<view class="tab-surf">
<image class="my-pos" src="../../assets/images/bg3.png"></image>
<text class="tab-num">39%</text>
</view>
<text class="tab-title">准确率</text>
</view>
<view class="tab-item">
<view class="tab-surf">
<image class="my-pos" src="../../assets/images/bg1.png"></image>
<text class="tab-num">2.43%</text>
</view>
<text class="tab-title">预测误差</text>
</view>
</view>
<view class="msg">
<view class="msg-item">
<view class="msg-icon">
<image src="../../assets/images/msg.png"></image>
</view>
<text class="msg-title">测算宗数=完成测算并提交的土地宗数,单宗土地不重复;</text>
</view>
<view class="msg-item">
<view class="msg-icon">
</view>
<text class="msg-title">预测准确=预测溢价率差异在1%的土地宗数/测算宗数;</text>
</view>
<view class="msg-item">
<view class="msg-icon">
</view>
<text class="msg-title">预测误差=预测溢价率差异的绝对值的平均数;</text>
</view>
</view>
</view>
<view class="map">
<ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ ec }}"></ec-canvas>
</view>
</view>
</view>
</view>

115
pages/calculation-detail/calculation-detail.wxss

@ -0,0 +1,115 @@
/* pages/calculation-detail/calculation-detail.wxss */
.main {
display: flex;
flex-direction: column;
padding-bottom: 0;
}
.top {
height: 90rpx;
display: flex;
justify-content: flex-end;
align-items: center;
padding-right: 30rpx;
}
.top-box {
font-size: 32rpx;
color: #222222;
}
.top-box text {
text-indent: 8rpx;
}
.top-icon {
width: 28rpx;
height: 30rpx;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
}
.info {
background-color: #ffffff;
box-sizing: border-box;
padding: 30rpx;
}
.tab {
height: 230rpx;
display: flex;
justify-content: space-between;
}
.tab-item {
display: flex;
flex-direction: column;
align-items: center;
}
.tab-surf {
width: 180rpx;
height: 180rpx;
border-radius: 50%;
position: relative;
}
.tab-num {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
line-height: 180rpx;
text-align: center;
z-index: 2;
font-size: 36rpx;
font-weight: bold;
color: #FFFFFF;
}
.tab-title {
font-size: 34rpx;
font-weight: bold;
color: #262936;
}
.msg{
padding: 20rpx;
border: 2rpx solid #E3E3E3;
margin-top: 52rpx;
}
.msg-item{
display: flex;
align-items: center;
}
.msg-icon{
width: 20rpx;
height: 24rpx;
margin-right: 16rpx;
}
.msg-icon image{
display: block;
width: 100%;
height: 100%;
}
.msg-title{
font-size: 22rpx;
color: #838B99;
line-height: 50rpx;
}
.map{
margin-top: 24rpx;
background-color: #FFFFFF;
padding: 40rpx 0;
flex: 1;
}

160
pages/calculation/calculation.js

@ -1,108 +1,78 @@
import * as echarts from '../../components/ec-canvas/echarts';
const app = getApp(); const app = getApp();
function initChart(canvas, width, height, dpr) { Page({
const chart = echarts.init(canvas, null, { data: {
width: width, active: '',
height: height, tabs: [{
devicePixelRatio: dpr // new id: 1,
}); name: '测算日期'
canvas.setChart(chart);
var option = {
title: {
text: '我的预测与成交溢价率的差异',
left: 'center'
},
legend: {
data: ['溢价率差异', '平均差异', '我的净利率'],
bottom: 50,
left: 'center',
z: 100
},
grid: {
containLabel: true
},
tooltip: {
show: true,
trigger: 'axis'
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['21001', '21002', '21003', '21004', '21005', '21006', '21007', '21008', '21009', '210010'],
show: false
},
yAxis: {
x: 'center',
type: 'value',
position: 'right',
offset: 5,
axisLabel: {
formatter: '{value}.00%'
}
},
series: [{
name: '溢价率差异',
type: 'bar',
smooth: true,
data: [17, 19, -16, -2, 8, 10, 5, 3, 2, 6],
itemStyle: {
color: '#9BBB59'
}
}, {
name: '平均差异',
type: 'line',
data: [3, 11, 13, -2, 8, 16, 3, 3, 2, 6],
showSymbol: false,
lineStyle: {
color: '#76589B',
width: 5
}
}, { }, {
name: '我的净利率', id: 2,
type: 'line', name: '城市区域'
showSymbol: false, }],
data: [17, 19, -16, -2, 8, 10, 5, 3, 2, 6], list: [],
lineStyle: { refresher: false,
color: '#4BACC6', setScroll: true
width: 5 },
}
}]
};
chart.setOption(option); onReady() {
return chart; this.refresh()
} },
Page({ onShow() {
onShareAppMessage: function (res) { if (typeof this.getTabBar === 'function' &&
return { this.getTabBar()) {
title: 'ECharts 可以在微信小程序中使用啦!', this.getTabBar().setData({
path: '/pages/index/index', selected: 3
success: function () {}, })
fail: function () {}
} }
}, },
data: {
ec: { comeHistory() {
onInit: initChart wx.navigateTo({
url: '../../pages/calculation-detail/calculation-detail',
})
},
tabDowm(e) {
let active = e.currentTarget.dataset.id
if (active === this.data.active) {
this.setData({
active: '',
setScroll: true
})
} else {
this.setData({
active,
setScroll: false
})
} }
}, },
onShow(){ hideMark(){
if (typeof this.getTabBar === 'function' && this.setData({active:'',setScroll:true})
this.getTabBar()) {
this.getTabBar().setData({
selected: 3
})
}
}, },
comeHistory(){ getList(){
wx.navigateTo({ let list = this.data.list.concat(this.data.list);
url: '../../pages/history/history', this.setData({list})
}) },
} refresh(){
let list = [
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'},
{title:'重庆-九龙坡区-杨家坪-CQ202168458677901',timer:'2021/01/01',num:'29%'}
]
setTimeout(()=>{this.setData({list,refresher:false})},200)
},
}); });

4
pages/calculation/calculation.json

@ -1,5 +1,3 @@
{ {
"usingComponents": { "usingComponents": {}
"ec-canvas": "../../components/ec-canvas/ec-canvas"
}
} }

83
pages/calculation/calculation.wxml

@ -1,59 +1,42 @@
<view class="pages"> <view class="pages">
<mp-navigation-bar ext-class="set-bar" title="测算" back="{{false}}"></mp-navigation-bar> <mp-navigation-bar ext-class="set-bar" title="测算" back="{{false}}"></mp-navigation-bar>
<view class="main">
<view class="top"> <view class="top">
<view class="top-box center" bindtap="comeHistory"> <view class="search center">
<image class="top-icon" src="../../assets/images/history.png"></image> <image src="../../assets/images/search-mini.png"></image>
<text>历史记录</text> </view>
<view class="top-box center" bindtap="comeHistory">
<image class="top-icon" src="../../assets/images/jiankong.png"></image>
<text>测算监控</text>
</view>
</view>
<view class="tab-box">
<view class="table">
<view class="table-item center {{active===item.id?'table-active':''}}" wx:for="{{tabs}}" wx:key="id"
wx:for-item="item" data-id="{{item.id}}" bindtap="tabDowm">
<text class="table-name">{{item.name}}</text>
<image class="table-icon" src="../../assets/images/tab-icon.png"></image>
</view> </view>
</view> </view>
<view class="content"> <view class="top-box center">
<view class="info"> <image class="top-icon" src="../../assets/images/dcs.png"></image>
<view class="tab"> <text>待测算</text>
<view class="tab-item"> </view>
<view class="tab-surf"> </view>
<image class="my-pos" src="../../assets/images/bg2.png"></image> <view class="main">
<text class="tab-num">128</text> <view class="mark" wx:if="{{active}}" bindtap="hideMark"></view>
</view> <scroll-view class="list" scroll-y="{{setScroll}}" refresher-enabled refresher-triggered="{{refresher}}"
<text class="tab-title">测算宗数</text> bindscrolltolower="getList" bindrefresherrefresh="refresh">
</view> <view class="list-item" wx:for="{{list}}" wx:for-index="i" wx:for-item="item" bindtap="comeDetail">
<view class="tab-item"> <view class="item-box">
<view class="tab-surf"> <view class="title one-title">{{item.title}}</view>
<image class="my-pos" src="../../assets/images/bg3.png"></image> <view class="info">
<text class="tab-num">39%</text> <text class="timer">测算日期:{{item.timer}}</text>
</view> <text class="num">净利率:{{item.num}}</text>
<text class="tab-title">准确率</text>
</view>
<view class="tab-item">
<view class="tab-surf">
<image class="my-pos" src="../../assets/images/bg1.png"></image>
<text class="tab-num">2.43%</text>
</view>
<text class="tab-title">预测误差</text>
</view>
</view>
<view class="msg">
<view class="msg-item">
<view class="msg-icon">
<image src="../../assets/images/msg.png"></image>
</view>
<text class="msg-title">测算宗数=完成测算并提交的土地宗数,单宗土地不重复;</text>
</view>
<view class="msg-item">
<view class="msg-icon">
</view>
<text class="msg-title">预测准确=预测溢价率差异在1%的土地宗数/测算宗数;</text>
</view>
<view class="msg-item">
<view class="msg-icon">
</view>
<text class="msg-title">预测误差=预测溢价率差异的绝对值的平均数;</text>
</view> </view>
</view> </view>
</view> </view>
<view class="map"> </scroll-view>
<ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ ec }}"></ec-canvas>
</view>
</view>
</view> </view>
</view> </view>

143
pages/calculation/calculation.wxss

@ -3,113 +3,124 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding-bottom: 0; padding-bottom: 0;
position: relative;
}
.mark {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(0, 0, 0, .1);
z-index: 10;
} }
.top { .top {
height: 90rpx; height: 90rpx;
display: flex; display: flex;
justify-content: flex-end; justify-content: space-between;
align-items: center; align-items: center;
padding-right: 30rpx; padding: 0 30rpx;
} }
.top-box { .search {
font-size: 32rpx; width: 111rpx;
color: #222222; height: 63rpx;
background: #f1f1f1;
border: 1rpx solid #f0f0f0;
border-radius: 31rpx;
} }
.top-box text { .search image {
text-indent: 8rpx; width: 32rpx;
height: 32rpx;
} }
.top-icon { .top-box {
width: 28rpx; display: flex;
height: 30rpx; align-items: center;
} }
.content { .top-box text {
flex: 1; margin-left: 10rpx;
display: flex; font-size: 32rpx;
flex-direction: column; color: #262936;
font-weight: bold;
} }
.info { .top-icon {
background-color: #ffffff; width: 32rpx;
box-sizing: border-box; height: 32rpx;
padding: 30rpx;
} }
.tab { .tab-box {
height: 230rpx;
display: flex; display: flex;
padding: 30rpx;
justify-content: space-between; justify-content: space-between;
align-items: center;
border: none;
} }
.tab-item { .table {
display: flex; display: flex;
flex-direction: column; border: none;
align-items: center;
} }
.tab-surf { .table-item {
width: 180rpx; margin-right: 40rpx;
height: 180rpx;
border-radius: 50%;
position: relative;
} }
.tab-num { .table-active .table-icon {
position: absolute; transform: rotate(-180deg);
left: 0;
top: 0;
width: 100%;
height: 100%;
line-height: 180rpx;
text-align: center;
z-index: 2;
font-size: 36rpx;
font-weight: bold;
color: #FFFFFF;
} }
.tab-title { .table-name {
font-size: 34rpx; font-size: 30rpx;
font-weight: bold; font-weight: bold;
color: #262936; color: #262936;
border: none;
} }
.msg{ .table-icon {
padding: 20rpx; width: 14rpx;
border: 2rpx solid #E3E3E3; height: 10rpx;
margin-top: 52rpx; margin-left: 10rpx;
} }
.msg-item{ .list {
display: flex; height: 100%;
align-items: center; background-color: #fff;
} }
.msg-icon{ .list-item {
width: 20rpx; padding: 0 30rpx;
height: 24rpx;
margin-right: 16rpx;
} }
.msg-icon image{ .item-box {
display: block; height: 130rpx;
width: 100%; box-sizing: border-box;
height: 100%; padding: 14rpx 0;
display: flex;
flex-direction: column;
justify-content: space-between;
border-bottom: 2rpx solid #e3e3e3;
} }
.msg-title{ .title {
font-size: 22rpx; font-size: 34rpx;
color: #838B99; font-weight: bold;
line-height: 50rpx; color: #262936;
}
.info {
display: flex;
align-items: center;
font-size: 26rpx;
color: #838b99;
} }
.map{ .num {
margin-top: 24rpx; margin-left: 56rpx;
background-color: #FFFFFF;
padding: 40rpx 0;
flex: 1;
} }

95
pages/calendar/calendar.js

@ -6,15 +6,23 @@ moment.locale('en', {
L: "YYYY/MM/DD", L: "YYYY/MM/DD",
} }
}); });
import {formatNumber} from '../../utils/util' import {
formatNumber
} from '../../utils/util'
Page({ Page({
/** /**
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
tabList: [{id:1,name:'本日挂牌'},{id:2,name:'本日拍卖'}], tabList: [{
timer:'', id: 1,
name: '本日挂牌'
}, {
id: 2,
name: '本日拍卖'
}],
timer: '',
active: 1, active: 1,
loading: false, loading: false,
color: '#000', color: '#000',
@ -28,40 +36,69 @@ Page({
calendarSelectedDateStr: '', calendarSelectedDateStr: '',
region: ["500000", "500100"], region: ["500000", "500100"],
cityName: '重庆', cityName: '重庆',
info:[{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'}] info: [{
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩沙坪坝区大石坝85亩沙坪坝区大石坝85亩沙坪坝区大石坝85亩沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}, {
id: 1,
name: 'CQ210001-沙坪坝区大石坝85亩'
}]
}, },
bindDateChange(res){ bindDateChange(res) {
let calendarDisplayTime = res.detail.value let calendarDisplayTime = res.detail.value
this.setData({ this.setData({
calendarDisplayTime calendarDisplayTime
}) })
}, },
tabDowm(e){ tabDowm(e) {
let active = e.currentTarget.dataset.id let active = e.currentTarget.dataset.id
if(active!==this.data.active){ if (active !== this.data.active) {
this.setData({active}) this.setData({
active
})
} }
}, },
backToday(){ backToday() {
let timer = new Date() let timer = new Date()
let year = timer.getFullYear() let year = timer.getFullYear()
let month = timer.getMonth()+1 let month = timer.getMonth() + 1
month = month.length>1?month:'0'+month month = month.length > 1 ? month : '0' + month
let date = `${year}-${month}` let date = `${year}-${month}`
if(date!==this.data.calendarDisplayTime){ if (date !== this.data.calendarDisplayTime) {
this.setData({ this.setData({
calendarDisplayTime:date calendarDisplayTime: date
}) })
} }
}, },
bindAddressChange(res){ bindAddressChange(res) {
let cityName = res.detail.value[1] let cityName = res.detail.value[1]
if(cityName){ if (cityName) {
this.setData({ this.setData({
cityName cityName
}) })
} }
}, },
@ -70,8 +107,10 @@ Page({
*/ */
onLoad: function (options) { onLoad: function (options) {
this.backToday() this.backToday()
let timer =moment().format('L') let timer = moment().format('L')
this.setData({timer}) this.setData({
timer
})
}, },
/** /**
@ -86,11 +125,11 @@ Page({
*/ */
onShow: function () { onShow: function () {
if (typeof this.getTabBar === 'function' && if (typeof this.getTabBar === 'function' &&
this.getTabBar()) { this.getTabBar()) {
this.getTabBar().setData({ this.getTabBar().setData({
selected: 0 selected: 0
}) })
} }
}, },
/** /**
@ -128,9 +167,11 @@ Page({
}, },
onCalendarDayTap(res){ onCalendarDayTap(res) {
let timer = res.detail; let timer = res.detail;
timer = `${timer.year}/${formatNumber(timer.month)}/${formatNumber(timer.day)}` timer = `${timer.year}/${formatNumber(timer.month)}/${formatNumber(timer.day)}`
this.setData({timer}) this.setData({
timer
})
} }
}) })

24
pages/calendar/calendar.wxml

@ -1,13 +1,13 @@
<wxs module="tools"> <wxs module="tools">
var setTime = function(str,type) { var setTime = function (str, type) {
var timer = str.split('-'); var timer = str.split('-');
if(type==='year'){ if (type === 'year') {
return timer[0]; return timer[0];
}else{ } else {
return timer[1]; return timer[1];
} }
}; };
module.exports = {setTime:setTime}; module.exports = { setTime: setTime };
</wxs> </wxs>
<view class="pages"> <view class="pages">
<mp-navigation-bar ext-class="set-bar" title="日历" back="{{false}}"></mp-navigation-bar> <mp-navigation-bar ext-class="set-bar" title="日历" back="{{false}}"></mp-navigation-bar>
@ -52,12 +52,8 @@
</view> </view>
<!-- 展示部分 --> <!-- 展示部分 -->
<view class="list"> <view class="list">
<view class="item"> <view class="item one-title" wx:key="id" wx:for="{{info}}" wx:for-index="id" wx:for-item="item">
<text class="lable">{{timer}}</text> {{item.name}}
<view class="info">
<text class="info-item" wx:key="id" wx:for="{{info}}" wx:for-index="id"
wx:for-item="item">{{item.name}}</text>
</view>
</view> </view>
</view> </view>
</view> </view>

43
pages/calendar/calendar.wxss

@ -47,7 +47,9 @@
} }
.back-now { .back-now {
color: #038AF3; color: #146ae7;
font-weight: bold;
font-size: 30rpx;
} }
.timer .year, .timer .year,
@ -85,35 +87,18 @@
opacity: 0; opacity: 0;
} }
.list .item { .list {
margin-top: 26rpx; padding-left: 30rpx;
background-color: #ffffff; background-color: #ffffff;
padding: 30rpx; margin-top: 20rpx;
}
.item .lable {
font-size: 32rpx;
font-weight: bold;
padding: 0 20rpx;
line-height: 42rpx;
background: #FFCC00;
border-radius: 4rpx;
color: #ffffff;
}
.list .info {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 30rpx;
} }
.list .info-item { .list .item {
padding: 0 30rpx; line-height: 110rpx;
font-size: 30rpx; border-bottom: 2rpx solid #e3e3e3;
font-size: 34rpx;
font-weight: bold; font-weight: bold;
color: #646464; color: #262936;
line-height: 80rpx;
} }
.tab { .tab {
@ -130,9 +115,9 @@
} }
.tab-title { .tab-title {
font-size: 30rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
color: #565A6B; color: #262936;
} }
.tab-tag { .tab-tag {
@ -143,7 +128,7 @@
.active .tab-title { .active .tab-title {
font-size: 34rpx; font-size: 34rpx;
color: #262936; color: #146ae7;
} }
.active .tab-tag { .active .tab-tag {

4
pages/look-detail/look-detail.js

@ -5,10 +5,10 @@ Page({
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
state: false, state: true,
tabList: [{id:1,name:'公告信息'},{id:2,name:'成交信息'},{id:3,name:'呈现项目'}], tabList: [{id:1,name:'公告信息'},{id:2,name:'成交信息'},{id:3,name:'呈现项目'}],
sedTabList: [{id:4,name:'基础测算'},{id:5,name:'高级测算'}], sedTabList: [{id:4,name:'基础测算'},{id:5,name:'高级测算'}],
active: 4, active: 1,
markShow: false, markShow: false,
annoutInfo:{}, annoutInfo:{},
clinchInfo: { clinchInfo: {

6
pages/suggestion/suggestion.json

@ -1,3 +1,7 @@
{ {
"usingComponents": {} "usingComponents": {
"mp-uploader": "weui-miniprogram/uploader/uploader",
"mp-cells": "weui-miniprogram/cells/cells",
"mp-cell": "weui-miniprogram/cell/cell"
}
} }

33
pages/suggestion/suggestion.wxml

@ -1,2 +1,33 @@
<!--pages/suggestion/suggestion.wxml--> <!--pages/suggestion/suggestion.wxml-->
<text>pages/suggestion/suggestion.wxml</text> <view class="pages">
<mp-navigation-bar ext-class="set-bar" title="意见反馈"></mp-navigation-bar>
<view class="main">
<view class="info">
<view class="info-item item-bord">
<text class="lable">您的姓名</text>
<input type="text" />
</view>
<view class="info-item">
<text class="lable">您的联系方式</text>
<input type="text" />
</view>
</view>
<view class="msg">
<text class="lable">您的建议</text>
<textarea id="message" maxlength="{{200}}">
<text class="talk">不超过200字</text>
</textarea>
</view>
<view class="up-box">
<mp-uploader bindfail="uploadError" bindsuccess="uploadSuccess" select="{{selectFile}}" upload="{{uplaodFile}}"
files="{{files}}" max-count="5" title="上传附件" tips="(上传相关图片)">
</mp-uploader>
</view>
<view class="btn">
<button>提交</button>
</view>
</view>
</view>

80
pages/suggestion/suggestion.wxss

@ -1 +1,79 @@
/* pages/suggestion/suggestion.wxss */ /* pages/suggestion/suggestion.wxss */
.info {
background-color: #fff;
padding: 0 30rpx;
margin-top: 10rpx;
}
.info-item {
height: 120rpx;
display: flex;
align-items: center;
}
.info-item input {
flex: 1;
margin-left: 20rpx;
font-size: 30rpx;
}
.lable {
font-size: 30rpx;
font-weight: bold;
color: #262936;
}
.item-bord {
border-bottom: 2rpx solid #e3e3e3;
}
.msg {
margin-top: 20rpx;
background-color: #fff;
padding: 20rpx 30rpx;
}
#message {
font-size: 30rpx;
width: 100%;
height: 200rpx;
}
.talk {
position: absolute;
bottom: 0;
right: 0;
color: #838b99;
font-size: 24rpx;
}
.up-box {
background-color: #fff;
padding: 30rpx;
min-height: 316rpx;
margin-top: 20rpx;
}
.weui-uploader__title {
font-size: 30rpx;
font-weight: bold;
color: #262936;
}
.btn {
width: 100%;
display: flex;
justify-content: center;
}
.btn>button {
margin-top: 134rpx;
min-width: 514rpx;
height: 85rpx;
background: linear-gradient(171deg, #3d7dfc 0%, #0e63df 100%);
border-radius: 43rpx;
font-size: 32rpx;
font-weight: bold;
color: #fff;
}

6
project.private.config.json

@ -77,6 +77,12 @@
"pathName": "pages/feasibility-study/feasibility-study", "pathName": "pages/feasibility-study/feasibility-study",
"query": "", "query": "",
"scene": null "scene": null
},
{
"name": "建议反馈",
"pathName": "pages/suggestion/suggestion",
"query": "",
"scene": null
} }
] ]
} }

Loading…
Cancel
Save