提交 ffff818d32f658c489bc216fcac903eb622b338a

作者 wangyu
1 个父辈 e1ca6ae7

优化

... ... @@ -5,8 +5,10 @@
5 5 <view wx:for="{{additionlist}}" wx:key="" style='display:flex;flex-direction:column' wx:for-index="idx01">
6 6 <view style='margin:30rpx 44rpx;float:left;display:flex;flex-direction:column'>
7 7 <text class=' text_333_40 float_left'>{{item.legal_entity}}</text>
8   - <view wx:if="{{item.status=='to_declare'}}" class='view_godeclare_wrap' bindtap='godeclare' id='{{idx01}}' >
9   - <text class='text_godeclare_wrap '>立即申报</text>
  8 + <view wx:if="{{item.status=='to_declare'&&item.addition_items.length<1}}" class='view_godeclare_wrap' bindtap='godeclare' id='{{idx01}}' >
  9 + <!-- <text class='text_godeclare_wrap '> -->
  10 + 立即申报
  11 + <!-- </text> -->
10 12 </view>
11 13 </view>
12 14 <view wx:if="{{item.addition_items&&item.addition_items.length>0}}">
... ...
... ... @@ -95,11 +95,18 @@ line-height: 17px;
95 95
96 96 .view_godeclare_wrap {
97 97 float: left;
98   - width: 160rpx;
99 98 background: #fff;
100 99 border: 1px solid #357aeb;
101 100 border-radius: 15px;
102 101 margin-top: 20rpx;
  102 + width: 168rpx;
  103 +
  104 + font-family: PingFangSC-Regular;
  105 + font-size: 13px;
  106 + color: #357aeb;
  107 + text-align: center;
  108 + line-height: 13px;
  109 + padding: 10rpx 0rpx;
103 110 }
104 111
105 112 .text_godeclare_wrap {
... ...
... ... @@ -12,7 +12,7 @@ Page({
12 12 legal_entity_id: "",
13 13 legal_entity: "",
14 14 declareStatus: {
15   - "to_declare ": "待申报",
  15 + "to_declare": "待申报",
16 16 "declaring": "申报中",
17 17 "success": "审核成功",
18 18 "failed": "审核失败"
... ... @@ -146,8 +146,8 @@ Page({
146 146 // },
147 147
148 148 showdetail: function(e) {
149   - console.log("showdetail", JSON.stringify(this.data.additionInfo[e.currentTarget.id]))
150 149 if (this.data.additionInfo && this.data.additionInfo.length > 0) {
  150 + console.log("showdetail", JSON.stringify(this.data.additionInfo[e.currentTarget.id]))
151 151 wx.navigateTo({
152 152 url: '../additiondetail/additiondetail?datas=' +
153 153 JSON.stringify(this.data.additionInfo[e.currentTarget.id]) + "&status=" + this.data.cur_status,
... ...
... ... @@ -20,7 +20,7 @@
20 20 </view>
21 21 </scroll-view>
22 22 <view class='bottom_wrap'>
23   - <input class='input_wrap' confirm-type="send" bindinput="bindKeyInput"></input>
  23 + <input class='input_wrap' confirm-type="send" bindinput="bindKeyInput" placeholder='请输入您要咨询的问题'></input>
24 24 <view class='btn_send_wrap' bindtap='sendMsg'>发送</view>
25 25 </view>
26 26 </view>
... ...
注册登录 后发表评论