09 2021 档案
摘要:TimeMin是第一个下拉框, TimeMax是第二个下拉框通过ajax方法从后台取值填充。 $("#TimeMin").change(function () { var id = $(this).val(); $.post("/Call/GetDropDownList", { "id": id }
阅读全文
摘要:CSS 添加背景图片,图片靠右,距离右边10px .backgroundbg { background: url("/Content/images/icon2.png") no-repeat; background-position: right 10px center; }
阅读全文
摘要:Vue3.0 computed 获取值,computed返回一个ref 使用的时候,要.value const param = computed(()=>{ return { "username": formValue.name, "password": formValue.password } /
阅读全文
摘要:安装axios npm install axios -S main.js 配置 import axios from 'axios' //基础配置 axios.defaults.baseURL = "https://localhost:44324/"; const app = createApp(Ap
阅读全文