Commit cb6df270 authored by zhangzedan's avatar zhangzedan

pages:result

parent 4e4bf5a1
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
"pages/farm/farm_single/farm_show", "pages/farm/farm_single/farm_show",
"pages/farm/crop/crop", "pages/farm/crop/crop",
"pages/farm/farm_base/farm_base", "pages/farm/farm_base/farm_base",
"pages/user/user_modify/user_modify" "pages/user/user_modify/user_modify",
"pages/report/result/result"
], ],
"window": { "window": {
"backgroundTextStyle": "light", "backgroundTextStyle": "light",
......
/* pages/component/datashow/datashow.wxss */
@import "../../public/public.wxss" @import "../../public/public.wxss"
.value{ .value{
color:grey; color:grey;
...@@ -50,14 +49,16 @@ check-group{ ...@@ -50,14 +49,16 @@ check-group{
margin: 5px; margin: 5px;
} }
.add_btn{ .add_btn{
width: 30px; width: 80%;
height: 30px; height: 30px;
line-height: 30px; line-height: 30px;
border: 1px solid #3cc51f; border: 1px solid rgb(200,255,180);
box-shadow: 5px 5px 10px rgb(200,255,180); /* box-shadow: 5px 5px 8px rgb(200,255,180); */
border-radius: 10px;
padding: 0; padding: 0;
background-color:rgb(255,255,255); background-color:rgb(255,255,255);
color: #3cc51f; color: #3cc51f;
font-size: 23px;
} }
.sub_btn{ .sub_btn{
position: absolute; position: absolute;
......
...@@ -12,7 +12,8 @@ ...@@ -12,7 +12,8 @@
<input class="weui-input {{registe?'value':''}}" data-field="{{info.field}}" bindinput="inputChange" type="{{tools.formType(info.field)}}" password="{{info.field=='password'}}" placeholder="请输入" /> <input class="weui-input {{registe?'value':''}}" data-field="{{info.field}}" bindinput="inputChange" type="{{tools.formType(info.field)}}" password="{{info.field=='password'}}" placeholder="请输入" />
</view> </view>
</view> </view>
<view class="weui-cell weui-cell_select" wx:if="{{info.show=='picker'}}"> <!-- picker样式 -->
<view class="weui-cell weui-cell_select" wx:if="{{info.show=='picker'||(info.show==='radio'&&tools.radioType(info.selects))}}">
<view class="weui-cell__hd weui-cell__hd_in-select-after"> <view class="weui-cell__hd weui-cell__hd_in-select-after">
<view class="weui-label {{registe?'field':''}}">{{info.label}}</view> <view class="weui-label {{registe?'field':''}}">{{info.label}}</view>
</view> </view>
...@@ -22,7 +23,7 @@ ...@@ -22,7 +23,7 @@
<view class="weui-select weui-select_in-select-after {{registe?'value':''}}">{{info.selects[0].value}}</view> <view class="weui-select weui-select_in-select-after {{registe?'value':''}}">{{info.selects[0].value}}</view>
</picker> </picker>
</block> </block>
<block wx:else="{{tools.formType(info.field)!='date'}}}}"> <block wx:else="{{tools.formType(info.field)!='date'}}}}">
<picker bindchange="bindCountryChange" range="{{info.selects}}" range-key="value"> <picker bindchange="bindCountryChange" range="{{info.selects}}" range-key="value">
<view class="weui-select weui-select_in-select-after {{registe?'value':''}}">{{info.selects[0].value}}</view> <view class="weui-select weui-select_in-select-after {{registe?'value':''}}">{{info.selects[0].value}}</view>
</picker> </picker>
...@@ -30,42 +31,43 @@ ...@@ -30,42 +31,43 @@
</view> </view>
</view> </view>
<!-- 单选以及多选样式 --> <!-- 单选以及多选样式 -->
<view class="page__bd"> <view class="form_item">
<view class="section section_gap"> <view class="form_item_bd" wx:if="{{info.show==='radio'&&!tools.radioType(info.selects)}}">
<view class="radio_text {{registe?'field':''}}">
{{info.label}}
</view>
<!-- 单选样式 --> <!-- 单选样式 -->
<radio-group class="radio-group" wx:if="{{item.show==='radio'}}" bindchange="radioChange" data-sub="{{item.sub}}" data-field="{{item.field}}" data-value="{{checkmul[item.field]}}"> <radio-group bindchange="radioChange" data-field="{{info.field}}" data-sub="{{info.sub}}"><!-- data-value="{{checkmul[info.field]}}" -->
<radio class="radio" wx:for-items="{{item.selects}}" wx:for-item="select" wx:key="{{select.id}}" value="{{select.id}}"> <radio wx:for-items="{{info.selects}}" wx:for-item="select" wx:key="{{select.id}}" value="{{select.id}}" class="{{info.selects.length>2?'radio':'radio_inline'}}">
<text wx:if="{{select.id>-1}}">{{select.value}}</text> <text wx:if="{{select.id>-1}}">{{select.value}}</text>
<!-- "其他请注明"的输入框 --> <!-- "其他请注明"的输入框 -->
<view class="weui-cells weui-cells_after-title" wx:if="{{select.id===-1}}"> <view class="weui-cells weui-cells_after-title" wx:else="{{select.id===-1}}">
<view class="weui-cell weui-cell_input"> <view class="weui-cell weui-cell_input">
<input class="weui-input" placeholder="{{select.value}}" bindinput="radioOther" data-field="{{item.field}}"/> <input class="weui-input" placeholder="{{select.value}}" bindinput="radioOther" data-field="{{info.field}}"/>
</view> </view>
</view> </view>
</radio> </radio>
</radio-group> </radio-group>
<!-- 多选样式 --> </view>
<checkbox-group class="checkbox-group" wx:if="{{item.show==='checkbox'}}" bindchange="checkboxChange" data-field="{{item.field}}" data-value="{{checkmul[item.field]}}" > <!-- 多选样式 -->
<view wx:for-items="{{item.selects}}" wx:for-item="select" wx:key="{{select.id}}"> <view class="form_item_bd" wx:if="{{info.show==='checkbox'}}">
<label class="checkbox"> <view class="radio_text {{registe?'field':''}}">
<checkbox value="{{select.id}}" /> {{info.label}}
<text wx:if="{{select.id>-1}}">{{select.value}}</text> </view>
<!-- "其他请注明"的输入框 --> <checkbox-group bindchange="checkboxChange" data-field="{{info.field}}" data-value="{{checkmul[info.field]}}" >
<view class="weui-cells weui-cells_after-title weui-checkbox-input" wx:if="{{select.id===-1}}"> <view wx:for-items="{{info.selects}}" wx:for-item="select" wx:key="{{select.id}}">
<view class="weui-cell weui-cell_input"> <label class="checkbox">
<input id="{{item.field}}" class="weui-input" placeholder="{{select.value}}" bindinput="checkOther" data-field="{{item.field}}"/> <checkbox value="{{select.id}}" />
</view> <text wx:if="{{select.id>-1}}">{{select.value}}</text>
</view> <!-- "其他请注明"的输入框 -->
</label> <view class="weui-cells weui-cells_after-title weui-checkbox-input" wx:if="{{select.id===-1}}">
<view class="weui-cell weui-cell_input">
</view> <input class="weui-input" placeholder="{{select.value}}" bindinput="checkOther" data-field="{{info.field}}"/>
</checkbox-group> </view>
<!-- 定位地址 --> </view>
<view wx:if="{{item.show==='location'}}" > </label>
<button type="default" data-field="{{item.field}}" bindtap="getLoc">设置地理位置</button> </view>
<text wx:if="{{fieldData[item.field]}}">您的位置是 {{fieldData[item.field].address}}</text> </checkbox-group>
</view>
<data-sub></data-sub>
</view> </view>
</view> </view>
</view> </view>
......
/* pages/component/subdata/subdata.wxss */ /* pages/component/subdata/subdata.wxss */
@import "../../public/public.wxss" @import "../../public/public.wxss"
\ No newline at end of file .value{
color:grey;
font-size:28rpx;
}
.field{
font-size:30rpx;
}
radio-group,
check-group{
position: flex;
align-items:center;
}
.radio_inline{
width: 50%;
text-align: center;
}
.form_item{
display: flex;
flex-direction: column;
}
.form_item_bd{
padding:10px 15px;
position: relative;
}
.form_item_bd .field{
padding: 5rpx;
}
.radio_text{
/* margin-left: 10px; */
margin-bottom: 8px;
}
.report-section{
box-shadow: 0 0 10px rgb(200,255,180);
margin: 5px 10px;
}
/* .page-section_data{
padding-top: 3px;
padding-bottom: 3px;
line-height: none;
position: static;
border-bottom: 1px solid rgb(240,240,230);
} */
.btn_view{
display: flex;
height: 30px;
margin: 5px;
}
.add_btn{
width: 30px;
height: 30px;
line-height: 30px;
border: 1px solid #3cc51f;
box-shadow: 5px 5px 10px rgb(200,255,180);
padding: 0;
background-color:rgb(255,255,255);
color: #3cc51f;
}
.sub_btn{
position: absolute;
z-index: 10;
background-color: rgba(255,116,116,1);
width: 20px;
height: 20px;
line-height: 20px;
padding: 0;
margin-top: -8px;
right: 5px;
color: white;
border-radius: 10px;
font-size: 13px;
}
\ No newline at end of file
...@@ -75,6 +75,157 @@ const cropName=[ ...@@ -75,6 +75,157 @@ const cropName=[
{ value: "其他油料作物", id: 15}, { value: "其他油料作物", id: 15},
{ value: "其他作物", id: 16} { value: "其他作物", id: 16}
] ]
// 生态农业措施
const cologiMeasures=[
{ value: "间套作", id: 0},
{ value: "轮作", id: 1},
{ value: "豆科作物", id: 2},
{ value: "覆盖物", id: 3},
{ value: "林带/篱笆/花带", id: 4},
{ value: "等高种植(梯田)", id: 5},
{ value: "秸秆还田/过腹还田", id: 6},
{ value: "有机肥/堆肥/畜禽粪便", id: 7},
{ value: "绿肥", id: 8},
{ value: "沼液或沼渣", id: 9},
{ value: "抗病抗虫品种", id: 10},
{ value: "耕翻晒垡", id: 11},
{ value: "清洁田园", id: 12},
{ value: "释放天敌", id: 13},
{ value: "黄板/蓝板等", id: 14},
{ value: "防虫网", id: 15},
{ value: "杀虫灯", id: 16},
{ value: "人工/机械捕虫", id: 17},
{ value: "人工/机械除草", id: 18},
{ value: "其他请注明", id: -1}
]
// 自然植被(非作物)
const naturePlant=[
{ value: "林带", id: 0},
{ value: "篱笆", id: 1},
{ value: "花带", id: 2},
{ value: "植物覆盖", id: 3},
{ value: "沟渠", id: 4},
{ value: "田头绿化", id: 5},
{ value: "其他请注明", id: -1}
]
// 有机肥种类
const organicType=[
{ value: "堆沤肥(农家肥)", id: 0},
{ value: "微生物肥", id: 1},
{ value: "矿物质肥", id: 2},
{ value: "氨基酸类肥料", id: 3},
{ value: "甲壳素类肥料", id: 4},
{ value: "土壤调理剂类", id: 5},
{ value: "其他请注明", id: -1}
]
// 灌溉措施
const irrigation=[
{ value: "滴灌", id: 0},
{ value: "喷灌", id: 1},
{ value: "渗灌", id: 2},
{ value: "管灌", id: 3},
{ value: "漫灌", id: 4},
{ value: "其他请注明", id: -1}
]
// 产品检测
const detectionProject=[
{ value: "营养成分", id: 0},
{ value: "农药残留", id: 1},
{ value: "重金属", id: 2},
{ value: "其他请注明", id: -1}
]
// 劳动力类型
const workerType=[
{ value: "种植", id: 0},
{ value: "其他", id: 1}
]
// 销售渠道
const saleChannel=[
{ value: "农场餐厅", id: 0},
{ value: "出口", id: 1},
{ value: "超市", id: 2},
{ value: "收购商", id: 3},
{ value: "农场实体店销售", id: 4},
{ value: "农场网络销售", id: 5},
{ value: "其他请注明", id: -1}
]
// 产品类型
const productType=[
{ value: "有机产品", id: 0},
{ value: "绿色产品", id: 1},
{ value: "无公害产品", id: 2},
{ value: "常规产品", id: 3}
]
// 生态农业带来的好处
const benefit=[
{ value: "产品价格更高", id: 0},
{ value: "稳定的农业收入", id: 1},
{ value: "身体更健康", id: 2},
{ value: "避免接触化学品", id: 3},
{ value: "对环境有好处", id: 4},
{ value: "作物产量更高", id: 5},
{ value: "更高的可支配收入", id: 6},
{ value: "改善土壤肥力", id: 7},
{ value: "降低投入成本", id: 8},
{ value: "其他请指出", id: -1}
]
// 生态农业的风险和挑战
const challenge=[
{ value: "有机肥不足", id: 0},
{ value: "病虫草害控制不力", id: 1},
{ value: "品种不好或质量差", id: 2},
{ value: "缺少劳力", id: 3},
{ value: "产量降低", id: 4},
{ value: "增加生产成本", id: 5},
{ value: "没有实现优质优价", id: 6},
{ value: "没有买主和市场", id: 7},
{ value: "缺乏资金投入", id: 8},
{ value: "缺少技术指导和培训", id: 9},
{ value: "其他请说明", id: -1}
]
// 生态农业的不同
const different=[
{ value: "环境条件要求", id: 0},
{ value: "产品种类", id: 1},
{ value: "销售渠道", id: 2},
{ value: "产品价格", id: 3},
{ value: "对环境的影响", id: 4},
{ value: "生产技术", id: 5},
{ value: "生产投入", id: 6},
{ value: "农场收益", id: 7},
{ value: "农场产业链", id: 8},
{ value: "农场周围劳动力就业", id: 9}
]
// 资金来源
const fundSource=[
{ value: "政府", id: 0},
{ value: "行业协会", id: 1},
{ value: "其他请表明", id: -1}
]
// 补贴形式
const subsidyType=[
{ value: "物质", id: 0},
{ value: "培训", id: 1},
{ value: "资金", id: 2},
{ value: "其他请表明", id: -1}
]
// 补贴项目
const subsidyProject=[
{ value: "已经获得的补贴", id: 0},
{ value: "希望获得的补贴", id: 1}
]
// const // const
module.exports = { module.exports = {
sex: sex, sex: sex,
...@@ -85,5 +236,19 @@ module.exports = { ...@@ -85,5 +236,19 @@ module.exports = {
businessmodel:businessmodel, businessmodel:businessmodel,
whether:whether, whether:whether,
investsource:investsource, investsource:investsource,
cropName:cropName cropName:cropName,
cologiMeasures:cologiMeasures,
naturePlant:naturePlant,
organicType:organicType,
irrigation:irrigation,
detectionProject:detectionProject,
workerType:workerType,
productType:productType,
saleChannel:saleChannel,
benefit:benefit,
challenge:challenge,
different:different,
fundSource:fundSource,
subsidyType:subsidyType,
subsidyProject:subsidyProject
} }
\ No newline at end of file
This diff is collapsed.
{ {
"usingComponents": { "usingComponents": {
"data-show": "../component/datashow/datashow" "report-show": "../component/report_show/report_show"
} }
} }
\ No newline at end of file
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<text>注册个人信息</text> <text>注册个人信息</text>
</view> </view>
<view class="show"> <view class="show">
<data-show id="baseinfo" registe="true" items="{{reportinfo.baseinfo}}"></data-show> <report-show id="baseinfo" registe="true" items="{{reportinfo.baseinfo}}"></report-show>
</view> </view>
<button class="weui-btn btn" type="primary" plain="true" bindtap="commitUserinfo">提交</button> <button class="weui-btn btn" type="primary" plain="true" bindtap="commitUserinfo">提交</button>
</view> </view>
......
{ {
"navigationBarTitleText": "新增农场", "navigationBarTitleText": "新增农场",
"usingComponents": { "usingComponents": {
"data-show": "../component/datashow/datashow" "report-show": "../component/report_show/report_show"
} }
} }
\ No newline at end of file
<!--pages/report/baseinfo.wxml--> <!--pages/report/baseinfo.wxml-->
<view class="page"> <view class="page">
<view class="page__bd page__bd_spacing" style="padding-bottom: 5px;"> <view class="page__bd page__bd_spacing" style="padding-bottom: 5px;">
<data-show id="farmbase" items="{{reportinfo.farmbase}}"></data-show> <report-show id="farmbase" items="{{reportinfo.farmbase}}"></report-show>
<data-show id="farmmanager" items="{{reportinfo.farmmanager}}"></data-show> <report-show id="farmmanager" items="{{reportinfo.farmmanager}}"></report-show>
<data-show id="farmcredent" items="{{reportinfo.farmcredent}}"></data-show> <report-show id="farmcredent" items="{{reportinfo.farmcredent}}"></report-show>
<button type="primary" bindtap="commitInfo">新增农场信息</button> <button type="primary" bindtap="commitInfo">新增农场信息</button>
</view> </view>
</view> </view>
......
...@@ -17,9 +17,16 @@ Page({ ...@@ -17,9 +17,16 @@ Page({
onLoad: function (options) { onLoad: function (options) {
console.log(datafileds.plantFarm.model2); console.log(datafileds.plantFarm.model2);
this.setData({ this.setData({
reportinfo:datafileds.plantFarm.model2 module2:datafileds.plantFarm.model2,
module3:datafileds.plantFarm.model3,
module4:datafileds.plantFarm.model4
})
// console.log(this.data.reportinfo.cropplant);
},
commitInfo:function(){
wx.navigateTo({
url:"../result/result"
}) })
console.log(this.data.reportinfo.cropplant);
}, },
/** /**
......
{ {
"navigationBarTitleText": "体检信息", "navigationBarTitleText": "体检信息",
"usingComponents": { "usingComponents": {
"data-show": "../../component/datashow/datashow" "report-show": "../../component/report_show/report_show"
} }
} }
\ No newline at end of file
<!--pages/report/examine/examine.wxml--> <!--pages/report/examine/examine.wxml-->
<button type="primary" bindtap="commitInfo">获取体检报告</button> <button type="primary" bindtap="commitInfo">获取体检报告</button>
<data-show id="cropplant" items="{{reportinfo.cropplant}}"></data-show> <report-show id="cropplant" items="{{module2.cropplant}}"></report-show>
<!-- <data-show id="farmbase" items="{{reportinfo.farmbase}}"></data-show> <report-show id="cologiMeasures" items="{{module2.cologiMeasures}}"></report-show>
<data-show id="farmmanager" items="{{reportinfo.farmmanager}}"></data-show> <report-show id="natureRatio" items="{{module2.natureRatio}}"></report-show>
<data-show id="farmcredent" items="{{reportinfo.farmcredent}}"></data-show> --> <report-show id="materialInvest" items="{{module2.materialInvest}}"></report-show>
<report-show id="waste" items="{{module2.waste}}"></report-show>
<report-show id="irrigation" items="{{module2.irrigation}}"></report-show>
<report-show id="detection" items="{{module2.detection}}"></report-show>
<report-show id="general" items="{{module3.general}}"></report-show>
<report-show id="investDetail" items="{{module3.investDetail}}"></report-show>
<report-show id="workerDetail" items="{{module3.workerDetail}}"></report-show>
<report-show id="primaryProductDetail" items="{{module3.primaryProductDetail}}"></report-show>
<report-show id="processedProductDetail" items="{{module3.processedProductDetail}}"></report-show>
<report-show id="benefit" items="{{module4.benefit}}"></report-show>
<report-show id="challenge" items="{{module4.challenge}}"></report-show>
<report-show id="different" items="{{module4.different}}"></report-show>
<report-show id="subsidy" items="{{module4.subsidy}}"></report-show>
// pages/report/result/result.js
const app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
resNum:88,
suggest:["提高有机肥替代氮肥比例,合理堆肥","提高农场种植作物废弃物利用率,废弃物作堆肥使用",
"合理完善产品的追溯体系,定期检查","申请绿色产品认证"],
animationData: {},
detailed:false
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
// this.setData({
// resNum:options.resNum
// })
},
showDetail:function (e) {
/* body... */
let detailed=this.data.detailed
this.setData({
detailed:!detailed
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
// // 使用 wx.createContext 获取绘图上下文 context
// const context = wx.createCanvasContext('canvas')
// let x=(wx.getSystemInfoSync().windowWidth)/2
// let y=(wx.getSystemInfoSync().windowWidth)/3
// let r=6
// let h=20
// // 水滴
// context.beginPath()
// context.moveTo(x-r,y+h)
// context.lineTo(x,y)
// context.lineTo(x+r,y+h)
// context.arc(x, y+h, r, 0, 1 * Math.PI)
// context.setStrokeStyle('white')
// context.setLineWidth(0)
// var grd=context.createLinearGradient(x,y,x+h+r,y+h+r);
// grd.addColorStop(0.0,"white");
// grd.addColorStop(1.0,"#00ff00");
// context.setFillStyle(grd);
// context.fill()
// context.stroke()
// context.closePath()
// // 图片
// context.beginPath()
// context.drawImage("../../public/image/hehu.png",x-30,y+h+r,60,60)
// context.draw()
// context.closePath()
// // context.drawImage("../../public/image/hehu.png",x-r-30,y+h+r,50,50)
// // context.draw()
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
\ No newline at end of file
{
"navigationBarTitleText": "体检报告",
"usingComponents": {}
}
\ No newline at end of file
<!-- pages/report/result/result.wxml -->
<view class="top">您的生态农场评分</view>
<view>
<view class="resShow">
<view class="resNumber">{{resNum}}</view>
<image src="../../public/image/hehu.png"></image>
</view>
<view class="resBc">
</view>
</view>
<view class="bd">
<view class="suggest_top">农场改进建议</view>
<block wx:for-items="{{suggest}}" wx:for-item="su" wx:for-index="idx" wx:key="{{idx}}">
<view class="suggest">
{{idx+1}}.{{su}}
</view>
</block>
</view>
<view class="showBtn" bindtap="showDetail">
<block wx:if="{{!detailed}}">
<image src="../../public/image/bottom.png"></image>
<block>展示详细报告</block>
<image src="../../public/image/bottom.png"></image>
</block>
<block wx:if="{{detailed}}">
<image src="../../public/image/top.png"></image>
<block>收起详细报告</block>
<image src="../../public/image/top.png"></image>
</block>
</view>
<view wx:if="{{detailed}}">
展示详情
</view>
<!-- <view
animation="{{animationData}}"
style="background:red;height:100rpx;width:100rpx"
></view>
\ No newline at end of file
/* pages/report/result/result.wxss */
.top{
width: 100%;
text-align: center;
font-size: 20px;
margin: 10px;
color: grey;
/* text-shadow: 0 0 3px #00ec59; */
}
.top:before{
content: "||";
color: #00ec59;
margin-right: 5px;
}
.top:after{
content: "||";
color: #00ec59;
margin-left: 5px;
}
.resShow{
width: 80%;
margin-left: 10%;
margin-right: 10%;
padding-top: 10%;
padding-bottom: 10%;
display: flex;
flex-direction: column;
align-items: center;
}
.resBc{
position: absolute;
z-index: -1;
background-color: #00ff99;
width: 200px;
height: 200px;
border-radius: 100px;
top: 60px;
left: 50%;
margin-left: -100px;
}
.resNumber{
font-size: 50px;
color: white;
text-shadow: 0 0 10px #e3e3e3;
}
.resShow image{
position: relative;
top: 8%;
width: 80px;
height: 80px;
opacity: 0.3;
}
.bd{
margin: 5px;
box-shadow: 0 0 5px #c6c6c6;
padding: 5px;
}
.suggest_top{
width: 100%;
/* text-align: center; */
font-size: 20px;
margin-left: 10px;
color: grey;
/* padding-top: 10px; */
}
.suggest_top:before{
content: "||";
color: #00ec59;
margin-right: 5px;
}
.suggest{
font-size: 18px;
margin: 5px;
margin-left: 15px;
/* line-height: 17px; */
}
.showBtn{
width: 100%;
text-align: center;
color: grey;
}
.showBtn image{
width: 10px;
height: 10px;
margin-left: 7px;
margin-right: 7px;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment