mui

vue点击切换颜色限制个数(用了mui框架)

若如初见. 提交于 2019-11-29 02:17:08
vue点击切换颜色 只能点击一个 <!doctype html> <head> <meta charset="UTF-8"> <title>修改资料--类别</title> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <link href="../../css/mui.min.css" rel="stylesheet" /> <link rel="stylesheet" href="../../css/modify-categroy.css" /> </head> <body> <div id="categroy" v-cloak> <header class="mui-bar mui-bar-nav"> <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a> <h1 class="mui-title">类别</h1> <span class="mui-save mui-pull-right">保存</span> </header> <div class="mui-content"> <div

How can I modify the text in the MUI_WELCOME_PAGE when using MUI2 for NSIS?

て烟熏妆下的殇ゞ 提交于 2019-11-29 01:34:58
I want to add a label displaying the full version-string in the welcome screen in the installer I am creating using NSIS with MUI2. I have searched for info on how to do this, but only found references to using MUI_INSTALLOPTIONS* which I found ws deprecated for MUI2. Another one referred to the newer versions using INSTALLOPTIONS* with the same options, but I could not get it working. I finally also found a reference to using nsDialogs for this - which is what I am using for my custom pages. However - I found no reference or samples on how to change any of the existing pages that comes with

驰骋工作流引擎-CCMobile与安卓、IOS集成过程中的问题与解决方案

天涯浪子 提交于 2019-11-28 17:36:55
CCMobile与安卓、IOS集成过程中的问题与解决方案 前言: CCMobile(2019版本)是CCFlow&JFlow 的一款移动端审批的产品。系统基于mui框架开发,是一款可以兼容Android与IOS的移动端工作流审批系统。由于CCMobile仅仅局限于移动端的流程审批,所以在其他办公功能方面很少,这时可能就需要在源码上开发或者与其他APP进行集成。 由于Mui是一款h5的框架,并不是原生的,所以在与原生APP集成时,会出现一些问题,主要集中在附件上传下载、屏幕兼容等。本文章,将具体描述与其他APP进行集成时出现的问题以及解决方法。 与IOS进行集成 1.主要问题汇总 与IOS进行集成时,主要有3个问题,即:返回(关闭)、全面屏与刘海屏样式兼容、附件上传与下载。 2.返回(关闭) IOS操作系统不同于Android,不像Android具有back键。Android点击back键时,可以顺序返回,直到返回首页。IOS则没有,如果从原生跳转到CCMobile,IOS是不可能在CCMobile中返回到APP首页的,只能结束APP,重新打开。所以,我们在CCMobile的首页中,添加返回(关闭)按钮,点击后,可以关闭CCMobile,直接返回到APP指定的页面。 在CCMobile中,我们约定了一个返回(关闭)的调用方法,通过调用IOS原生方法,实现关闭(返回),调用代码如下:

mui点击蒙版点击蒙版让其不自动关闭

有些话、适合烂在心里 提交于 2019-11-28 17:36:12
var mask = mui.createMask(callback);//callback为用户点击蒙版时自动执行的回调; mask.show();//显示遮罩 mask.close();//关闭遮罩 我们可以在回调函数里return false就能阻止蒙版自动关闭 var mask = mui.createMask(function (){ if(vm.searchStatus){ vm.searchStatus = !vm.searchStatus return false }else{ vm.maskStatus = !vm.maskStatus } }) 来源: https://www.cnblogs.com/wangxi01/p/11416614.html

Customizing an exsisting NSIS MUI2 page

时光毁灭记忆、已成空白 提交于 2019-11-28 10:47:22
问题 I have added a checkbox successfully to nsis installer's finish page defining functions for MUI_PAGE_CUSTOMFUNCTION_PRE and MUI_PAGE_CUSTOMFUNCTION_SHOW in finish page using MUI . But if I include MUI2 instead of MUI , the check box is not displayed. I suppose there is something different in MUI2 than MUI with respect to this. I could not find documentation on that an if anyone knows that, can I please know??? Thank you 回答1: MUI1 uses InstallOptions for the Welcome and Finish pages and MUI2

