08 2020 档案

摘要:在css定义 @media only screen and (min-width: 320px){ html { font-size: 62.5% !important; } } @media only screen and (min-width: 640px){ html { font-size: 阅读全文
posted @ 2020-08-28 14:54 糖果小宝 阅读(536) 评论(0) 推荐(0)
摘要:<div id="app"> <div class="row no-gutters align-items-center mb-4"> <div class="col-10"> <input type="text" class="form-control"> </div> <div class="c 阅读全文
posted @ 2020-08-19 15:18 糖果小宝 阅读(655) 评论(0) 推荐(0)
摘要:$(function () { //实现全选反选 $("#chk_all_normal").on('click', function () { $("input[name='chk_list_normal']").prop("checked", $(this).prop('checked')); } 阅读全文
posted @ 2020-08-19 15:02 糖果小宝 阅读(596) 评论(0) 推荐(0)
摘要:<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2.9/lib/index.css" /> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></ 阅读全文
posted @ 2020-08-19 10:41 糖果小宝 阅读(10715) 评论(0) 推荐(0)
摘要:目前每个组件必须只有一个根元素,建议将模板中的全部内容包装在一个新元素内。vue.js官网中的解释如下图: 阅读全文
posted @ 2020-08-19 10:08 糖果小宝 阅读(660) 评论(0) 推荐(0)
摘要:@{ ViewData["Title"] = $"验收部位"; } <div class="row no-gutters align-items-center"> <div class="col-3">关键词查询:</div> <div class="col-6 search_box"><input 阅读全文
posted @ 2020-08-19 09:13 糖果小宝 阅读(717) 评论(0) 推荐(0)
摘要:小程序图片上传 // pages/order_service/order_service.js var api = require("../../utils/api.js"); const r = require("../../utils/api.js"); const app = getApp() 阅读全文
posted @ 2020-08-15 13:38 糖果小宝 阅读(846) 评论(0) 推荐(0)
摘要:前端代码: <div class="ext_tempfileupload" data-fileupload-for="Img"> <span class="btn btn-success"> <span class="glyphicon glyphicon-plus "></span> <span> 阅读全文
posted @ 2020-08-14 13:34 糖果小宝 阅读(429) 评论(0) 推荐(0)
摘要:public async Task<JsonResult> AjaxUploud(IFormCollection formCollection) { // return Json("成功"); if (HttpContext.Request.Form.Files.Count == 0) { thro 阅读全文
posted @ 2020-08-14 10:23 糖果小宝 阅读(368) 评论(0) 推荐(0)