摘要: <template> <el-dialog title="修改记录" :visible.sync="dialogVisible" width="30%" :before-close="handleClose"> <el-table :data="tableData" style="width: 10 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(40) 评论(0) 推荐(0)
摘要: <template> <el-dialog title="发布" :visible.sync="dialogVisible" width="40%" :before-close="handleClose"> <el-form label-width="80px"> <el-form-item lab 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(14) 评论(0) 推荐(0)
摘要: getAction("/task/" + id + "/release").then(res => { console.log(res, 8888) if (res.code == 404) { this.$message({ message: res.msg, type: 'error' }); 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(8) 评论(0) 推荐(0)
摘要: Js获取当前日期时间及其它操作 var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-????) myDate.getMonth(); //获取当前月份(0-11 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(14) 评论(0) 推荐(0)
摘要: 只保留整数部分(丢弃小数部分) parseInt(5.1234); // 5 向下取整(<= 该数值的最大整数,和parseInt()一样) Math.floor(5.1234); // 5 向上取整(有小数,整数部分就+1) Math.ceil(5.1234); // 6 四舍五入(小数部分) M 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(14) 评论(0) 推荐(0)
摘要: <template> <div class="table-list-page"> <div class="query-area"> <el-date-picker v-model="value1" type="daterange" range-separator="至" start-placehol 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: } this.$confirm('您确定删除吗?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(res=>{ this.loading=true deleteAction(path 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(13) 评论(0) 推荐(0)
摘要: }, confirmAssociation() { if(this.selected!="") { putAction(this.url.put + '/' + this.task_id + '/bound', {content_id: this.selected}).then(res => { t 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(11) 评论(0) 推荐(0)
摘要: putAction("/order/"+this.$parent.$parent.ListId+"/status",{ status:-1, remark: this.remark }).then(res=>{ this.$message({ message: '退回已提交', type: 'suc 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(5) 评论(0) 推荐(0)
摘要: return:{ data:{ account_id: '', BindData: [], RomoteData:[], dialogVisible: false, ff_account_index: '', form:{}, } }, 这种命名报错 阅读全文
posted @ 2022-09-16 22:44 前端导师歌谣 阅读(11) 评论(0) 推荐(0)