摘要: <van-search right-icon="" left-icon="" placeholder="输入关键字进行全局搜索" value="{{newsTitle}}" bind:search="onKeyworkSearch" bind:clear="onClear" bind:change= 阅读全文
posted @ 2021-11-25 16:10 祭·司 阅读(3716) 评论(0) 推荐(0) 编辑
摘要: <view class="topSearchBox"> <van-search id="suggestId" right-icon="" left-icon="" placeholder="请输入地址或地块名称查询" v-model="keyword" @search="onKeyworkSearc 阅读全文
posted @ 2021-11-24 09:31 祭·司 阅读(86) 评论(0) 推荐(0) 编辑
摘要: export function downloadFile(obj, name, suffix = "xlsx") { const url = window.URL.createObjectURL(new Blob([obj], {type: "application/vnd.ms-excel"})) 阅读全文
posted @ 2021-10-21 14:25 祭·司 阅读(989) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="HyperLink" prop="target" :rules="formInfo.type 1?formRule.target:[{ required: false}]"> <el-input class="form-input" v-model="for 阅读全文
posted @ 2021-09-15 16:33 祭·司 阅读(2438) 评论(0) 推荐(0) 编辑
摘要: 使用text <text>{{ form.content}}</text> 阅读全文
posted @ 2021-09-02 09:25 祭·司 阅读(275) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div class="container"> <el-form style="width:60%;" :model="form" status-icon :rules="rules" ref="form" label-width="100px" class="de 阅读全文
posted @ 2021-08-20 14:56 祭·司 阅读(844) 评论(0) 推荐(0) 编辑
摘要: hml: <van-datetime-picker show-toolbar type="date" v-model="wTime[i].beginTime" :min-date="minDate" :max-date="maxDate" @confirm="onWTimeConfirm($even 阅读全文
posted @ 2021-04-23 15:16 祭·司 阅读(2693) 评论(0) 推荐(0) 编辑
摘要: 1,vue中安装wangEditor 使用的npm安装 npm install wangeditor --save 2,创建公用组件 在components中创建wangEditor文件夹 组件内容为 <template lang="html"> <div class="editor"> <div 阅读全文
posted @ 2021-04-14 15:00 祭·司 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 在做图标展示时,一般使用fontawesome图标库,只用简单并且只需要下载并引入即可。npm install font-awesome --save 但是发现身边也有人使用阿里巴巴的incofont,下载选择svg文件引入,具体封装和配置方法如下示: 以下操作是参考了已有框架的代码进行整理 1、在 阅读全文
posted @ 2021-04-12 10:13 祭·司 阅读(2241) 评论(0) 推荐(0) 编辑
摘要: 一、div内显示一行,超出部分用省略号显示 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 二、div内显示N行,超出部分用省略号显示 overflow: hidden; text-overflow: ellipsis; 阅读全文
posted @ 2021-04-08 09:29 祭·司 阅读(933) 评论(0) 推荐(1) 编辑