From 326a5834be885eed60befa5aec497727dcd5884d Mon Sep 17 00:00:00 2001
From: cun-nan <19819293608@163.com>
Date: Thu, 12 Oct 2023 15:49:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=91=98=E5=B7=A5=E7=AE=A1=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
fuintAdmin/src/api/staff/duty.js | 8 +
fuintAdmin/src/views/staff/list.vue | 213 +++++++-----
fuintAdmin/src/views/staff/model/addStaff.vue | 324 ------------------
.../member/controller/LjDutyController.java | 17 +
.../fuint/business/member/entity/LJStaff.java | 3 +
.../member/mapper/xml/LJStaffMapper.xml | 15 +-
.../member/service/ILJDutyService.java | 7 +
.../service/impl/LJDutyServiceImpl.java | 14 +
.../service/impl/LJStaffServiceImpl.java | 10 +-
.../controller/BackendAccountController.java | 4 +-
.../com/fuint/repository/model/TAccount.java | 2 +-
11 files changed, 190 insertions(+), 427 deletions(-)
delete mode 100644 fuintAdmin/src/views/staff/model/addStaff.vue
diff --git a/fuintAdmin/src/api/staff/duty.js b/fuintAdmin/src/api/staff/duty.js
index 4f8fba4b2..8e5eb3e0d 100644
--- a/fuintAdmin/src/api/staff/duty.js
+++ b/fuintAdmin/src/api/staff/duty.js
@@ -8,3 +8,11 @@ export function listDuty(query) {
params: query
})
}
+
+// 查询角色详细
+export function getDuty(id) {
+ return request({
+ url: '/business/member/duty/' + id,
+ method: 'get'
+ })
+}
diff --git a/fuintAdmin/src/views/staff/list.vue b/fuintAdmin/src/views/staff/list.vue
index 62173cf11..6d064a413 100644
--- a/fuintAdmin/src/views/staff/list.vue
+++ b/fuintAdmin/src/views/staff/list.vue
@@ -2,16 +2,16 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
搜索
- 重置
+
@@ -66,14 +70,10 @@
-
-
-
+
-
-
-
+
@@ -152,21 +152,21 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -182,10 +182,10 @@
@@ -219,7 +219,7 @@
核销权限
-
+
特殊权限
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
@@ -463,12 +451,14 @@
import { getStaffList, getStaffInfo, updateStaffStatus, deleteStaff, saveStaff } from "@/api/staff";
import {getName} from "../../utils/fuint";
import {addStaff, delStaff, getStaff, listStaff, updateStaff} from "@/api/staff/staff";
-import {listDuty} from "@/api/staff/duty";
+import {getDuty, listDuty} from "@/api/staff/duty";
+import {listType} from "@/api/dict/type";
+import {listData} from "@/api/system/dict/data";
export default {
name: "StaffList",
dicts: ['ywqx','write_off','special_prem','display','zhzt','transaction','time_frame','handover','handover_quit',
- 'jbjl','official','notice','special_prem'],
+ 'jbjl','official','notice','special_prem','role'],
data() {
return {
// 标题
@@ -483,11 +473,28 @@ export default {
showSearch: true,
categoryOptions: [],
storeOptions: [],
- role:[],
- posOptions:[],
- appletOptions:[],
+ // role:[],
+ posPrem:'',
+ posOptions:[
+ {value: '首页权限',label: '首页权限',children:[{value: '禁用普通收款权限', label: '禁用普通收款权限' },]},
+ {value: '会员储值',label: '会员储值'},
+ {value: '会员实体卡',label: '会员实体卡'},
+ {value: '会员积分',label: '会员积分'},
+ {value: '加油金变动',label: '加油金变动'},
+ {value: '会员卡券',label: '会员卡券'},
+ {value: '会员成长值',label: '会员成长值'},
+ ],
+ props: { multiple: true },
+ appletPrem:'',
+ appletOptions:[
+ {value: '首页权限',label: '首页权限',children:[{value: '女装', label: '女装' },]},
+ {value: '会员储值',label: '会员储值'},
+ {value: '会员实体卡',label: '会员实体卡'},
+ ],
writeOff:[],
+ write:[],
specialPrem:[],
+ special:[],
// 总条数
total: 0,
// 表格数据
@@ -501,9 +508,9 @@ export default {
// 表单参数
form: {
id:'', category:'', userId:'', mobile:'', realName:'', wechat:'', merchantId:'', storeId:'', auditedStatus:'',
- auditedTime:'', description:'', isRefuel:'yc', handoverMode:'dqmdtyjb', handoverPrem:'yqx', handoverOut:'', record:'',
- merchantStatus:'qy',screen:'qy', posPrem:'', appletPrem:'', notice:'jy', oilGunId:'', timeFrame:'bx', refund:'yqx',
- transaction:'qbjy', writeOff:[],specialPrem:[], official:'', status:'qy',pos:'jy'
+ auditedTime:'', description:'', isRefuel:'yc', handoverMode:'dqmdtyjb', handoverPrem:'yqx', handoverOut:'jbtc', record:'qbjl',
+ merchantStatus:'qy',screen:'qy', posPrem:'', appletPrem:'', notice:'advice_jy', oilGunId:'', timeFrame:'bx', refund:'yqx',
+ transaction:'qbjy', writeOff:'',specialPrem:'', official:'', status:'qy',pos:'jy',role:''
},
// 查询参数
queryParams: {
@@ -511,7 +518,7 @@ export default {
pageSize: 10,
realName: '',
mobile: '',
- auditedStatus: ''
+ status: ''
},
// 表单校验
rules: {
@@ -567,12 +574,19 @@ export default {
},
created() {
this.getList();
- this.getDuty();
+ // this.getDuty();
// this.getStoreList();
},
methods: {
+ handleNodeClick1(data) {
+ this.form.posPrem = JSON.stringify(data);
+ },
+ handleNodeClick2(data) {
+ this.form.appletPrem = JSON.stringify(data);
+ },
getCheckbox(){
- console.log(this.writeOff)
+ this.form.writeOff = this.writeOff.toString();
+ this.form.specialPrem = this.specialPrem.toString();
},
// 页面跳转
toTarget(url) {
@@ -581,13 +595,14 @@ export default {
getName,
// 查询列表
getList() {
- // this.loading = true;
- listStaff().then(response => {
+ this.loading = true;
+ listStaff(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.list = response.data.records;
this.total = response.data.total;
- response.data.records.forEach(item=>{
- this.categoryOptions.push(item.category)
- })
+ // response.data.records.forEach(item=>{
+ // this.categoryOptions.push(item.category)
+ // })
+ this.loading = false;
}
);
// getStaffList(this.addDateRange(this.queryParams, this.dateRange)).then( response => {
@@ -598,7 +613,7 @@ export default {
// }
// );
},
- // 查询角色
+ // 查询角色列表
getDuty(){
listDuty().then(response => {
this.role = response.data
@@ -631,7 +646,8 @@ export default {
handleStatusChange(row) {
let text = row.auditedStatus == "A" ? "启用" : "禁用";
this.$modal.confirm('确认要' + text + '"' + row.realName + '"吗?').then(function() {
- return updateStaffStatus(row.id, row.auditedStatus);
+ // return updateStaffStatus(row.id, row.auditedStatus);
+ return updateStaff({id:row.id, auditedStatus:row.auditedStatus})
}).then(() => {
this.$modal.msgSuccess(text + "成功");
}).catch(function() {
@@ -657,11 +673,14 @@ export default {
},
// 表单重置
reset() {
+ this.posPrem = '';
+ this.appletPrem = '';
+ this.writeOff = []
this.form = {
id:'', category:'', userId:'', mobile:'', realName:'', wechat:'', merchantId:'', storeId:'', auditedStatus:'A',
- auditedTime:'', description:'', isRefuel:'yc', handoverMode:'dqmdtyjb', handoverPrem:'yqx', handoverOut:'', record:'',
- merchantStatus:'qy',screen:'qy', posPrem:'', appletPrem:'', notice:'jy', oilGunId:'', timeFrame:'bx', refund:'yqx',
- transaction:'qbjy', writeOff:'',specialPrem:'', official:'', status:'qy',pos:'jy'
+ auditedTime:'', description:'', isRefuel:'yc', handoverMode:'dqmdtyjb', handoverPrem:'yqx', handoverOut:'jbtc', record:'qbjl',
+ merchantStatus:'qy',screen:'qy', posPrem:'', appletPrem:'', notice:'advice_jy', oilGunId:'', timeFrame:'bx', refund:'yqx',
+ transaction:'qbjy', writeOff:'',specialPrem:'', official:'', status:'qy',pos:'jy',role:''
};
this.resetForm("form");
},
@@ -675,7 +694,8 @@ export default {
this.$refs["form"].validate(valid => {
if (valid) {
if (!this.form.id) {
- console.log(this.form)
+ this.form.posPrem = JSON.parse(this.form.posPrem);
+ this.form.appletPrem = JSON.parse(this.form.appletPrem);
addStaff(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
@@ -693,6 +713,7 @@ export default {
},
// 修改按钮操作
handleUpdate(row) {
+ this.reset();
this.open = true;
const id = row.id || this.ids;
getStaff(id).then(response => {
@@ -700,6 +721,10 @@ export default {
// this.form.category = response.data.staffInfo.category + '';
this.open = true;
this.title = "编辑员工信息";
+ this.writeOff = this.form.writeOff.split(",");
+ this.specialPrem = this.form.specialPrem.split(",");
+ this.posPrem = JSON.parse(this.form.posPrem);
+ this.appletPrem = JSON.parse(this.form.appletPrem);
});
},
// 删除按钮操作
diff --git a/fuintAdmin/src/views/staff/model/addStaff.vue b/fuintAdmin/src/views/staff/model/addStaff.vue
deleted file mode 100644
index 594c48a4b..000000000
--- a/fuintAdmin/src/views/staff/model/addStaff.vue
+++ /dev/null
@@ -1,324 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 核销权限
-
-
-
-
-
-
- 特殊权限
-
-
-
- Y
- Y
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/controller/LjDutyController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/controller/LjDutyController.java
index d17262a16..e55bd391f 100644
--- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/controller/LjDutyController.java
+++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/controller/LjDutyController.java
@@ -4,8 +4,10 @@ import com.fuint.business.member.entity.LJDuty;
import com.fuint.business.member.service.ILJDutyService;
import com.fuint.framework.web.BaseController;
import com.fuint.framework.web.ResponseObject;
+import io.swagger.models.auth.In;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -17,9 +19,24 @@ public class LjDutyController extends BaseController {
@Autowired
private ILJDutyService dutyService;
+ /**
+ * 查询角色信息
+ * @return
+ */
@GetMapping("/list")
public ResponseObject list(){
List list = dutyService.selectDutyList();
return getSuccessResult(list);
}
+
+ /**
+ * 根据id查询角色信息
+ * @param id
+ * @return
+ */
+ @GetMapping("/{id}")
+ public ResponseObject dutyInfo(@PathVariable Integer id){
+ LJDuty duty = dutyService.selectDutyById(id);
+ return getSuccessResult(duty);
+ }
}
diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/entity/LJStaff.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/entity/LJStaff.java
index bc3f22bbf..db87a3500 100644
--- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/entity/LJStaff.java
+++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/entity/LJStaff.java
@@ -118,4 +118,7 @@ public class LJStaff extends BaseEntity implements Serializable {
@ApiModelProperty("POS加油员,启用;禁用")
private String pos;
+
+ @ApiModelProperty("角色id")
+ private String role;
}
diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/mapper/xml/LJStaffMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/mapper/xml/LJStaffMapper.xml
index e0c752cb9..ebefbbf60 100644
--- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/mapper/xml/LJStaffMapper.xml
+++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/member/mapper/xml/LJStaffMapper.xml
@@ -36,24 +36,29 @@
+
select id, merchant_id, store_id, user_id, category, mobile, real_name, wechat, create_time, update_time,
audited_status, audited_time, description, create_by, update_by, is_refuel, handover_mode, handover_prem,
handover_out, record, merchant_status, screen, pos_prem, applet_prem, notice, oil_gun_id, time_frame, refund,
- transaction, write_off, special_prem, official,status,pos from mt_staff
+ transaction, write_off, special_prem, official,status,pos,role from mt_staff
@@ -62,9 +67,9 @@
where id = #{id}
-
+
insert into mt_staff(
@@ -140,11 +145,11 @@
update mt_staff p set p.AUDITED_STATUS = #{status}, p.UPDATE_TIME = #{updateTime} where p.ID = #{id}
-