今天做项目遇到点击element的多选框,通过change事件发现v-model的值变化了,但是页面上没有勾选上 <el-checkbox v-model="mData.isCheck" @change="changeCheck($event,mData)"></el-checkbox> 原因:手动 ...
分类:
其他好文 时间:
2021-05-24 15:09:57
阅读次数:
0
题目链接:D. Cut 思路:首先进行双指针求nxt数组,该nxt数组定义是在该点最远能到达的点,求法是利用双指针,如果发现一个数的质因子在前面出现过,那就说明第一个指针已经得到了他的nxt数组答案。求完nxt数组后,本来我的想法是将每一个下标所对应的能到达的位置,就是一条链写入vector,然后利 ...
分类:
其他好文 时间:
2021-05-24 14:34:30
阅读次数:
0
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:
其他好文 时间:
2021-05-24 14:03:04
阅读次数:
0
简介 使用感觉类似动态规划的思路进行计算 code class Solution { public: int maxProfit(vector<int>& prices) { int inf = 1e9; int minPrice = inf; int maxProfit = 0; for(auto ...
分类:
其他好文 时间:
2021-05-24 13:09:51
阅读次数:
0
在登录sys,输入密码后,出现如下错误: 解决: 将密码(口令)改为原密码加上 as sysdba 例如我的密码改为:change_on_install as sysdba ,就可以登陆进去了 原文:(5条消息) ORA-28009:connection as SYS should be as SY ...
分类:
数据库 时间:
2021-05-24 12:06:39
阅读次数:
0
优先队列用法详解 简介 运用c++STL,优先队列的实现:priority_queue 使用方法与其他STL类似(如vector,stack,queue 优点1:自动排序,时间复杂度log级别 优点2:已封装。使用方便 使用方法 top// 访问队头元素 empty// 队列是否为空 size// ...
分类:
其他好文 时间:
2021-05-24 11:54:02
阅读次数:
0
选词填空-填单词20题Directions: Complete each sentence using the words given below. Each word can be used only once. Change the form where necessary.fraught re ...
分类:
其他好文 时间:
2021-05-24 11:07:57
阅读次数:
0
首先需要引用alipayer js和css 页面使用的引用方式不同 <template> <div :id="playerId"style="width:100%; height:100%;"> </div></template> <script> export default { name: 'R ...
分类:
其他好文 时间:
2021-05-24 11:00:02
阅读次数:
0
1)Rect boundingRect(InputArray points) points:输入信息,可以为包含点的容器(vector)或是Mat。返回包覆输入信息的最小正矩形。 2)RotatedRect minAreaRect(InputArray points) points:输入信息,可以为 ...
分类:
其他好文 时间:
2021-05-24 10:22:26
阅读次数:
0
打开CMD的方式 开始+系统+命令提示符 Win键+R输入cmd打开控制台(推荐使用) 在任意的文件夹下面,按住shift键 +鼠标右键点击,在此处打开命令 资源管理器的地址栏前面加上cmd路径 常用的Dos命令 #盘符切换#查看当前目录下的所有文件#切换目录 cd (change director ...
分类:
其他好文 时间:
2021-05-24 09:36:58
阅读次数:
0