diff --git a/src/api/system/claimLog.js b/src/api/system/claimLog.js
new file mode 100644
index 0000000..7c01806
--- /dev/null
+++ b/src/api/system/claimLog.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询优惠券领取记录列表
+export function listClaimLog(query) {
+ return request({
+ url: '/system/claimLog/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询优惠券领取记录详细
+export function getClaimLog(claimId) {
+ return request({
+ url: '/system/claimLog/' + claimId,
+ method: 'get'
+ })
+}
+
+// 新增优惠券领取记录
+export function addClaimLog(data) {
+ return request({
+ url: '/system/claimLog',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改优惠券领取记录
+export function updateClaimLog(data) {
+ return request({
+ url: '/system/claimLog',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除优惠券领取记录
+export function delClaimLog(claimId) {
+ return request({
+ url: '/system/claimLog/' + claimId,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/claimLog/index.vue b/src/views/system/claimLog/index.vue
new file mode 100644
index 0000000..7ab1f70
--- /dev/null
+++ b/src/views/system/claimLog/index.vue
@@ -0,0 +1,274 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/coupon/index.vue b/src/views/system/coupon/index.vue
index bb952fd..5774426 100644
--- a/src/views/system/coupon/index.vue
+++ b/src/views/system/coupon/index.vue
@@ -11,17 +11,17 @@
/>
-
+
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
{{ parseTime(scope.row.expirationTime, '{y}-{m}-{d}') }}
@@ -168,7 +173,7 @@
@@ -186,7 +191,7 @@ import { listCoupon, getCoupon, delCoupon, addCoupon, updateCoupon } from "@/api
export default {
name: "Coupon",
- dicts: ['et_coupon_type', 'et_coupon_status'],
+ dicts: ['et_coupon_type', 'et_coupon_status','et_coupon_time_limit'],
data() {
return {
// 遮罩层
@@ -233,6 +238,19 @@ export default {
this.getList();
},
methods: {
+ formatDiscountAmount(row){
+ if (row.discountAmount === null || row.discountAmount === '') {
+ return '';
+ }
+ return row.discountAmount + '元';
+ },
+ formatDiscountPercent(row, column, cellValue){
+ if (cellValue == null) {
+ return '';
+ }
+ const formattedValue = (cellValue * 100).toFixed(0) + '%';
+ return formattedValue;
+ },
/** 查询优惠券列表 */
getList() {
this.loading = true;
diff --git a/src/views/system/model/index.vue b/src/views/system/model/index.vue
index 49c8e09..1ee3110 100644
--- a/src/views/system/model/index.vue
+++ b/src/views/system/model/index.vue
@@ -155,7 +155,6 @@
import { listModel, getModel, delModel, addModel, updateModel } from "@/api/system/model";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
-import { deptTreeSelect } from '@/api/system/user'
import { listDept2 } from '@/api/system/dept'
export default {
@@ -225,9 +224,11 @@ export default {
},
created() {
this.getList();
- this.getDeptTree();
console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name;
+ if(this.userName == 'admin'){
+ this.getDeptTree();
+ }
},
methods: {
/** 查询车辆型号列表 */