#VIew

查询部门----返回给前台TreeView数据格式的数据

实体类:publicclassAddressTreeDto{privateLongid;privateStringtext;//位置名称privateLongpId;//上一级privateIntegerable;privateList<AddressTreeDto>nodes;publicLonggetI...

ASP.NET MVC 创建前台链接到View的标签和前台向后台传值

在同一大括号下,submit会把里面所有的控件的value以querystring形式传到后台。一个form下只能有一个submit<p>@Html.ActionLink("CreateNew","Create") //标签@using(Html.BeginForm("Index","Movies...

iOS-UIScrollView拉伸效果

解决办法: 比如登录界面是可以上下拉伸的(微信),在ScrollView里调用一下这个方法即可。 scrollView.alwaysBounceVertical=YES; ...
代码星球 ·2021-01-23

iOS-tableView会卡顿

 其实影响tableView卡顿的因素有很多,我也就其中一些常见的问题来说一下。 在tableView里的tableViewCell中使用许多图片的时候,而且我们大量使用的是 xxx.clipsToBounds=YES把图片变成圆角的时候,我们会发现滑动tableView会卡顿,很不顺畅。...
代码星球 ·2021-01-23

iOS-tableView本地动画刷新

  比如:就拿删除tableView中一个Cell为例子。//XXXTableViewCellDelegate-(void)tapDeleteHelloUser:(CJHelloTableViewCell*)cellHelloUser:(HelloUser*)helloUser{ //1得...

Centos6.10部署TeamViewer

1.在官网下载支持Linux系统的包,建议下载TeamViewer12的包,官网URL:https://www.teamviewer.com/cn/download/linux/2.将下载的软件包导入到任意路径下。3.导入秘钥:  shell>  wget https://downl...
代码星球 ·2021-01-23

移动端页面:viewport与分辨率的坑

<metaname="viewport"content="width=device-width,user-scalable=no"><metaname='viewport'content='initial-scale=1.0,user-scalable=no'>这两个效果一样,initial-s...

微信小程序 webview直接关闭所有回到小程序

   答案:首先要引入最新版的jweixin-1.3.2.js,然后  wx.miniProgram.navigateTo({url:'/pages/login/login'+'$params'})参考地址:https://github.com/yisainan/web...

iview table中按钮根据条件设置disabled

一、效果展示      说明:当表格中存在未退款状态的记录,退款按钮可用,当不存在未退款状态的记录,退款按钮不可用二、实现代码方法一:disabled后直接跟true或者false的条件{title:'支付方式',key:'paytype',//width:2...

iview button根据条件 disabled可用或者不可用

一、功能介绍:当数据为空时,按钮不可用,当数据不为空时,按钮可用。二、代码实现:<spanclass="expand-value"><Buttonsize="small":disabled="isdisabledFn"@click="admiss">查看照片</Button><...

iview日期选择器默认显示当前日期

一、代码:(1)控件1<spanclass="filterBlock">2售票时间:3<DatePickerv-model="saleDate"4format="yyyy/MM/dd"5type="daterange"6placement="bottom-end"7placeholder="请选择"8...

iview实现A输入框输入B输入框清空,B输入框输入A输入框清空

一、代码:(1)A输入框   1<spanclass="filterBlock">2证卡号码:3<Inputclass="filter"4v-model.lazy="cardNumber"5placeholder="请输入"6clearable/>7</span> (2)B...
代码星球 ·2021-01-16

iview下拉框内容查询的和表格对应的内容显示

一、代码:  <spanclass="filterBlock">证卡状态:<Selectv-model="selectedCardStatus"class="filter"><Optionv-for="itemincardStatus":value="item.val":key="item...

iview下拉框默认选中第一个option

一、v-model绑定  <spanclass="filterBlock">证卡状态:<Selectv-model="selectedCardStatus"class="filter"><Optionv-for="itemincardStatus":value="item.val":key...

asp.net 中Repeater和Gridview的区别

     Griview:       优点:1、GridView是从WebControl派生出来的,拥有WebControl样式属性,自身会被解析为table,其中的每一行会被解析为tr-td;&n...
首页上一页...2728293031...下一页尾页