Commit 05333146 by crushh

fix: 列表

parent 6061dbdf
......@@ -209,6 +209,13 @@ export default {
*/
delMembers() {
let that = this;
if (!that.selectedList.length) {
that.$message({
message: '请选择员工',
type: 'warning'
});
return false;
}
that
.$confirm('是否要删除选中的员工?', '提示', {
type: 'warning'
......@@ -219,14 +226,6 @@ export default {
that.selectedList.forEach(li => {
arr.push(li.employeeClerkId);
});
if (!arr.length) {
that.$message({
message: '请选择员工',
type: 'warning'
});
that.loading = false;
return false;
}
let params = {
ids: arr.join(',')
};
......
......@@ -632,7 +632,6 @@ export default {
* 获取卡券列表
*/
getCardList(brandId) {
console.log(brandId);
const that = this;
let para = {
brandId: brandId,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment