#
whycq
2023-11-21 662445047bd24967041b74cd6be53b7493ff312d
pages/business/plan/planDetails.vue
@@ -70,6 +70,11 @@
            </uni-popup-dialog>
         </uni-popup>
      </view>
      <view class="foot">
         <button  size="mini" type="primary" @click="edite(id)">修改</button>
         <button  size="mini" type="warn" @click="del(id)">删除</button>
      </view>
   </view>
</template>
@@ -146,7 +151,6 @@
               method: 'GET',
               success(res) {
                  res = res.data
                  console.log(res);
                  that.detl = res.data
                  that.active = res.data.settle
                  that.list1 = JSON.parse(res.data.settleMsg)
@@ -320,7 +324,13 @@
                  that.getFollowers()
               }
            })
         }
         },
         edite(id) {
            let _this = this
            uni.navigateTo({
               url: '/pages/business/plan/modiPlan?id=' + id
            })
         },
      }
   }
</script>