mui mui-table-view顶部和底部的边框去掉方法

a 夏天 提交于 2019-11-28 07:45:43
<link href="css/mui.min.css" rel="stylesheet"/><link href="mystyle.css" rel="stylesheet"/> 注意顺序.mui-table-view:after{ height:0}.mui-table-view:before{ height:0}浏览器读取CSS是从上到下,这样MUI CSS库设置的被后面自定义CSS覆盖,所以注意顺序,输入以上代码即可实现去掉上边框和去掉下边框效果样式 来源: https://www.cnblogs.com/webzzc/p/11399846.html

mui的上拉加载下拉刷新的实现

折月煮酒 提交于 2019-11-28 03:50:25
---- 效果图 ---- 用的是mui框架。(我自己不会,朋友教我的。这篇可能不是很好,希望能对你有所帮助。) <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> <link rel="stylesheet" type="text/css" href="WEIXIN/css/mui.css"/> <link rel="stylesheet" type="text/css" href="WEIXIN/css/weui.min.css"/> <title>我的报修工单</title> </head> <body> <script src="ByFrame/js/jquery.min.js?v=2.1.4"></script> <!-- ############ 分割线 ############# --> <!--BEGIN toast--> <div id="toast" style="display: none;"> <div class="weui-mask_transparent"></div> <div class="weui-toast"> <i

How can I modify the text in the MUI_WELCOME_PAGE when using MUI2 for NSIS?

帅比萌擦擦* 提交于 2019-11-27 16:01:55
问题 I want to add a label displaying the full version-string in the welcome screen in the installer I am creating using NSIS with MUI2. I have searched for info on how to do this, but only found references to using MUI_INSTALLOPTIONS* which I found ws deprecated for MUI2. Another one referred to the newer versions using INSTALLOPTIONS* with the same options, but I could not get it working. I finally also found a reference to using nsDialogs for this - which is what I am using for my custom pages.

mui下拉面板布局 (mui-content,mui-card,mui-table-view,mui-navigate-right)

那年仲夏 提交于 2019-11-27 03:33:17
mui-table-view>mui-table-view-cell一般使用在ul>li嵌套关系,并且会在li下生成下划线 < ! -- 一般列表使用mui - table - view > mui - table - view - cell嵌套关系 -- > < ul class = "mui-table-view" > < li class = "mui-table-view-cell" > < a class = "mui-navigate-right" > Item 1 < / a > < / li > < li class = "mui-table-view-cell" > < a class = "mui-navigate-right" > Item 2 < / a > < / li > < li class = "mui-table-view-cell" > < a class = "mui-navigate-right" > Item 3 < / a > < / li > < / ul > < div class = "mui-content" > < ! -- mui - content 除顶部 底部内容外建议其他部分使用mui - content包裹 会在上下预留空位 -- > < div class = "mui-card" > < ! -- mui -

MUI 移动端选择器

拜拜、爱过 提交于 2019-11-26 16:54:57
第一步:初始化PopPicker组件对象 var sexx = new mui.PopPicker(); 第二步:给对象设置数据集 sexx.setData([{value:'1',text:'男'},{value:'2',text:'女'}]); 第三步:显示PopPicker对象 sexx.show(function(){}) 完整版代码 引用相关 css 和 js <link rel="stylesheet" href="/mobile/libs/mui/css/mui.picker.css"> <link rel="stylesheet" href="/mobile/libs/mui/css/mui.poppicker.css"> <script src="/mobile/libs/mui/js/mui.js"></script> <script src="/mobile/libs/mui/js/mui.picker.min.js"></script> $(document).on('click','[data-role="sex"]',function(){ var sexx = new mui.PopPicker(); sexx.setData([{value:'1',text:'男'},{value:'2',text:'女'}]); if (sex == 1) {