上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 结果全部为true 阅读全文
posted @ 2020-04-22 14:44 耿鑫 阅读(90) 评论(0) 推荐(0) 编辑
摘要: data() { return { form: { 省市: { 省编码: '', 省名称: '省', 市编码: '', 市名称: '市' }, 收款银行: '', 银行账号: '', 收款人姓名: '' }, reFresh: true } }, watch: { 'form.省市'() { con 阅读全文
posted @ 2020-04-16 17:45 耿鑫 阅读(834) 评论(0) 推荐(0) 编辑
摘要: axios中的qs 首先qs是一个npm仓库所管理的包,可通过npm install qs命令进行安装. 地址: https://www.npmjs.com/package/qs qs.parse()、qs.stringify() 1.qs.parse()将URL解析成对象的形式 const Qs 阅读全文
posted @ 2020-04-13 20:10 耿鑫 阅读(431) 评论(0) 推荐(0) 编辑
摘要: import './服务合同详情.less' // #region 服务合同详情 const 服务合同详情 = { props: { value: { default: () => { return {} } } }, data() { return { isShowchildDialog: fal 阅读全文
posted @ 2020-04-13 16:53 耿鑫 阅读(3556) 评论(0) 推荐(0) 编辑
摘要: function 摇色子(){ return new Promise((resolve,reject)=>{ let sino=parseInt(Math.random()*6+1) setTimeout(()=>{ resolve(sino) },3000) }) } async function 阅读全文
posted @ 2020-04-13 16:33 耿鑫 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 与App.vue同级目录建立router.js 内容为: import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) export default new VueRouter({ routes: [ { pa 阅读全文
posted @ 2020-04-13 16:31 耿鑫 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1.input中只能输入数字 0-9 <el-input v-model.trim="form.银行账号" placeholder="请输入" style="width: 200px;" @input="inputChange" ></el-input> inputChange() { this.f 阅读全文
posted @ 2020-04-13 16:29 耿鑫 阅读(9577) 评论(0) 推荐(0) 编辑
摘要: 1.官网安装@vue/cli 2.vscode中安装扩展ESLint,作用是把错误抛出 3.在package.json中写规则 "eslintConfig": { "root": true, "env": { "node": true }, "extends": [ "plugin:vue/esse 阅读全文
posted @ 2020-04-04 20:34 耿鑫 阅读(191) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-01-15 19:47 耿鑫 阅读(374) 评论(0) 推荐(0) 编辑
摘要: <form action="123.html"> <div style="width: 200px;height: 200px;background:#ccc;"> <input type="submit" value="提交"> <a href="http://www.baidu.com" tar 阅读全文
posted @ 2017-09-26 17:42 耿鑫 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页