Vue学习1
1
小心
:active-value="1" :inactive-value="0" 要加冒号,让它不要是字符串
下拉列表
其中 statusOptions 相等于queryParams.runStatus
{{ getCategory(scope.row.category) }}
弹出确认提示
this.$confirm('是否确认导出所有所选数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function () {
return exportKjobtimeVo(queryParams);
}).then(response => {
this.download(response.msg);
}).catch(function () {
});
}