Compare commits
merge into: yanjiaqing:dev
yanjiaqing:4/1日二期
yanjiaqing:Hongxilin
yanjiaqing:activity_recharge_detail_audit_workspace_hxl
yanjiaqing:dev
yanjiaqing:donghaolin
yanjiaqing:donghaolin-2
yanjiaqing:feat/lhl
yanjiaqing:feat/zry
yanjiaqing:lhl
yanjiaqing:main
yanjiaqing:master
yanjiaqing:rate_recharge_consume_refund_donghaolin
yanjiaqing:test
yanjiaqing:zln
yanjiaqing:zln1
yanjiaqing:zry
pull from: yanjiaqing:rate_recharge_consume_refund_donghaolin
yanjiaqing:4/1日二期
yanjiaqing:Hongxilin
yanjiaqing:activity_recharge_detail_audit_workspace_hxl
yanjiaqing:dev
yanjiaqing:donghaolin
yanjiaqing:donghaolin-2
yanjiaqing:feat/lhl
yanjiaqing:feat/zry
yanjiaqing:lhl
yanjiaqing:main
yanjiaqing:master
yanjiaqing:rate_recharge_consume_refund_donghaolin
yanjiaqing:test
yanjiaqing:zln
yanjiaqing:zln1
yanjiaqing:zry
1 Commits
dev
...
rate_recha
Author | SHA1 | Message | Date |
---|---|---|---|
|
39d4107295 |
这是最新代码上传
|
5 months ago |
66 changed files with 4279 additions and 4396 deletions
-
0gold-system/.gitignore
-
0gold-system/.vscode/extensions.json
-
0gold-system/README.md
-
0gold-system/index.html
-
0gold-system/package-lock.json
-
0gold-system/package.json
-
0gold-system/public/vite.svg
-
0gold-system/src/App.vue
-
13gold-system/src/api/index.js
-
0gold-system/src/assets/background.jpg
-
0gold-system/src/assets/css/common.css
-
0gold-system/src/assets/vue.svg
-
0gold-system/src/assets/动漫美女.png
-
0gold-system/src/assets/金币管理系统logo.png
-
0gold-system/src/assets/韩信.png
-
5gold-system/src/main.ts
-
0gold-system/src/router/index.js
-
0gold-system/src/style.css
-
15gold-system/src/util/http.js
-
51gold-system/src/views/audit/rechargeAudit.vue
-
220gold-system/src/views/audit/refundAudit.vue
-
119gold-system/src/views/consume/addConsume.vue
-
65gold-system/src/views/consume/allConsume.vue
-
90gold-system/src/views/index.vue
-
18gold-system/src/views/login.vue
-
67gold-system/src/views/managerecharge/activity.vue
-
212gold-system/src/views/managerecharge/rate.vue
-
1144gold-system/src/views/recharge/addRecharge.vue
-
663gold-system/src/views/recharge/adminRecharge.vue
-
202gold-system/src/views/recharge/allRecharge.vue
-
133gold-system/src/views/refund/addRefund.vue
-
118gold-system/src/views/refund/allRefund.vue
-
76gold-system/src/views/usergold/index.vue
-
1555gold-system/src/views/workspace/index.vue
-
0gold-system/src/views/z.vue
-
0gold-system/src/vite-env.d.ts
-
0gold-system/tsconfig.app.json
-
0gold-system/tsconfig.json
-
0gold-system/tsconfig.node.json
-
0gold-system/vite.config.ts
-
2vue/gold-system/demo/.gitattributes
-
33vue/gold-system/demo/.gitignore
-
19vue/gold-system/demo/.mvn/wrapper/maven-wrapper.properties
-
2vue/gold-system/demo/commons/.gitattributes
-
33vue/gold-system/demo/commons/.gitignore
-
19vue/gold-system/demo/commons/.mvn/wrapper/maven-wrapper.properties
-
259vue/gold-system/demo/commons/mvnw
-
149vue/gold-system/demo/commons/mvnw.cmd
-
75vue/gold-system/demo/commons/pom.xml
-
13vue/gold-system/demo/commons/src/test/java/com/example/commons/CommonsApplicationTests.java
-
259vue/gold-system/demo/mvnw
-
149vue/gold-system/demo/mvnw.cmd
-
98vue/gold-system/demo/pom.xml
-
2vue/gold-system/demo/recharge/.gitattributes
-
33vue/gold-system/demo/recharge/.gitignore
-
19vue/gold-system/demo/recharge/.mvn/wrapper/maven-wrapper.properties
-
259vue/gold-system/demo/recharge/mvnw
-
149vue/gold-system/demo/recharge/mvnw.cmd
-
80vue/gold-system/demo/recharge/pom.xml
-
13vue/gold-system/demo/recharge/src/main/java/com/example/recharge/RechargeApplication.java
-
15vue/gold-system/demo/recharge/src/main/resources/application.yml
-
13vue/gold-system/demo/recharge/src/test/java/com/example/recharge/RechargeApplicationTests.java
-
9vue/gold-system/vue/gold-system/src/api/index.js
-
513vue/gold-system/vue/gold-system/src/views/recharge/addRecharge.vue
-
497vue/gold-system/vue/gold-system/src/views/recharge/adminRecharge.vue
-
1131vue/gold-system/vue/gold-system/src/views/workspace/index.vue
@ -0,0 +1,13 @@ |
|||||
|
import { pa } from 'element-plus/es/locales.mjs'; |
||||
|
import http from '../util/http.js'; |
||||
|
|
||||
|
const API={ |
||||
|
post: function(url,data){ |
||||
|
return http({url:url,method:'post',data:data}) |
||||
|
}, |
||||
|
postN: function(url,params){ |
||||
|
return http({url:url,method:'post',params:params}) |
||||
|
}, |
||||
|
}; |
||||
|
|
||||
|
export default API; |
After Width: 928 | Height: 1133 | Size: 567 KiB |
After Width: 263 | Height: 181 | Size: 95 KiB |
After Width: 47 | Height: 47 | Size: 2.0 KiB |
After Width: 256 | Height: 180 | Size: 96 KiB |
1144
gold-system/src/views/recharge/addRecharge.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,663 @@ |
|||||
|
<script setup> |
||||
|
import { ref, onMounted, reactive, computed } from "vue"; |
||||
|
import ElementPlus from "element-plus"; |
||||
|
import { ElMessage, ElMessageBox } from "element-plus"; |
||||
|
import { AiFillRead } from "vue-icons-plus/ai"; |
||||
|
import axios from "axios"; |
||||
|
import moment from "moment"; |
||||
|
import API from "../../api/index.js"; |
||||
|
//这是获取用户信息的接口 |
||||
|
const adminData = ref({}); |
||||
|
const getAdminData = async function () { |
||||
|
try { |
||||
|
const result = await API.post( |
||||
|
"http://192.168.8.93:10010/admin/userinfo", |
||||
|
{} |
||||
|
); |
||||
|
adminData.value = result; |
||||
|
rechargeVo.value.adminId = adminData.value.adminId; |
||||
|
console.log("请求成功", result); |
||||
|
console.log("用户信息", adminData.value); |
||||
|
} catch (error) { |
||||
|
console.log("请求失败", error); |
||||
|
} |
||||
|
}; |
||||
|
// 变量 |
||||
|
// 充值明细表格 |
||||
|
const tableData = ref([]); |
||||
|
// 搜索=========================================== |
||||
|
// 搜索recharge |
||||
|
const rechargeVo = ref({ |
||||
|
adminId: adminData.value.adminId, |
||||
|
}); |
||||
|
// 搜索对象 |
||||
|
const getObj = ref({ |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
}); |
||||
|
//分页总条目 |
||||
|
const total = ref(100); |
||||
|
// 搜索对象时间 |
||||
|
const getTime = ref([]); |
||||
|
// 搜索活动列表 |
||||
|
const activity = ref([]); |
||||
|
// 所有信息 |
||||
|
const allData = ref([]); |
||||
|
// 搜索地区列表 |
||||
|
const area = ref([]); |
||||
|
//标签页默认高亮选项 |
||||
|
const activeName = ref("all"); |
||||
|
// 支付方式选项 |
||||
|
const payWay = [ |
||||
|
{ |
||||
|
value: "微信", |
||||
|
label: "微信", |
||||
|
}, |
||||
|
{ |
||||
|
value: "支付宝", |
||||
|
label: "支付宝", |
||||
|
}, |
||||
|
{ |
||||
|
value: "银联", |
||||
|
label: "银联", |
||||
|
}, |
||||
|
{ |
||||
|
value: "信用卡", |
||||
|
label: "信用卡", |
||||
|
}, |
||||
|
{ |
||||
|
value: "借记卡", |
||||
|
label: "借记卡", |
||||
|
}, |
||||
|
{ |
||||
|
value: "现金充值", |
||||
|
label: "现金充值", |
||||
|
}, |
||||
|
]; |
||||
|
// 删除========================================================== |
||||
|
// 删除对象 |
||||
|
const delObj = ref({}); |
||||
|
|
||||
|
// //表格高度 |
||||
|
// const tableHeight = computed(function () { |
||||
|
// return (getObj.value.pageSize + 2) * 60 + "px"; |
||||
|
// }); |
||||
|
|
||||
|
// 方法 |
||||
|
// 搜索=========================================================================== |
||||
|
// 搜索方法 |
||||
|
const get = async function (val) { |
||||
|
try { |
||||
|
// 搜索参数页码赋值 |
||||
|
if (typeof val === "number") { |
||||
|
getObj.value.pageNum = val; |
||||
|
} |
||||
|
// 搜索参数时间赋值 |
||||
|
if (getTime.value != null) { |
||||
|
if (getTime.value.startDate != "" && getTime.value.endDate != "") { |
||||
|
rechargeVo.value.startDate = getTime.value[0]; |
||||
|
rechargeVo.value.endDate = getTime.value[1]; |
||||
|
} |
||||
|
} else { |
||||
|
rechargeVo.value.startDate = ""; |
||||
|
rechargeVo.value.endDate = ""; |
||||
|
} |
||||
|
console.log("搜索参数", getObj.value); |
||||
|
// 发送POST请求 |
||||
|
const result = await API.post( |
||||
|
"http://192.168.8.93:10010/recharge/recharge", |
||||
|
{ ...getObj.value, rechargeVo: { ...rechargeVo.value } } |
||||
|
); |
||||
|
|
||||
|
// 将响应结果存储到响应式数据中 |
||||
|
console.log("请求成功", result); |
||||
|
// 存储表格数据 |
||||
|
tableData.value = result.data.list; |
||||
|
console.log("tableData", tableData.value); |
||||
|
// 存储分页总数 |
||||
|
total.value = result.data.total; |
||||
|
console.log("total", total.value); |
||||
|
} catch (error) { |
||||
|
console.log("请求失败", error); |
||||
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
||||
|
} |
||||
|
}; |
||||
|
// 搜索 |
||||
|
const search = function () { |
||||
|
getObj.value.pageNum = 1; |
||||
|
get(); |
||||
|
}; |
||||
|
// 重置 |
||||
|
const reset = function () { |
||||
|
rechargeVo.value.activityId = ""; |
||||
|
rechargeVo.value.payWay = ""; |
||||
|
rechargeVo.value.area = ""; |
||||
|
rechargeVo.value.startDate = ""; |
||||
|
rechargeVo.value.endDate = ""; |
||||
|
getTime.value = {}; |
||||
|
}; |
||||
|
// 今天 |
||||
|
const getToday = function () { |
||||
|
const today = new Date(); |
||||
|
const startDate = new Date( |
||||
|
today.getFullYear(), |
||||
|
today.getMonth(), |
||||
|
today.getDate() |
||||
|
); |
||||
|
const endDate = new Date( |
||||
|
today.getFullYear(), |
||||
|
today.getMonth(), |
||||
|
today.getDate() + 1 |
||||
|
); |
||||
|
getTime.value = [startDate, endDate]; |
||||
|
console.log("getTime", getTime.value); |
||||
|
get(); |
||||
|
}; |
||||
|
// 昨天 |
||||
|
const getYesterday = function () { |
||||
|
const yesterday = new Date(); |
||||
|
yesterday.setDate(yesterday.getDate() - 1); |
||||
|
const startDate = new Date( |
||||
|
yesterday.getFullYear(), |
||||
|
yesterday.getMonth(), |
||||
|
yesterday.getDate() |
||||
|
); |
||||
|
const endDate = new Date( |
||||
|
yesterday.getFullYear(), |
||||
|
yesterday.getMonth(), |
||||
|
yesterday.getDate() + 1 |
||||
|
); |
||||
|
getTime.value = [startDate, endDate]; |
||||
|
console.log("getTime", getTime.value); |
||||
|
get(); |
||||
|
}; |
||||
|
// 近7天 |
||||
|
const get7Days = function () { |
||||
|
const today = new Date(); |
||||
|
const startDate = new Date( |
||||
|
today.getFullYear(), |
||||
|
today.getMonth(), |
||||
|
today.getDate() - 6 |
||||
|
); |
||||
|
const endDate = new Date( |
||||
|
today.getFullYear(), |
||||
|
today.getMonth(), |
||||
|
today.getDate() + 1 |
||||
|
); |
||||
|
getTime.value = [startDate, endDate]; |
||||
|
console.log("getTime", getTime.value); |
||||
|
get(); |
||||
|
}; |
||||
|
//全部充值明细 |
||||
|
const adminAll = function () { |
||||
|
console.log("adminAll"); |
||||
|
rechargeVo.value.status = ""; |
||||
|
getObj.value.pageNum = 1; |
||||
|
get(); |
||||
|
}; |
||||
|
//待审核充值明细 |
||||
|
const adminWait = function () { |
||||
|
rechargeVo.value.status = 0; |
||||
|
getObj.value.pageNum = 1; |
||||
|
get(); |
||||
|
console.log("adminWait"); |
||||
|
}; |
||||
|
//已通过充值明细 |
||||
|
const adminPass = function () { |
||||
|
rechargeVo.value.status = 1; |
||||
|
getObj.value.pageNum = 1; |
||||
|
get(); |
||||
|
console.log("adminPass"); |
||||
|
}; |
||||
|
//已驳回充值明细 |
||||
|
const adminReject = function () { |
||||
|
rechargeVo.value.status = 2; |
||||
|
getObj.value.pageNum = 1; |
||||
|
get(); |
||||
|
console.log("adminReject"); |
||||
|
}; |
||||
|
//点击标签页 |
||||
|
const handleClick = function (tab, event) { |
||||
|
if (tab.props.name === "all") { |
||||
|
adminAll(); |
||||
|
} else if (tab.props.name === "wait") { |
||||
|
adminWait(); |
||||
|
} else if (tab.props.name === "pass") { |
||||
|
adminPass(); |
||||
|
} else if (tab.props.name === "reject") { |
||||
|
adminReject(); |
||||
|
} |
||||
|
}; |
||||
|
// 获取活动名称 |
||||
|
const getActivity = async function () { |
||||
|
try { |
||||
|
// 发送POST请求 |
||||
|
const result = await API.post( |
||||
|
"http://192.168.8.93:10010/recharge/activity/select", |
||||
|
{} |
||||
|
); |
||||
|
|
||||
|
// 将响应结果存储到响应式数据中 |
||||
|
console.log("请求成功", result); |
||||
|
// 存储表格数据 |
||||
|
activity.value = result.data; |
||||
|
console.log("activity", activity.value); |
||||
|
} catch (error) { |
||||
|
console.log("请求失败", error); |
||||
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
||||
|
} |
||||
|
}; |
||||
|
// 获取地区 |
||||
|
const getArea = async function () { |
||||
|
try { |
||||
|
// 发送POST请求 |
||||
|
const result = await API.post( |
||||
|
"http://192.168.8.93:10010/recharge/recharge", |
||||
|
{} |
||||
|
); |
||||
|
// 将响应结果存储到响应式数据中 |
||||
|
console.log("请求成功", result); |
||||
|
// 存储全部数据 |
||||
|
allData.value = result.data; |
||||
|
console.log("allData", allData.value); |
||||
|
// 分离并去重地区列表 |
||||
|
area.value = [...new Set(allData.value.map((item) => item.area))]; |
||||
|
console.log("地区", area.value); |
||||
|
} catch (error) { |
||||
|
console.log("请求失败", error); |
||||
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
||||
|
} |
||||
|
}; |
||||
|
// 删除================================= |
||||
|
// 点击删除按钮 |
||||
|
const del = function (row) { |
||||
|
delObj.value.rechargeId = row.rechargeId; |
||||
|
console.log("delObj1", delObj.value); |
||||
|
}; |
||||
|
// 确认删除按钮 |
||||
|
const delConfirm = async function () { |
||||
|
try { |
||||
|
console.log("delObj2", delObj.value); |
||||
|
const result = await API.post( |
||||
|
"http://192.168.8.93:10010/recharge/recharge/edit", |
||||
|
delObj.value |
||||
|
); |
||||
|
console.log("删除成功", result); |
||||
|
// 刷新表格数据 |
||||
|
get(); |
||||
|
} catch (error) { |
||||
|
console.log("请求失败", error); |
||||
|
// 在这里可以处理错误逻辑,比如显示错误提示等 |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
// 验证跳转输入框的数字是否合法 |
||||
|
const checkNumber = function () { |
||||
|
if (typeof parseInt(getObj.value.pageNum) === "number") { |
||||
|
console.log( |
||||
|
"总共有多少页" + Math.ceil(total.value / getObj.value.pageSize) |
||||
|
); |
||||
|
if ( |
||||
|
getObj.value.pageNum > 0 && |
||||
|
getObj.value.pageNum <= Math.ceil(total.value / getObj.value.pageSize) |
||||
|
) { |
||||
|
getObj.value.pageNum = parseInt(getObj.value.pageNum); |
||||
|
console.log("输入的数字合法"); |
||||
|
get(); |
||||
|
} else { |
||||
|
//提示 |
||||
|
ElMessage({ |
||||
|
type: "error", |
||||
|
message: "请检查输入内容", |
||||
|
}); |
||||
|
} |
||||
|
} else { |
||||
|
//提示 |
||||
|
ElMessage({ |
||||
|
type: "error", |
||||
|
message: "请检查输入内容", |
||||
|
}); |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
// 挂载 |
||||
|
onMounted(async function () { |
||||
|
await getAdminData(); |
||||
|
await get(); |
||||
|
getActivity(); |
||||
|
await getArea(); |
||||
|
}); |
||||
|
</script> |
||||
|
|
||||
|
<template> |
||||
|
<el-row> |
||||
|
<el-col> |
||||
|
<el-card style="margin-bottom: 20px"> |
||||
|
<el-row style="margin-bottom: 10px"> |
||||
|
<el-col :span="8"> |
||||
|
<div class="head-card-element"> |
||||
|
<el-text class="mx-1" size="large">活动名称:</el-text> |
||||
|
<el-select |
||||
|
v-model="rechargeVo.activityId" |
||||
|
placeholder="请选择活动名称" |
||||
|
size="large" |
||||
|
style="width: 240px" |
||||
|
clearable |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in activity" |
||||
|
:key="item.activityId" |
||||
|
:label="item.activityName" |
||||
|
:value="item.activityId" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="head-card-element"> |
||||
|
<el-text class="mx-1" size="large">支付方式:</el-text> |
||||
|
<el-select |
||||
|
v-model="rechargeVo.payWay" |
||||
|
placeholder="请选择支付方式" |
||||
|
size="large" |
||||
|
style="width: 240px" |
||||
|
clearable |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in payWay" |
||||
|
:key="item.value" |
||||
|
:label="item.label" |
||||
|
:value="item.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="head-card-element"> |
||||
|
<el-text class="mx-1" size="large">所属地区:</el-text> |
||||
|
<el-select |
||||
|
v-model="rechargeVo.area" |
||||
|
placeholder="请选择所属地区" |
||||
|
size="large" |
||||
|
style="width: 240px" |
||||
|
clearable |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in area" |
||||
|
:key="item" |
||||
|
:label="item" |
||||
|
:value="item" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="21"> |
||||
|
<div class="head-card-element"> |
||||
|
<el-text class="mx-1" size="large">充值时间:</el-text> |
||||
|
<el-date-picker |
||||
|
v-model="getTime" |
||||
|
type="datetimerange" |
||||
|
range-separator="至" |
||||
|
start-placeholder="起始时间" |
||||
|
end-placeholder="结束时间" |
||||
|
/> |
||||
|
<el-button style="margin-left: 10px" @click="getToday()" |
||||
|
>今</el-button |
||||
|
> |
||||
|
<el-button @click="getYesterday()">昨</el-button> |
||||
|
<el-button @click="get7Days()">近7天</el-button> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
<el-col :span="3"> |
||||
|
<div class="head-card-btn"> |
||||
|
<el-button @click="reset()">重置</el-button> |
||||
|
<el-button type="primary" @click="search()">查询</el-button> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-card> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col> |
||||
|
<el-card> |
||||
|
<el-tabs |
||||
|
v-model="activeName" |
||||
|
type="card" |
||||
|
class="demo-tabs" |
||||
|
@tab-click="handleClick" |
||||
|
> |
||||
|
<el-tab-pane label="全部" name="all"></el-tab-pane> |
||||
|
<el-tab-pane label="待审核" name="wait"></el-tab-pane> |
||||
|
<el-tab-pane label="已通过" name="pass"></el-tab-pane> |
||||
|
<el-tab-pane label="已驳回" name="reject"></el-tab-pane> |
||||
|
</el-tabs> |
||||
|
<div> |
||||
|
<el-table :data="tableData" :height="tableHeight" style="width: 100%"> |
||||
|
<el-table-column prop="username" label="姓名" width="100px" /> |
||||
|
<el-table-column prop="jwcode" label="精网号" width="130px" /> |
||||
|
<el-table-column prop="area" label="所属地区" width="100px" /> |
||||
|
<el-table-column |
||||
|
prop="activityName" |
||||
|
label="活动名称" |
||||
|
width="150px" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
prop="paidGold" |
||||
|
label="充值金额" |
||||
|
width="120px" |
||||
|
sortable |
||||
|
/> |
||||
|
<el-table-column prop="paidGold" label="充值金币" width="100px" /> |
||||
|
<el-table-column prop="freeGold" label="免费金币" width="100px" /> |
||||
|
<el-table-column |
||||
|
prop="remark" |
||||
|
label="备注" |
||||
|
width="200px" |
||||
|
show-overflow-tooltip |
||||
|
/> |
||||
|
<el-table-column prop="payWay" label="支付方式" width="100px" /> |
||||
|
<el-table-column |
||||
|
prop="rechargeVoucher" |
||||
|
label="支付凭证" |
||||
|
width="150px" |
||||
|
> |
||||
|
<template #default="scope"> |
||||
|
<el-image |
||||
|
:preview-src-list="[scope.row.rechargeVoucher]" |
||||
|
preview-teleported="true" |
||||
|
:src="scope.row.rechargeVoucher" |
||||
|
alt="凭证" |
||||
|
style="width: 50px; height: 50px" |
||||
|
/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="name" label="提交人" width="100px" /> |
||||
|
<el-table-column prop="status" label="状态" width="100px"> |
||||
|
<template #default="scope"> |
||||
|
<span v-if="scope.row.status === 1"> |
||||
|
<div class="status"> |
||||
|
<span class="green-dot"></span> |
||||
|
<span>已通过</span> |
||||
|
</div> |
||||
|
</span> |
||||
|
<span v-if="scope.row.status === 0"> |
||||
|
<div class="status"> |
||||
|
<span class="grey-dot"></span> |
||||
|
<span>待审核</span> |
||||
|
</div> |
||||
|
</span> |
||||
|
<span v-if="scope.row.status === 2"> |
||||
|
<div class="status"> |
||||
|
<span class="red-dot"></span> |
||||
|
<span>已驳回</span> |
||||
|
</div> |
||||
|
</span> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column |
||||
|
prop="reson" |
||||
|
label="驳回理由" |
||||
|
width="200px" |
||||
|
show-overflow-tooltip |
||||
|
/> |
||||
|
<el-table-column prop="rechargeTime" label="交款时间" width="200px"> |
||||
|
<template #default="scope"> |
||||
|
{{ |
||||
|
moment(scope.row.rechargeTime).format("YYYY-MM-DD HH:mm:ss") |
||||
|
}} |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="createTime" label="提交时间" width="200px" /> |
||||
|
<el-table-column |
||||
|
fixed="right" |
||||
|
prop="operation" |
||||
|
label="操作" |
||||
|
width="150px" |
||||
|
> |
||||
|
<template #default="scope"> |
||||
|
<el-popconfirm |
||||
|
title="确定将此条活动删除吗?" |
||||
|
@confirm="delConfirm" |
||||
|
> |
||||
|
<template #reference> |
||||
|
<el-button type="primary" text @click="del(scope.row)"> |
||||
|
删除 |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #actions="{ confirm, cancel }"> |
||||
|
<el-button size="small" @click="cancel">取消</el-button> |
||||
|
<el-button type="primary" size="small" @click="confirm"> |
||||
|
确定 |
||||
|
</el-button> |
||||
|
</template> |
||||
|
</el-popconfirm> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
</div> |
||||
|
|
||||
|
<!-- 分页 --> |
||||
|
<div class="pagination" style="margin-top: 20px"> |
||||
|
<el-pagination |
||||
|
background |
||||
|
:page-size="getObj.pageSize" |
||||
|
layout="slot" |
||||
|
:total="total" |
||||
|
> |
||||
|
<div>共{{ total }}条,每页</div> |
||||
|
<el-select |
||||
|
v-model="getObj.pageSize" |
||||
|
class="page-size" |
||||
|
@change="get()" |
||||
|
style="width: 80px" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in [5, 10, 20, 50, 100]" |
||||
|
:key="item" |
||||
|
:label="item" |
||||
|
:value="item" |
||||
|
></el-option> |
||||
|
</el-select> |
||||
|
<div>条</div> |
||||
|
</el-pagination> |
||||
|
<el-pagination |
||||
|
background |
||||
|
layout="prev, pager, next,slot" |
||||
|
:page-size="getObj.pageSize" |
||||
|
:total="total" |
||||
|
:current-page="getObj.pageNum" |
||||
|
@current-change="get" |
||||
|
> |
||||
|
<div>跳至</div> |
||||
|
<el-input |
||||
|
v-model="getObj.pageNum" |
||||
|
style="width: 40px" |
||||
|
@change="checkNumber" |
||||
|
/> |
||||
|
<div>页</div> |
||||
|
</el-pagination> |
||||
|
</div> |
||||
|
</el-card> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
|
||||
|
<!-- 编辑弹窗 --> |
||||
|
<el-dialog |
||||
|
v-model="editRechargeVisible" |
||||
|
title="新增活动" |
||||
|
width="500" |
||||
|
:before-close="closeEditRechargeVisible" |
||||
|
> |
||||
|
<template #footer> |
||||
|
<el-form :model="editObj" label-width="auto" style="max-width: 600px"> |
||||
|
<el-form-item label="活动名称:"> |
||||
|
<el-input |
||||
|
v-model="addObj.activityName" |
||||
|
placeholder="请输入活动名称" |
||||
|
style="width: 220px" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="免费金币:"> |
||||
|
<el-radio-group v-model="addObj.freeGold"> |
||||
|
<el-radio value="0">无赠送</el-radio> |
||||
|
<el-radio value="1">有赠送</el-radio> |
||||
|
</el-radio-group> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="免费金币兑换比:"> |
||||
|
<el-input |
||||
|
v-model="addObj.rechargeRatio" |
||||
|
placeholder="请输入" |
||||
|
style="width: 80px" |
||||
|
/>:1 |
||||
|
<div style="color: grey">(提示:当前规则每10新币可兑换1免费金币)</div> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="开始时间:"> |
||||
|
<el-time-picker v-model="addObj.startTime" /> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="结束时间:"> |
||||
|
<el-time-picker v-model="addObj.endTime" /> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="添加人:"> |
||||
|
<el-input v-model="addObj.adminName" disabled style="width: 220px" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<div class="dialog-footer"> |
||||
|
<el-button @click="closeAddActivityVisible">取消</el-button> |
||||
|
<el-button type="primary" @click="closeAddActivityVisible"> |
||||
|
提交 |
||||
|
</el-button> |
||||
|
</div> |
||||
|
</template> |
||||
|
</el-dialog> |
||||
|
</template> |
||||
|
|
||||
|
<style scoped> |
||||
|
.pagination { |
||||
|
display: flex; |
||||
|
} |
||||
|
|
||||
|
.status { |
||||
|
display: flex; |
||||
|
} |
||||
|
|
||||
|
.head-card { |
||||
|
display: flex; |
||||
|
} |
||||
|
|
||||
|
.head-card-element { |
||||
|
margin-right: 20px; |
||||
|
} |
||||
|
|
||||
|
.head-card-btn { |
||||
|
margin-left: auto; |
||||
|
} |
||||
|
</style> |
1555
gold-system/src/views/workspace/index.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,2 +0,0 @@ |
|||||
/mvnw text eol=lf |
|
||||
*.cmd text eol=crlf |
|
@ -1,33 +0,0 @@ |
|||||
HELP.md |
|
||||
target/ |
|
||||
!.mvn/wrapper/maven-wrapper.jar |
|
||||
!**/src/main/**/target/ |
|
||||
!**/src/test/**/target/ |
|
||||
|
|
||||
### STS ### |
|
||||
.apt_generated |
|
||||
.classpath |
|
||||
.factorypath |
|
||||
.project |
|
||||
.settings |
|
||||
.springBeans |
|
||||
.sts4-cache |
|
||||
|
|
||||
### IntelliJ IDEA ### |
|
||||
.idea |
|
||||
*.iws |
|
||||
*.iml |
|
||||
*.ipr |
|
||||
|
|
||||
### NetBeans ### |
|
||||
/nbproject/private/ |
|
||||
/nbbuild/ |
|
||||
/dist/ |
|
||||
/nbdist/ |
|
||||
/.nb-gradle/ |
|
||||
build/ |
|
||||
!**/src/main/**/build/ |
|
||||
!**/src/test/**/build/ |
|
||||
|
|
||||
### VS Code ### |
|
||||
.vscode/ |
|
@ -1,19 +0,0 @@ |
|||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
wrapperVersion=3.3.2 |
|
||||
distributionType=only-script |
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip |
|
@ -1,2 +0,0 @@ |
|||||
/mvnw text eol=lf |
|
||||
*.cmd text eol=crlf |
|
@ -1,33 +0,0 @@ |
|||||
HELP.md |
|
||||
target/ |
|
||||
!.mvn/wrapper/maven-wrapper.jar |
|
||||
!**/src/main/**/target/ |
|
||||
!**/src/test/**/target/ |
|
||||
|
|
||||
### STS ### |
|
||||
.apt_generated |
|
||||
.classpath |
|
||||
.factorypath |
|
||||
.project |
|
||||
.settings |
|
||||
.springBeans |
|
||||
.sts4-cache |
|
||||
|
|
||||
### IntelliJ IDEA ### |
|
||||
.idea |
|
||||
*.iws |
|
||||
*.iml |
|
||||
*.ipr |
|
||||
|
|
||||
### NetBeans ### |
|
||||
/nbproject/private/ |
|
||||
/nbbuild/ |
|
||||
/dist/ |
|
||||
/nbdist/ |
|
||||
/.nb-gradle/ |
|
||||
build/ |
|
||||
!**/src/main/**/build/ |
|
||||
!**/src/test/**/build/ |
|
||||
|
|
||||
### VS Code ### |
|
||||
.vscode/ |
|
@ -1,19 +0,0 @@ |
|||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
wrapperVersion=3.3.2 |
|
||||
distributionType=only-script |
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip |
|
@ -1,259 +0,0 @@ |
|||||
#!/bin/sh |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
# |
|
||||
# Optional ENV vars |
|
||||
# ----------------- |
|
||||
# JAVA_HOME - location of a JDK home dir, required when download maven via java source |
|
||||
# MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
set -euf |
|
||||
[ "${MVNW_VERBOSE-}" != debug ] || set -x |
|
||||
|
|
||||
# OS specific support. |
|
||||
native_path() { printf %s\\n "$1"; } |
|
||||
case "$(uname)" in |
|
||||
CYGWIN* | MINGW*) |
|
||||
[ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" |
|
||||
native_path() { cygpath --path --windows "$1"; } |
|
||||
;; |
|
||||
esac |
|
||||
|
|
||||
# set JAVACMD and JAVACCMD |
|
||||
set_java_home() { |
|
||||
# For Cygwin and MinGW, ensure paths are in Unix format before anything is touched |
|
||||
if [ -n "${JAVA_HOME-}" ]; then |
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ]; then |
|
||||
# IBM's JDK on AIX uses strange locations for the executables |
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java" |
|
||||
JAVACCMD="$JAVA_HOME/jre/sh/javac" |
|
||||
else |
|
||||
JAVACMD="$JAVA_HOME/bin/java" |
|
||||
JAVACCMD="$JAVA_HOME/bin/javac" |
|
||||
|
|
||||
if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then |
|
||||
echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 |
|
||||
echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
else |
|
||||
JAVACMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v java |
|
||||
)" || : |
|
||||
JAVACCMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v javac |
|
||||
)" || : |
|
||||
|
|
||||
if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then |
|
||||
echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
} |
|
||||
|
|
||||
# hash string like Java String::hashCode |
|
||||
hash_string() { |
|
||||
str="${1:-}" h=0 |
|
||||
while [ -n "$str" ]; do |
|
||||
char="${str%"${str#?}"}" |
|
||||
h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) |
|
||||
str="${str#?}" |
|
||||
done |
|
||||
printf %x\\n $h |
|
||||
} |
|
||||
|
|
||||
verbose() { :; } |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } |
|
||||
|
|
||||
die() { |
|
||||
printf %s\\n "$1" >&2 |
|
||||
exit 1 |
|
||||
} |
|
||||
|
|
||||
trim() { |
|
||||
# MWRAPPER-139: |
|
||||
# Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. |
|
||||
# Needed for removing poorly interpreted newline sequences when running in more |
|
||||
# exotic environments such as mingw bash on Windows. |
|
||||
printf "%s" "${1}" | tr -d '[:space:]' |
|
||||
} |
|
||||
|
|
||||
# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
while IFS="=" read -r key value; do |
|
||||
case "${key-}" in |
|
||||
distributionUrl) distributionUrl=$(trim "${value-}") ;; |
|
||||
distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; |
|
||||
esac |
|
||||
done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
|
|
||||
case "${distributionUrl##*/}" in |
|
||||
maven-mvnd-*bin.*) |
|
||||
MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ |
|
||||
case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in |
|
||||
*AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; |
|
||||
:Darwin*x86_64) distributionPlatform=darwin-amd64 ;; |
|
||||
:Darwin*arm64) distributionPlatform=darwin-aarch64 ;; |
|
||||
:Linux*x86_64*) distributionPlatform=linux-amd64 ;; |
|
||||
*) |
|
||||
echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 |
|
||||
distributionPlatform=linux-amd64 |
|
||||
;; |
|
||||
esac |
|
||||
distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" |
|
||||
;; |
|
||||
maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; |
|
||||
*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; |
|
||||
esac |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
distributionUrlNameMain="${distributionUrlName%.*}" |
|
||||
distributionUrlNameMain="${distributionUrlNameMain%-bin}" |
|
||||
MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" |
|
||||
MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" |
|
||||
|
|
||||
exec_maven() { |
|
||||
unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : |
|
||||
exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" |
|
||||
} |
|
||||
|
|
||||
if [ -d "$MAVEN_HOME" ]; then |
|
||||
verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
exec_maven "$@" |
|
||||
fi |
|
||||
|
|
||||
case "${distributionUrl-}" in |
|
||||
*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; |
|
||||
*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; |
|
||||
esac |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then |
|
||||
clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } |
|
||||
trap clean HUP INT TERM EXIT |
|
||||
else |
|
||||
die "cannot create temp dir" |
|
||||
fi |
|
||||
|
|
||||
mkdir -p -- "${MAVEN_HOME%/*}" |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
verbose "Downloading from: $distributionUrl" |
|
||||
verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
# select .zip or .tar.gz |
|
||||
if ! command -v unzip >/dev/null; then |
|
||||
distributionUrl="${distributionUrl%.zip}.tar.gz" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
fi |
|
||||
|
|
||||
# verbose opt |
|
||||
__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v |
|
||||
|
|
||||
# normalize http auth |
|
||||
case "${MVNW_PASSWORD:+has-password}" in |
|
||||
'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
esac |
|
||||
|
|
||||
if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then |
|
||||
verbose "Found wget ... using wget" |
|
||||
wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" |
|
||||
elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then |
|
||||
verbose "Found curl ... using curl" |
|
||||
curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" |
|
||||
elif set_java_home; then |
|
||||
verbose "Falling back to use Java to download" |
|
||||
javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" |
|
||||
targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
cat >"$javaSource" <<-END |
|
||||
public class Downloader extends java.net.Authenticator |
|
||||
{ |
|
||||
protected java.net.PasswordAuthentication getPasswordAuthentication() |
|
||||
{ |
|
||||
return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); |
|
||||
} |
|
||||
public static void main( String[] args ) throws Exception |
|
||||
{ |
|
||||
setDefault( new Downloader() ); |
|
||||
java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); |
|
||||
} |
|
||||
} |
|
||||
END |
|
||||
# For Cygwin/MinGW, switch paths to Windows format before running javac and java |
|
||||
verbose " - Compiling Downloader.java ..." |
|
||||
"$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" |
|
||||
verbose " - Running Downloader.java ..." |
|
||||
"$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" |
|
||||
fi |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
if [ -n "${distributionSha256Sum-}" ]; then |
|
||||
distributionSha256Result=false |
|
||||
if [ "$MVN_CMD" = mvnd.sh ]; then |
|
||||
echo "Checksum validation is not supported for maven-mvnd." >&2 |
|
||||
echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
elif command -v sha256sum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
elif command -v shasum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
else |
|
||||
echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 |
|
||||
echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
if [ $distributionSha256Result = false ]; then |
|
||||
echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 |
|
||||
echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
fi |
|
||||
|
|
||||
# unzip and move |
|
||||
if command -v unzip >/dev/null; then |
|
||||
unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" |
|
||||
else |
|
||||
tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" |
|
||||
fi |
|
||||
printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" |
|
||||
mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" |
|
||||
|
|
||||
clean || : |
|
||||
exec_maven "$@" |
|
@ -1,149 +0,0 @@ |
|||||
<# : batch portion |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one |
|
||||
@REM or more contributor license agreements. See the NOTICE file |
|
||||
@REM distributed with this work for additional information |
|
||||
@REM regarding copyright ownership. The ASF licenses this file |
|
||||
@REM to you under the Apache License, Version 2.0 (the |
|
||||
@REM "License"); you may not use this file except in compliance |
|
||||
@REM with the License. You may obtain a copy of the License at |
|
||||
@REM |
|
||||
@REM http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
@REM |
|
||||
@REM Unless required by applicable law or agreed to in writing, |
|
||||
@REM software distributed under the License is distributed on an |
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
@REM KIND, either express or implied. See the License for the |
|
||||
@REM specific language governing permissions and limitations |
|
||||
@REM under the License. |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
@REM |
|
||||
@REM Optional ENV vars |
|
||||
@REM MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) |
|
||||
@SET __MVNW_CMD__= |
|
||||
@SET __MVNW_ERROR__= |
|
||||
@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% |
|
||||
@SET PSModulePath= |
|
||||
@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( |
|
||||
IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) |
|
||||
) |
|
||||
@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% |
|
||||
@SET __MVNW_PSMODULEP_SAVE= |
|
||||
@SET __MVNW_ARG0_NAME__= |
|
||||
@SET MVNW_USERNAME= |
|
||||
@SET MVNW_PASSWORD= |
|
||||
@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) |
|
||||
@echo Cannot start maven from wrapper >&2 && exit /b 1 |
|
||||
@GOTO :EOF |
|
||||
: end batch / begin powershell #> |
|
||||
|
|
||||
$ErrorActionPreference = "Stop" |
|
||||
if ($env:MVNW_VERBOSE -eq "true") { |
|
||||
$VerbosePreference = "Continue" |
|
||||
} |
|
||||
|
|
||||
# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl |
|
||||
if (!$distributionUrl) { |
|
||||
Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" |
|
||||
} |
|
||||
|
|
||||
switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { |
|
||||
"maven-mvnd-*" { |
|
||||
$USE_MVND = $true |
|
||||
$distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" |
|
||||
$MVN_CMD = "mvnd.cmd" |
|
||||
break |
|
||||
} |
|
||||
default { |
|
||||
$USE_MVND = $false |
|
||||
$MVN_CMD = $script -replace '^mvnw','mvn' |
|
||||
break |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
if ($env:MVNW_REPOURL) { |
|
||||
$MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } |
|
||||
$distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" |
|
||||
} |
|
||||
$distributionUrlName = $distributionUrl -replace '^.*/','' |
|
||||
$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' |
|
||||
$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" |
|
||||
if ($env:MAVEN_USER_HOME) { |
|
||||
$MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" |
|
||||
} |
|
||||
$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' |
|
||||
$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" |
|
||||
|
|
||||
if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { |
|
||||
Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
||||
exit $? |
|
||||
} |
|
||||
|
|
||||
if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { |
|
||||
Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" |
|
||||
} |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile |
|
||||
$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null |
|
||||
trap { |
|
||||
if ($TMP_DOWNLOAD_DIR.Exists) { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
Write-Verbose "Downloading from: $distributionUrl" |
|
||||
Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
$webclient = New-Object System.Net.WebClient |
|
||||
if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { |
|
||||
$webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) |
|
||||
} |
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 |
|
||||
$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum |
|
||||
if ($distributionSha256Sum) { |
|
||||
if ($USE_MVND) { |
|
||||
Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." |
|
||||
} |
|
||||
Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash |
|
||||
if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { |
|
||||
Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# unzip and move |
|
||||
Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null |
|
||||
Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null |
|
||||
try { |
|
||||
Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null |
|
||||
} catch { |
|
||||
if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { |
|
||||
Write-Error "fail to move MAVEN_HOME" |
|
||||
} |
|
||||
} finally { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
|
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
@ -1,75 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>commons</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
<name>commons</name> |
|
||||
<description>commons</description> |
|
||||
|
|
||||
<parent> |
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>demo</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
</parent> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-web</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.mybatis.spring.boot</groupId> |
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
||||
<version>3.0.3</version> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-devtools</artifactId> |
|
||||
<scope>runtime</scope> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.mysql</groupId> |
|
||||
<artifactId>mysql-connector-j</artifactId> |
|
||||
<scope>runtime</scope> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-test</artifactId> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.mybatis.spring.boot</groupId> |
|
||||
<artifactId>mybatis-spring-boot-starter-test</artifactId> |
|
||||
<version>3.0.3</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
|
|
||||
<build> |
|
||||
<plugins> |
|
||||
<plugin> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
|
||||
<configuration> |
|
||||
<excludes> |
|
||||
<exclude> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
</exclude> |
|
||||
</excludes> |
|
||||
</configuration> |
|
||||
</plugin> |
|
||||
</plugins> |
|
||||
</build> |
|
||||
|
|
||||
</project> |
|
@ -1,13 +0,0 @@ |
|||||
package com.example.commons; |
|
||||
|
|
||||
import org.junit.jupiter.api.Test; |
|
||||
import org.springframework.boot.test.context.SpringBootTest; |
|
||||
|
|
||||
@SpringBootTest |
|
||||
class CommonsApplicationTests { |
|
||||
|
|
||||
@Test |
|
||||
void contextLoads() { |
|
||||
} |
|
||||
|
|
||||
} |
|
@ -1,259 +0,0 @@ |
|||||
#!/bin/sh |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
# |
|
||||
# Optional ENV vars |
|
||||
# ----------------- |
|
||||
# JAVA_HOME - location of a JDK home dir, required when download maven via java source |
|
||||
# MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
set -euf |
|
||||
[ "${MVNW_VERBOSE-}" != debug ] || set -x |
|
||||
|
|
||||
# OS specific support. |
|
||||
native_path() { printf %s\\n "$1"; } |
|
||||
case "$(uname)" in |
|
||||
CYGWIN* | MINGW*) |
|
||||
[ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" |
|
||||
native_path() { cygpath --path --windows "$1"; } |
|
||||
;; |
|
||||
esac |
|
||||
|
|
||||
# set JAVACMD and JAVACCMD |
|
||||
set_java_home() { |
|
||||
# For Cygwin and MinGW, ensure paths are in Unix format before anything is touched |
|
||||
if [ -n "${JAVA_HOME-}" ]; then |
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ]; then |
|
||||
# IBM's JDK on AIX uses strange locations for the executables |
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java" |
|
||||
JAVACCMD="$JAVA_HOME/jre/sh/javac" |
|
||||
else |
|
||||
JAVACMD="$JAVA_HOME/bin/java" |
|
||||
JAVACCMD="$JAVA_HOME/bin/javac" |
|
||||
|
|
||||
if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then |
|
||||
echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 |
|
||||
echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
else |
|
||||
JAVACMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v java |
|
||||
)" || : |
|
||||
JAVACCMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v javac |
|
||||
)" || : |
|
||||
|
|
||||
if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then |
|
||||
echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
} |
|
||||
|
|
||||
# hash string like Java String::hashCode |
|
||||
hash_string() { |
|
||||
str="${1:-}" h=0 |
|
||||
while [ -n "$str" ]; do |
|
||||
char="${str%"${str#?}"}" |
|
||||
h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) |
|
||||
str="${str#?}" |
|
||||
done |
|
||||
printf %x\\n $h |
|
||||
} |
|
||||
|
|
||||
verbose() { :; } |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } |
|
||||
|
|
||||
die() { |
|
||||
printf %s\\n "$1" >&2 |
|
||||
exit 1 |
|
||||
} |
|
||||
|
|
||||
trim() { |
|
||||
# MWRAPPER-139: |
|
||||
# Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. |
|
||||
# Needed for removing poorly interpreted newline sequences when running in more |
|
||||
# exotic environments such as mingw bash on Windows. |
|
||||
printf "%s" "${1}" | tr -d '[:space:]' |
|
||||
} |
|
||||
|
|
||||
# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
while IFS="=" read -r key value; do |
|
||||
case "${key-}" in |
|
||||
distributionUrl) distributionUrl=$(trim "${value-}") ;; |
|
||||
distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; |
|
||||
esac |
|
||||
done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
|
|
||||
case "${distributionUrl##*/}" in |
|
||||
maven-mvnd-*bin.*) |
|
||||
MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ |
|
||||
case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in |
|
||||
*AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; |
|
||||
:Darwin*x86_64) distributionPlatform=darwin-amd64 ;; |
|
||||
:Darwin*arm64) distributionPlatform=darwin-aarch64 ;; |
|
||||
:Linux*x86_64*) distributionPlatform=linux-amd64 ;; |
|
||||
*) |
|
||||
echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 |
|
||||
distributionPlatform=linux-amd64 |
|
||||
;; |
|
||||
esac |
|
||||
distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" |
|
||||
;; |
|
||||
maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; |
|
||||
*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; |
|
||||
esac |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
distributionUrlNameMain="${distributionUrlName%.*}" |
|
||||
distributionUrlNameMain="${distributionUrlNameMain%-bin}" |
|
||||
MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" |
|
||||
MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" |
|
||||
|
|
||||
exec_maven() { |
|
||||
unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : |
|
||||
exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" |
|
||||
} |
|
||||
|
|
||||
if [ -d "$MAVEN_HOME" ]; then |
|
||||
verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
exec_maven "$@" |
|
||||
fi |
|
||||
|
|
||||
case "${distributionUrl-}" in |
|
||||
*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; |
|
||||
*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; |
|
||||
esac |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then |
|
||||
clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } |
|
||||
trap clean HUP INT TERM EXIT |
|
||||
else |
|
||||
die "cannot create temp dir" |
|
||||
fi |
|
||||
|
|
||||
mkdir -p -- "${MAVEN_HOME%/*}" |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
verbose "Downloading from: $distributionUrl" |
|
||||
verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
# select .zip or .tar.gz |
|
||||
if ! command -v unzip >/dev/null; then |
|
||||
distributionUrl="${distributionUrl%.zip}.tar.gz" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
fi |
|
||||
|
|
||||
# verbose opt |
|
||||
__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v |
|
||||
|
|
||||
# normalize http auth |
|
||||
case "${MVNW_PASSWORD:+has-password}" in |
|
||||
'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
esac |
|
||||
|
|
||||
if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then |
|
||||
verbose "Found wget ... using wget" |
|
||||
wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" |
|
||||
elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then |
|
||||
verbose "Found curl ... using curl" |
|
||||
curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" |
|
||||
elif set_java_home; then |
|
||||
verbose "Falling back to use Java to download" |
|
||||
javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" |
|
||||
targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
cat >"$javaSource" <<-END |
|
||||
public class Downloader extends java.net.Authenticator |
|
||||
{ |
|
||||
protected java.net.PasswordAuthentication getPasswordAuthentication() |
|
||||
{ |
|
||||
return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); |
|
||||
} |
|
||||
public static void main( String[] args ) throws Exception |
|
||||
{ |
|
||||
setDefault( new Downloader() ); |
|
||||
java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); |
|
||||
} |
|
||||
} |
|
||||
END |
|
||||
# For Cygwin/MinGW, switch paths to Windows format before running javac and java |
|
||||
verbose " - Compiling Downloader.java ..." |
|
||||
"$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" |
|
||||
verbose " - Running Downloader.java ..." |
|
||||
"$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" |
|
||||
fi |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
if [ -n "${distributionSha256Sum-}" ]; then |
|
||||
distributionSha256Result=false |
|
||||
if [ "$MVN_CMD" = mvnd.sh ]; then |
|
||||
echo "Checksum validation is not supported for maven-mvnd." >&2 |
|
||||
echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
elif command -v sha256sum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
elif command -v shasum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
else |
|
||||
echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 |
|
||||
echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
if [ $distributionSha256Result = false ]; then |
|
||||
echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 |
|
||||
echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
fi |
|
||||
|
|
||||
# unzip and move |
|
||||
if command -v unzip >/dev/null; then |
|
||||
unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" |
|
||||
else |
|
||||
tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" |
|
||||
fi |
|
||||
printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" |
|
||||
mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" |
|
||||
|
|
||||
clean || : |
|
||||
exec_maven "$@" |
|
@ -1,149 +0,0 @@ |
|||||
<# : batch portion |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one |
|
||||
@REM or more contributor license agreements. See the NOTICE file |
|
||||
@REM distributed with this work for additional information |
|
||||
@REM regarding copyright ownership. The ASF licenses this file |
|
||||
@REM to you under the Apache License, Version 2.0 (the |
|
||||
@REM "License"); you may not use this file except in compliance |
|
||||
@REM with the License. You may obtain a copy of the License at |
|
||||
@REM |
|
||||
@REM http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
@REM |
|
||||
@REM Unless required by applicable law or agreed to in writing, |
|
||||
@REM software distributed under the License is distributed on an |
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
@REM KIND, either express or implied. See the License for the |
|
||||
@REM specific language governing permissions and limitations |
|
||||
@REM under the License. |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
@REM |
|
||||
@REM Optional ENV vars |
|
||||
@REM MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) |
|
||||
@SET __MVNW_CMD__= |
|
||||
@SET __MVNW_ERROR__= |
|
||||
@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% |
|
||||
@SET PSModulePath= |
|
||||
@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( |
|
||||
IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) |
|
||||
) |
|
||||
@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% |
|
||||
@SET __MVNW_PSMODULEP_SAVE= |
|
||||
@SET __MVNW_ARG0_NAME__= |
|
||||
@SET MVNW_USERNAME= |
|
||||
@SET MVNW_PASSWORD= |
|
||||
@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) |
|
||||
@echo Cannot start maven from wrapper >&2 && exit /b 1 |
|
||||
@GOTO :EOF |
|
||||
: end batch / begin powershell #> |
|
||||
|
|
||||
$ErrorActionPreference = "Stop" |
|
||||
if ($env:MVNW_VERBOSE -eq "true") { |
|
||||
$VerbosePreference = "Continue" |
|
||||
} |
|
||||
|
|
||||
# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl |
|
||||
if (!$distributionUrl) { |
|
||||
Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" |
|
||||
} |
|
||||
|
|
||||
switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { |
|
||||
"maven-mvnd-*" { |
|
||||
$USE_MVND = $true |
|
||||
$distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" |
|
||||
$MVN_CMD = "mvnd.cmd" |
|
||||
break |
|
||||
} |
|
||||
default { |
|
||||
$USE_MVND = $false |
|
||||
$MVN_CMD = $script -replace '^mvnw','mvn' |
|
||||
break |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
if ($env:MVNW_REPOURL) { |
|
||||
$MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } |
|
||||
$distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" |
|
||||
} |
|
||||
$distributionUrlName = $distributionUrl -replace '^.*/','' |
|
||||
$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' |
|
||||
$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" |
|
||||
if ($env:MAVEN_USER_HOME) { |
|
||||
$MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" |
|
||||
} |
|
||||
$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' |
|
||||
$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" |
|
||||
|
|
||||
if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { |
|
||||
Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
||||
exit $? |
|
||||
} |
|
||||
|
|
||||
if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { |
|
||||
Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" |
|
||||
} |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile |
|
||||
$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null |
|
||||
trap { |
|
||||
if ($TMP_DOWNLOAD_DIR.Exists) { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
Write-Verbose "Downloading from: $distributionUrl" |
|
||||
Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
$webclient = New-Object System.Net.WebClient |
|
||||
if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { |
|
||||
$webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) |
|
||||
} |
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 |
|
||||
$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum |
|
||||
if ($distributionSha256Sum) { |
|
||||
if ($USE_MVND) { |
|
||||
Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." |
|
||||
} |
|
||||
Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash |
|
||||
if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { |
|
||||
Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# unzip and move |
|
||||
Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null |
|
||||
Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null |
|
||||
try { |
|
||||
Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null |
|
||||
} catch { |
|
||||
if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { |
|
||||
Write-Error "fail to move MAVEN_HOME" |
|
||||
} |
|
||||
} finally { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
|
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
@ -1,98 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>demo</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
<name>demo</name> |
|
||||
<description>demo</description> |
|
||||
|
|
||||
<parent> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-parent</artifactId> |
|
||||
<version>3.3.6</version> |
|
||||
</parent> |
|
||||
|
|
||||
<packaging>pom</packaging> |
|
||||
|
|
||||
<modules> |
|
||||
<module>recharge</module> |
|
||||
<module>commons</module> |
|
||||
</modules> |
|
||||
|
|
||||
<properties> |
|
||||
|
|
||||
<java.version>21</java.version> |
|
||||
|
|
||||
<spring-boot.version>3.3.6</spring-boot.version> |
|
||||
|
|
||||
<dubbo.version>3.3.0-beta.2</dubbo.version> |
|
||||
<seata.version>2.0.0</seata.version> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-web</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-parent</artifactId> |
|
||||
<version>3.3.6</version> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
|
|
||||
<dependencyManagement> |
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-dependencies</artifactId> |
|
||||
<version>${spring-boot.version}</version> |
|
||||
<type>pom</type> |
|
||||
<scope>import</scope> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter</artifactId> |
|
||||
<version>${spring-boot.version}</version> |
|
||||
<exclusions> |
|
||||
<exclusion> |
|
||||
<artifactId>spring-boot-starter-logging</artifactId> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
</exclusion> |
|
||||
</exclusions> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.apache.dubbo</groupId> |
|
||||
<artifactId>dubbo-bom</artifactId> |
|
||||
<version>${dubbo.version}</version> |
|
||||
<type>pom</type> |
|
||||
<scope>import</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
</dependencyManagement> |
|
||||
<build> |
|
||||
<plugins> |
|
||||
<plugin> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
|
||||
<configuration> |
|
||||
<excludes> |
|
||||
<exclude> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
</exclude> |
|
||||
</excludes> |
|
||||
</configuration> |
|
||||
</plugin> |
|
||||
</plugins> |
|
||||
</build> |
|
||||
|
|
||||
</project> |
|
@ -1,2 +0,0 @@ |
|||||
/mvnw text eol=lf |
|
||||
*.cmd text eol=crlf |
|
@ -1,33 +0,0 @@ |
|||||
HELP.md |
|
||||
target/ |
|
||||
!.mvn/wrapper/maven-wrapper.jar |
|
||||
!**/src/main/**/target/ |
|
||||
!**/src/test/**/target/ |
|
||||
|
|
||||
### STS ### |
|
||||
.apt_generated |
|
||||
.classpath |
|
||||
.factorypath |
|
||||
.project |
|
||||
.settings |
|
||||
.springBeans |
|
||||
.sts4-cache |
|
||||
|
|
||||
### IntelliJ IDEA ### |
|
||||
.idea |
|
||||
*.iws |
|
||||
*.iml |
|
||||
*.ipr |
|
||||
|
|
||||
### NetBeans ### |
|
||||
/nbproject/private/ |
|
||||
/nbbuild/ |
|
||||
/dist/ |
|
||||
/nbdist/ |
|
||||
/.nb-gradle/ |
|
||||
build/ |
|
||||
!**/src/main/**/build/ |
|
||||
!**/src/test/**/build/ |
|
||||
|
|
||||
### VS Code ### |
|
||||
.vscode/ |
|
@ -1,19 +0,0 @@ |
|||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
wrapperVersion=3.3.2 |
|
||||
distributionType=only-script |
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip |
|
@ -1,259 +0,0 @@ |
|||||
#!/bin/sh |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Licensed to the Apache Software Foundation (ASF) under one |
|
||||
# or more contributor license agreements. See the NOTICE file |
|
||||
# distributed with this work for additional information |
|
||||
# regarding copyright ownership. The ASF licenses this file |
|
||||
# to you under the Apache License, Version 2.0 (the |
|
||||
# "License"); you may not use this file except in compliance |
|
||||
# with the License. You may obtain a copy of the License at |
|
||||
# |
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
# |
|
||||
# Unless required by applicable law or agreed to in writing, |
|
||||
# software distributed under the License is distributed on an |
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
# KIND, either express or implied. See the License for the |
|
||||
# specific language governing permissions and limitations |
|
||||
# under the License. |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
# ---------------------------------------------------------------------------- |
|
||||
# Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
# |
|
||||
# Optional ENV vars |
|
||||
# ----------------- |
|
||||
# JAVA_HOME - location of a JDK home dir, required when download maven via java source |
|
||||
# MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output |
|
||||
# ---------------------------------------------------------------------------- |
|
||||
|
|
||||
set -euf |
|
||||
[ "${MVNW_VERBOSE-}" != debug ] || set -x |
|
||||
|
|
||||
# OS specific support. |
|
||||
native_path() { printf %s\\n "$1"; } |
|
||||
case "$(uname)" in |
|
||||
CYGWIN* | MINGW*) |
|
||||
[ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" |
|
||||
native_path() { cygpath --path --windows "$1"; } |
|
||||
;; |
|
||||
esac |
|
||||
|
|
||||
# set JAVACMD and JAVACCMD |
|
||||
set_java_home() { |
|
||||
# For Cygwin and MinGW, ensure paths are in Unix format before anything is touched |
|
||||
if [ -n "${JAVA_HOME-}" ]; then |
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ]; then |
|
||||
# IBM's JDK on AIX uses strange locations for the executables |
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java" |
|
||||
JAVACCMD="$JAVA_HOME/jre/sh/javac" |
|
||||
else |
|
||||
JAVACMD="$JAVA_HOME/bin/java" |
|
||||
JAVACCMD="$JAVA_HOME/bin/javac" |
|
||||
|
|
||||
if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then |
|
||||
echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 |
|
||||
echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
else |
|
||||
JAVACMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v java |
|
||||
)" || : |
|
||||
JAVACCMD="$( |
|
||||
'set' +e |
|
||||
'unset' -f command 2>/dev/null |
|
||||
'command' -v javac |
|
||||
)" || : |
|
||||
|
|
||||
if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then |
|
||||
echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 |
|
||||
return 1 |
|
||||
fi |
|
||||
fi |
|
||||
} |
|
||||
|
|
||||
# hash string like Java String::hashCode |
|
||||
hash_string() { |
|
||||
str="${1:-}" h=0 |
|
||||
while [ -n "$str" ]; do |
|
||||
char="${str%"${str#?}"}" |
|
||||
h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) |
|
||||
str="${str#?}" |
|
||||
done |
|
||||
printf %x\\n $h |
|
||||
} |
|
||||
|
|
||||
verbose() { :; } |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } |
|
||||
|
|
||||
die() { |
|
||||
printf %s\\n "$1" >&2 |
|
||||
exit 1 |
|
||||
} |
|
||||
|
|
||||
trim() { |
|
||||
# MWRAPPER-139: |
|
||||
# Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. |
|
||||
# Needed for removing poorly interpreted newline sequences when running in more |
|
||||
# exotic environments such as mingw bash on Windows. |
|
||||
printf "%s" "${1}" | tr -d '[:space:]' |
|
||||
} |
|
||||
|
|
||||
# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
while IFS="=" read -r key value; do |
|
||||
case "${key-}" in |
|
||||
distributionUrl) distributionUrl=$(trim "${value-}") ;; |
|
||||
distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; |
|
||||
esac |
|
||||
done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" |
|
||||
|
|
||||
case "${distributionUrl##*/}" in |
|
||||
maven-mvnd-*bin.*) |
|
||||
MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ |
|
||||
case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in |
|
||||
*AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; |
|
||||
:Darwin*x86_64) distributionPlatform=darwin-amd64 ;; |
|
||||
:Darwin*arm64) distributionPlatform=darwin-aarch64 ;; |
|
||||
:Linux*x86_64*) distributionPlatform=linux-amd64 ;; |
|
||||
*) |
|
||||
echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 |
|
||||
distributionPlatform=linux-amd64 |
|
||||
;; |
|
||||
esac |
|
||||
distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" |
|
||||
;; |
|
||||
maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; |
|
||||
*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; |
|
||||
esac |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
distributionUrlNameMain="${distributionUrlName%.*}" |
|
||||
distributionUrlNameMain="${distributionUrlNameMain%-bin}" |
|
||||
MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" |
|
||||
MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" |
|
||||
|
|
||||
exec_maven() { |
|
||||
unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : |
|
||||
exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" |
|
||||
} |
|
||||
|
|
||||
if [ -d "$MAVEN_HOME" ]; then |
|
||||
verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
exec_maven "$@" |
|
||||
fi |
|
||||
|
|
||||
case "${distributionUrl-}" in |
|
||||
*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; |
|
||||
*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; |
|
||||
esac |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then |
|
||||
clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } |
|
||||
trap clean HUP INT TERM EXIT |
|
||||
else |
|
||||
die "cannot create temp dir" |
|
||||
fi |
|
||||
|
|
||||
mkdir -p -- "${MAVEN_HOME%/*}" |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
verbose "Downloading from: $distributionUrl" |
|
||||
verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
# select .zip or .tar.gz |
|
||||
if ! command -v unzip >/dev/null; then |
|
||||
distributionUrl="${distributionUrl%.zip}.tar.gz" |
|
||||
distributionUrlName="${distributionUrl##*/}" |
|
||||
fi |
|
||||
|
|
||||
# verbose opt |
|
||||
__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' |
|
||||
[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v |
|
||||
|
|
||||
# normalize http auth |
|
||||
case "${MVNW_PASSWORD:+has-password}" in |
|
||||
'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; |
|
||||
esac |
|
||||
|
|
||||
if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then |
|
||||
verbose "Found wget ... using wget" |
|
||||
wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" |
|
||||
elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then |
|
||||
verbose "Found curl ... using curl" |
|
||||
curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" |
|
||||
elif set_java_home; then |
|
||||
verbose "Falling back to use Java to download" |
|
||||
javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" |
|
||||
targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
cat >"$javaSource" <<-END |
|
||||
public class Downloader extends java.net.Authenticator |
|
||||
{ |
|
||||
protected java.net.PasswordAuthentication getPasswordAuthentication() |
|
||||
{ |
|
||||
return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); |
|
||||
} |
|
||||
public static void main( String[] args ) throws Exception |
|
||||
{ |
|
||||
setDefault( new Downloader() ); |
|
||||
java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); |
|
||||
} |
|
||||
} |
|
||||
END |
|
||||
# For Cygwin/MinGW, switch paths to Windows format before running javac and java |
|
||||
verbose " - Compiling Downloader.java ..." |
|
||||
"$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" |
|
||||
verbose " - Running Downloader.java ..." |
|
||||
"$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" |
|
||||
fi |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
if [ -n "${distributionSha256Sum-}" ]; then |
|
||||
distributionSha256Result=false |
|
||||
if [ "$MVN_CMD" = mvnd.sh ]; then |
|
||||
echo "Checksum validation is not supported for maven-mvnd." >&2 |
|
||||
echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
elif command -v sha256sum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
elif command -v shasum >/dev/null; then |
|
||||
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then |
|
||||
distributionSha256Result=true |
|
||||
fi |
|
||||
else |
|
||||
echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 |
|
||||
echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
if [ $distributionSha256Result = false ]; then |
|
||||
echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 |
|
||||
echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 |
|
||||
exit 1 |
|
||||
fi |
|
||||
fi |
|
||||
|
|
||||
# unzip and move |
|
||||
if command -v unzip >/dev/null; then |
|
||||
unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" |
|
||||
else |
|
||||
tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" |
|
||||
fi |
|
||||
printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" |
|
||||
mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" |
|
||||
|
|
||||
clean || : |
|
||||
exec_maven "$@" |
|
@ -1,149 +0,0 @@ |
|||||
<# : batch portion |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one |
|
||||
@REM or more contributor license agreements. See the NOTICE file |
|
||||
@REM distributed with this work for additional information |
|
||||
@REM regarding copyright ownership. The ASF licenses this file |
|
||||
@REM to you under the Apache License, Version 2.0 (the |
|
||||
@REM "License"); you may not use this file except in compliance |
|
||||
@REM with the License. You may obtain a copy of the License at |
|
||||
@REM |
|
||||
@REM http://www.apache.org/licenses/LICENSE-2.0 |
|
||||
@REM |
|
||||
@REM Unless required by applicable law or agreed to in writing, |
|
||||
@REM software distributed under the License is distributed on an |
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
||||
@REM KIND, either express or implied. See the License for the |
|
||||
@REM specific language governing permissions and limitations |
|
||||
@REM under the License. |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
@REM Apache Maven Wrapper startup batch script, version 3.3.2 |
|
||||
@REM |
|
||||
@REM Optional ENV vars |
|
||||
@REM MVNW_REPOURL - repo url base for downloading maven distribution |
|
||||
@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven |
|
||||
@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output |
|
||||
@REM ---------------------------------------------------------------------------- |
|
||||
|
|
||||
@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) |
|
||||
@SET __MVNW_CMD__= |
|
||||
@SET __MVNW_ERROR__= |
|
||||
@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% |
|
||||
@SET PSModulePath= |
|
||||
@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( |
|
||||
IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) |
|
||||
) |
|
||||
@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% |
|
||||
@SET __MVNW_PSMODULEP_SAVE= |
|
||||
@SET __MVNW_ARG0_NAME__= |
|
||||
@SET MVNW_USERNAME= |
|
||||
@SET MVNW_PASSWORD= |
|
||||
@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) |
|
||||
@echo Cannot start maven from wrapper >&2 && exit /b 1 |
|
||||
@GOTO :EOF |
|
||||
: end batch / begin powershell #> |
|
||||
|
|
||||
$ErrorActionPreference = "Stop" |
|
||||
if ($env:MVNW_VERBOSE -eq "true") { |
|
||||
$VerbosePreference = "Continue" |
|
||||
} |
|
||||
|
|
||||
# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties |
|
||||
$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl |
|
||||
if (!$distributionUrl) { |
|
||||
Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" |
|
||||
} |
|
||||
|
|
||||
switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { |
|
||||
"maven-mvnd-*" { |
|
||||
$USE_MVND = $true |
|
||||
$distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" |
|
||||
$MVN_CMD = "mvnd.cmd" |
|
||||
break |
|
||||
} |
|
||||
default { |
|
||||
$USE_MVND = $false |
|
||||
$MVN_CMD = $script -replace '^mvnw','mvn' |
|
||||
break |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# apply MVNW_REPOURL and calculate MAVEN_HOME |
|
||||
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash> |
|
||||
if ($env:MVNW_REPOURL) { |
|
||||
$MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } |
|
||||
$distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" |
|
||||
} |
|
||||
$distributionUrlName = $distributionUrl -replace '^.*/','' |
|
||||
$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' |
|
||||
$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" |
|
||||
if ($env:MAVEN_USER_HOME) { |
|
||||
$MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" |
|
||||
} |
|
||||
$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' |
|
||||
$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" |
|
||||
|
|
||||
if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { |
|
||||
Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" |
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
||||
exit $? |
|
||||
} |
|
||||
|
|
||||
if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { |
|
||||
Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" |
|
||||
} |
|
||||
|
|
||||
# prepare tmp dir |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile |
|
||||
$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" |
|
||||
$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null |
|
||||
trap { |
|
||||
if ($TMP_DOWNLOAD_DIR.Exists) { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null |
|
||||
|
|
||||
# Download and Install Apache Maven |
|
||||
Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." |
|
||||
Write-Verbose "Downloading from: $distributionUrl" |
|
||||
Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" |
|
||||
|
|
||||
$webclient = New-Object System.Net.WebClient |
|
||||
if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { |
|
||||
$webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) |
|
||||
} |
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 |
|
||||
$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null |
|
||||
|
|
||||
# If specified, validate the SHA-256 sum of the Maven distribution zip file |
|
||||
$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum |
|
||||
if ($distributionSha256Sum) { |
|
||||
if ($USE_MVND) { |
|
||||
Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." |
|
||||
} |
|
||||
Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash |
|
||||
if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { |
|
||||
Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
# unzip and move |
|
||||
Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null |
|
||||
Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null |
|
||||
try { |
|
||||
Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null |
|
||||
} catch { |
|
||||
if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { |
|
||||
Write-Error "fail to move MAVEN_HOME" |
|
||||
} |
|
||||
} finally { |
|
||||
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } |
|
||||
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } |
|
||||
} |
|
||||
|
|
||||
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" |
|
@ -1,80 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>recharge</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
<name>recharge</name> |
|
||||
<description>recharge</description> |
|
||||
|
|
||||
<parent> |
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>demo</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
</parent> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>com.example</groupId> |
|
||||
<artifactId>commons</artifactId> |
|
||||
<version>0.0.1</version> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-web</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.mybatis.spring.boot</groupId> |
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
||||
<version>3.0.3</version> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-devtools</artifactId> |
|
||||
<scope>runtime</scope> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.mysql</groupId> |
|
||||
<artifactId>mysql-connector-j</artifactId> |
|
||||
<scope>runtime</scope> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-test</artifactId> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>org.mybatis.spring.boot</groupId> |
|
||||
<artifactId>mybatis-spring-boot-starter-test</artifactId> |
|
||||
<version>3.0.3</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
|
|
||||
<build> |
|
||||
<plugins> |
|
||||
<plugin> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
|
||||
<configuration> |
|
||||
<excludes> |
|
||||
<exclude> |
|
||||
<groupId>org.projectlombok</groupId> |
|
||||
<artifactId>lombok</artifactId> |
|
||||
</exclude> |
|
||||
</excludes> |
|
||||
</configuration> |
|
||||
</plugin> |
|
||||
</plugins> |
|
||||
</build> |
|
||||
|
|
||||
</project> |
|
@ -1,13 +0,0 @@ |
|||||
package com.example.recharge; |
|
||||
|
|
||||
import org.springframework.boot.SpringApplication; |
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
||||
|
|
||||
@SpringBootApplication |
|
||||
public class RechargeApplication { |
|
||||
|
|
||||
public static void main(String[] args) { |
|
||||
SpringApplication.run(RechargeApplication.class, args); |
|
||||
} |
|
||||
|
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
server: |
|
||||
port: 10010 |
|
||||
|
|
||||
spring: |
|
||||
datasource: |
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver |
|
||||
url: jdbc:mysql://39.101.133.168/hwgold?serverTimezone=GMT%2b8 |
|
||||
username: hwgold |
|
||||
password: 'AGX4Z3YMxiCG3GR2' |
|
||||
application: |
|
||||
name: recharge |
|
||||
mybatis: |
|
||||
configuration: |
|
||||
map-underscore-to-camel-case: true |
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl |
|
@ -1,13 +0,0 @@ |
|||||
package com.example.recharge; |
|
||||
|
|
||||
import org.junit.jupiter.api.Test; |
|
||||
import org.springframework.boot.test.context.SpringBootTest; |
|
||||
|
|
||||
@SpringBootTest |
|
||||
class RechargeApplicationTests { |
|
||||
|
|
||||
@Test |
|
||||
void contextLoads() { |
|
||||
} |
|
||||
|
|
||||
} |
|
@ -1,9 +0,0 @@ |
|||||
import http from '../util/http.js'; |
|
||||
|
|
||||
const API={ |
|
||||
post: function(url,data){ |
|
||||
return http({url:url,method:'post',data:data}) |
|
||||
}, |
|
||||
}; |
|
||||
|
|
||||
export default API; |
|
@ -1,513 +0,0 @@ |
|||||
<script setup> |
|
||||
import { reactive } from "vue"; |
|
||||
import { ref, computed, watch } from "vue"; |
|
||||
import { ElMessage } from "element-plus"; |
|
||||
import { Plus } from "@element-plus/icons-vue"; |
|
||||
import axios from "axios"; |
|
||||
import { ElMessageBox } from "element-plus"; |
|
||||
import API from "../../api/index.js"; |
|
||||
import moment from "moment"; |
|
||||
|
|
||||
const adminData = ref({}); |
|
||||
const getAdminData = async function () { |
|
||||
try { |
|
||||
const result = await API.post( |
|
||||
"http://192.168.8.93:10010/admin/userinfo", |
|
||||
{} |
|
||||
); |
|
||||
adminData.value = result; |
|
||||
addRecharge.value.adminId = adminData.value.adminId; |
|
||||
addRecharge.value.area = adminData.value.area; |
|
||||
console.log("请求成功", result); |
|
||||
console.log("用户信息", user.value); |
|
||||
} catch (error) { |
|
||||
console.log("请求失败", error); |
|
||||
} |
|
||||
}; |
|
||||
getAdminData(); |
|
||||
|
|
||||
// 这是添加充值信息的表单 |
|
||||
const addRecharge = ref({ |
|
||||
rechargeVoucher: "", |
|
||||
rechargeWay: "客服充值", |
|
||||
freeGold: 0, |
|
||||
rechargeGold: 0, |
|
||||
paidGold: "", |
|
||||
}); |
|
||||
// 这是添加充值信息的接口 |
|
||||
const add = async function () { |
|
||||
try { |
|
||||
console.log("开始添加充值信息", addRecharge.value); |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post( |
|
||||
"http://192.168.8.93:10010/recharge/recharge/add", |
|
||||
addRecharge.value |
|
||||
); |
|
||||
if (result.code === 0) { |
|
||||
ElMessage.error("添加失败"); |
|
||||
return; |
|
||||
} |
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log("请求成功", result); |
|
||||
// 显示成功消息 |
|
||||
ElMessage.success("添加成功"); |
|
||||
// 重置表单 |
|
||||
addRecharge.value = { |
|
||||
adminId: adminData.value.adminId, |
|
||||
area: adminData.value.area, |
|
||||
rechargeVoucher: "", |
|
||||
rechargeWay: "客服充值", |
|
||||
freeGold: Number(0), |
|
||||
rechargeGold: 1, |
|
||||
paidGold: "", |
|
||||
}; |
|
||||
user.value = {}; |
|
||||
// addRecharge.value.adminId = adminData.value.adminId; |
|
||||
// addRecharge.value.area = adminData.value.area; |
|
||||
// addRecharge.value.rechargeVoucher = ""; |
|
||||
// addRecharge.value.rechargeWay = "客服充值"; |
|
||||
// addRecharge.value.freeGold = 0; |
|
||||
// addRecharge.value.rechargeGold = 0; |
|
||||
// addRecharge.value.paidGold = ""; |
|
||||
} catch (error) { |
|
||||
console.log("请求失败", error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
}; |
|
||||
const addBefore = () => { |
|
||||
Ref.value.validate(async (valid) => { |
|
||||
if (valid) { |
|
||||
ElMessageBox.confirm("确认添加?") |
|
||||
.then(() => { |
|
||||
add(); |
|
||||
console.log("添加成功"); |
|
||||
}) |
|
||||
.catch(() => { |
|
||||
console.log("取消添加"); |
|
||||
}); |
|
||||
} else { |
|
||||
//提示 |
|
||||
ElMessage({ |
|
||||
type: "error", |
|
||||
message: "请检查输入内容", |
|
||||
}); |
|
||||
} |
|
||||
}); |
|
||||
}; |
|
||||
|
|
||||
// 表单验证 |
|
||||
// 开始时间改变时,重新验证结束时间 |
|
||||
const Ref = ref(null); |
|
||||
|
|
||||
const checkFreeGoldRadio = function (rule, value, callback) { |
|
||||
if (value == "0" || value == null || value == "") { |
|
||||
callback(new Error("请输入充值金币")); |
|
||||
} else if (value < 0 || isNaN(value)) { |
|
||||
callback(new Error("请输入正确的格式")); |
|
||||
} else { |
|
||||
callback(); |
|
||||
} |
|
||||
}; |
|
||||
const rules = reactive({ |
|
||||
jwcode: [{ required: true, message: "请输入精网号", trigger: "blur" }], |
|
||||
activityId: [{ required: true, message: "请选择活动名称", trigger: "blur" }], |
|
||||
paidGold: [{ validator: checkFreeGoldRadio, trigger: "blur" }], |
|
||||
rechargeGold: [ |
|
||||
{ required: true, message: "请输入充值金额", trigger: "blur" }, |
|
||||
], |
|
||||
payWay: [{ required: true, message: "请选择付款方式", trigger: "blur" }], |
|
||||
rechargeTime: [ |
|
||||
{ required: true, message: "请选择交款时间", trigger: "blur" }, |
|
||||
], |
|
||||
}); |
|
||||
|
|
||||
// 查找客户信息的方法 |
|
||||
const user = ref({ |
|
||||
firstRechargeTime: "", |
|
||||
}); |
|
||||
const getUser = async function (jwcode) { |
|
||||
try { |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post("http://192.168.8.93:10010/recharge/user", { |
|
||||
jwcode: jwcode, |
|
||||
}); |
|
||||
|
|
||||
console.log("请求成功", result); |
|
||||
|
|
||||
user.value = result.data[0]; |
|
||||
user.value.A = |
|
||||
Number(user.value.pendingRechargeTimes) + |
|
||||
Number(user.value.pendingSpendTimes); |
|
||||
console.log("用户信息", user.value); |
|
||||
console.log("用户信息", user.value.firstRechargeDate); |
|
||||
if (result.data.code === 0) { |
|
||||
ElMessage.error(result.data.msg); |
|
||||
} else { |
|
||||
ElMessage.success(result.data.msg); |
|
||||
} |
|
||||
} catch (error) { |
|
||||
console.log("请求失败", error); |
|
||||
ElMessage.error("查询失败,请检查精网号是否正确"); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
}; |
|
||||
|
|
||||
// 这是查询活动的接口 |
|
||||
const activity = ref([]); |
|
||||
const getActivity = async function () { |
|
||||
try { |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post( |
|
||||
"http://192.168.8.93:10010/recharge/activity/select", |
|
||||
{} |
|
||||
); |
|
||||
|
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log("请求成功", result); |
|
||||
// 存储表格数据 |
|
||||
activity.value = result.data; |
|
||||
console.log("活动信息", activity.value); |
|
||||
} catch (error) { |
|
||||
console.log("请求失败", error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
}; |
|
||||
getActivity(); |
|
||||
|
|
||||
// 这是查询货币的接口 |
|
||||
const currency = ref([]); |
|
||||
const getCurrency = async function () { |
|
||||
try { |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post("http://192.168.8.93:10010/rates/search", {}); |
|
||||
|
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log("货币请求成功", result); |
|
||||
// 存储表格数据 |
|
||||
currency.value = result.data; |
|
||||
console.log("tableData", currency.value); |
|
||||
// 在这里可以根据需求进一步处理成功后的逻辑,比如更新UI显示成功消息等 |
|
||||
} catch (error) { |
|
||||
console.log("请求失败", error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
}; |
|
||||
getCurrency(); |
|
||||
|
|
||||
// 这是添加上传图片的接口 |
|
||||
const imageUrl = ref(""); |
|
||||
|
|
||||
// 上传图片成功的回调函数 |
|
||||
const handleAvatarSuccess = (response, uploadFile) => { |
|
||||
imageUrl.value = URL.createObjectURL(uploadFile.raw); |
|
||||
console.log("图片上传成功", response, uploadFile); |
|
||||
addRecharge.value.rechargeVoucher = `http://192.168.8.93:10010/upload/${response.data}`; |
|
||||
console.log("图片名称", addRecharge.value.rechargeVoucher); |
|
||||
}; |
|
||||
// 上传图片之前的校验函数 |
|
||||
const beforeAvatarUpload = (rawFile) => { |
|
||||
if (rawFile.type !== "image/jpeg" && rawFile.type !== "image/png") { |
|
||||
ElMessage.error("图片格式必须为jpg或png!"); |
|
||||
return false; |
|
||||
} else if (rawFile.size / 1024 / 1024 > 2) { |
|
||||
ElMessage.error("Avatar picture size can not exceed 2MB!"); |
|
||||
return false; |
|
||||
} |
|
||||
return true; |
|
||||
}; |
|
||||
|
|
||||
//充值方式条目 |
|
||||
const options = [ |
|
||||
{ |
|
||||
value: "现金充值", |
|
||||
label: "现金充值", |
|
||||
}, |
|
||||
{ |
|
||||
value: "龙鳞卡", |
|
||||
label: "龙鳞卡", |
|
||||
}, |
|
||||
{ |
|
||||
value: "弘粉卡", |
|
||||
label: "弘粉卡", |
|
||||
}, |
|
||||
]; |
|
||||
|
|
||||
const calculatedFreeGold = computed(() => { |
|
||||
if (!addRecharge.value.activityId == 0) { |
|
||||
const paidGold = Number(addRecharge.value.paidGold) || 0; |
|
||||
const activityId = Number(addRecharge.value.activityId) || 1; // 避免除以0 |
|
||||
return Math.ceil(paidGold / activityId); |
|
||||
} |
|
||||
}); |
|
||||
|
|
||||
const calculatedRechargeGold = computed(() => { |
|
||||
if (!addRecharge.value.rateId == 0) { |
|
||||
const paidGold = Number(addRecharge.value.paidGold) || 0; |
|
||||
const rateId = Number(addRecharge.value.rateId) || 1; // 避免乘以0 |
|
||||
return Math.ceil(paidGold * rateId); |
|
||||
} |
|
||||
}); |
|
||||
|
|
||||
watch(calculatedFreeGold, (newVal) => { |
|
||||
addRecharge.value.freeGold = Number(newVal); |
|
||||
}); |
|
||||
|
|
||||
watch(calculatedRechargeGold, (newVal) => { |
|
||||
addRecharge.value.rechargeGold = Number(newVal); |
|
||||
}); |
|
||||
|
|
||||
//这是重置重置表单的方法 |
|
||||
const deleteRecharge = function () { |
|
||||
addRecharge.value = { |
|
||||
adminId: adminData.value.adminId, |
|
||||
area: adminData.value.area, |
|
||||
rechargeVoucher: "", |
|
||||
rechargeWay: "客服充值", |
|
||||
freeGold: Number(0), |
|
||||
rechargeGold: 0, |
|
||||
paidGold: "", |
|
||||
}; |
|
||||
imageUrl.value = ""; |
|
||||
}; |
|
||||
</script> |
|
||||
|
|
||||
<template> |
|
||||
<div>新增充值</div> |
|
||||
|
|
||||
<el-form |
|
||||
:model="addRecharge" |
|
||||
ref="Ref" |
|
||||
:rules="rules" |
|
||||
label-width="auto" |
|
||||
style="max-width: 600px" |
|
||||
class="add-form" |
|
||||
> |
|
||||
<el-form-item prop="jwcode" label="精网号"> |
|
||||
<el-input v-model="addRecharge.jwcode" style="width: 220px" /> |
|
||||
<el-button |
|
||||
type="primary" |
|
||||
@click="getUser(addRecharge.jwcode)" |
|
||||
style="margin-left: 20px" |
|
||||
>查询</el-button |
|
||||
> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="activityId" label="活动名称"> |
|
||||
<el-select |
|
||||
v-model="addRecharge.activityId" |
|
||||
placeholder="请选择" |
|
||||
style="width: 300px" |
|
||||
> |
|
||||
<el-option |
|
||||
v-for="item in activity" |
|
||||
:key="item.value" |
|
||||
:label="item.activityName" |
|
||||
:value="item.activityId" |
|
||||
/> |
|
||||
</el-select> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="paidGold" label="充值金币"> |
|
||||
<el-input v-model="addRecharge.paidGold" style="width: 100px" /> |
|
||||
<p style="margin-right: 20px">个</p> |
|
||||
<p>免费金币</p> |
|
||||
<el-input v-model="addRecharge.freeGold" disabled style="width: 100px" /> |
|
||||
<p>个</p> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="rechargeGold" label="充值金额"> |
|
||||
<el-select |
|
||||
prop="rechargeGold" |
|
||||
v-model="addRecharge.rateId" |
|
||||
placeholder="货币名称" |
|
||||
style="width: 95px; margin-right: 5px" |
|
||||
> |
|
||||
<el-option |
|
||||
v-for="item in currency" |
|
||||
:key="item.value" |
|
||||
:label="item.currency" |
|
||||
:value="item.exchangeRate" |
|
||||
/> |
|
||||
</el-select> |
|
||||
<el-input |
|
||||
disabled |
|
||||
v-model="addRecharge.rechargeGold" |
|
||||
style="width: 200px" |
|
||||
/> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="payWay" label="收款方式"> |
|
||||
<el-select |
|
||||
v-model="addRecharge.payWay" |
|
||||
placeholder="请选择" |
|
||||
style="width: 300px" |
|
||||
> |
|
||||
<el-option |
|
||||
v-for="item in options" |
|
||||
:key="item.value" |
|
||||
:label="item.label" |
|
||||
:value="item.value" |
|
||||
/> |
|
||||
</el-select> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="rechargeTime" label="交款时间"> |
|
||||
<el-date-picker |
|
||||
v-model="addRecharge.rechargeTime" |
|
||||
type="date" |
|
||||
style="width: 300px" |
|
||||
/> |
|
||||
</el-form-item> |
|
||||
<el-form-item |
|
||||
prop="rechargeVoucher" |
|
||||
label="交款凭证" |
|
||||
style="margin-bottom: 5px" |
|
||||
> |
|
||||
<el-upload |
|
||||
class="avatar-uploader" |
|
||||
action="http://192.168.8.93:10010/upload" |
|
||||
:show-file-list="false" |
|
||||
:on-success="handleAvatarSuccess" |
|
||||
:before-upload="beforeAvatarUpload" |
|
||||
> |
|
||||
<img v-if="imageUrl" :src="imageUrl" class="avatar" /> |
|
||||
<el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon> |
|
||||
</el-upload> |
|
||||
<p style="margin-left: 10px; color: rgb(177, 176, 176)"> |
|
||||
仅支持.jpg .png格式,文件≤1MB |
|
||||
</p> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="remark" label="备注"> |
|
||||
<el-input |
|
||||
v-model="addRecharge.remark" |
|
||||
style="width: 300px" |
|
||||
:rows="2" |
|
||||
maxlength="100" |
|
||||
show-word-limit |
|
||||
type="textarea" |
|
||||
/> |
|
||||
</el-form-item> |
|
||||
<el-form-item prop="submitter" label="提交人"> |
|
||||
<el-input |
|
||||
style="width: 300px" |
|
||||
:value="adminData.name" |
|
||||
disabled |
|
||||
placeholder="提交人姓名" |
|
||||
/> |
|
||||
</el-form-item> |
|
||||
<el-button @click="deleteRecharge" style="margin-left: 280px" |
|
||||
>重置</el-button |
|
||||
> |
|
||||
<el-button type="primary" @click="addBefore"> 提交 </el-button> |
|
||||
</el-form> |
|
||||
|
|
||||
<!-- 客户信息栏 --> |
|
||||
<el-card style="width: 700px; float: right" class="customer-info"> |
|
||||
<el-form |
|
||||
:model="user" |
|
||||
label-width="auto" |
|
||||
style="max-width: 600px" |
|
||||
label-position="left" |
|
||||
> |
|
||||
<el-text size="large" style="margin-left: 20px">客户信息</el-text> |
|
||||
<el-row style="margin-top: 20px"> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="姓名:"> |
|
||||
<p>{{ user.name }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="历史金币总数"> |
|
||||
<p>{{ user.totalRechargeGold }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="精网号"> |
|
||||
<p>{{ user.jwcode }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="当前金币总数"> |
|
||||
<p>{{ user.sumgold }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="首次充值日期"> |
|
||||
<p v-if="user.firstRechargeDate"> |
|
||||
{{ moment(user.firstRechargeDate).format("YYYY-MM-DD HH:mm:ss") }} |
|
||||
</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="充值次数"> |
|
||||
<p>{{ user.rechargeTimes }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="负责客服"> |
|
||||
<p>{{ adminData.name }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="消费次数"> |
|
||||
<p>{{ user.spendTimes }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="所属门店"> |
|
||||
<p>{{ adminData.area }}</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
<el-col :span="12"> |
|
||||
<el-form-item label="待审核"> |
|
||||
<p> |
|
||||
{{ user.A }} |
|
||||
</p> |
|
||||
</el-form-item> |
|
||||
</el-col> |
|
||||
</el-row> |
|
||||
</el-form> |
|
||||
</el-card> |
|
||||
</template> |
|
||||
|
|
||||
<style scoped> |
|
||||
p { |
|
||||
margin: 0px; |
|
||||
} |
|
||||
.el-form-item { |
|
||||
margin-left: 50px; |
|
||||
} |
|
||||
|
|
||||
/* 上传图片的格式 */ |
|
||||
.avatar-uploader .avatar { |
|
||||
width: 50px; |
|
||||
height: 50px; |
|
||||
display: block; |
|
||||
} |
|
||||
</style> |
|
||||
|
|
||||
<style> |
|
||||
.avatar-uploader .el-upload { |
|
||||
border: 1px dashed var(--el-border-color); |
|
||||
border-radius: 6px; |
|
||||
cursor: pointer; |
|
||||
position: relative; |
|
||||
overflow: hidden; |
|
||||
transition: var(--el-transition-duration-fast); |
|
||||
} |
|
||||
|
|
||||
.avatar-uploader .el-upload:hover { |
|
||||
border-color: var(--el-color-primary); |
|
||||
} |
|
||||
|
|
||||
.el-icon.avatar-uploader-icon { |
|
||||
font-size: 28px; |
|
||||
color: #8c939d; |
|
||||
width: 50px; |
|
||||
height: 50px; |
|
||||
text-align: center; |
|
||||
} |
|
||||
.add-form { |
|
||||
margin-top: 50px; |
|
||||
max-width: 50%; |
|
||||
float: left; |
|
||||
} |
|
||||
.customer-info { |
|
||||
max-width: 50%; |
|
||||
} |
|
||||
</style> |
|
@ -1,497 +0,0 @@ |
|||||
<script setup> |
|
||||
import { ref, onMounted, reactive, computed } from "vue"; |
|
||||
import ElementPlus from "element-plus"; |
|
||||
import { ElMessage, ElMessageBox } from 'element-plus' |
|
||||
import { AiFillRead } from "vue-icons-plus/ai"; |
|
||||
import axios from 'axios'; |
|
||||
import moment from 'moment'; |
|
||||
import API from "../../api/index.js"; |
|
||||
// 变量 |
|
||||
// 用户对象假的 |
|
||||
const admin = ref({ |
|
||||
adminId: 1, |
|
||||
name: '赵刚', |
|
||||
area: '中国' |
|
||||
}) |
|
||||
|
|
||||
// 充值明细表格 |
|
||||
const tableData = ref([]); |
|
||||
// 搜索=========================================== |
|
||||
// 搜索recharge |
|
||||
const rechargeVo = ref({ |
|
||||
adminId: admin.value.adminId, |
|
||||
}); |
|
||||
// 搜索对象 |
|
||||
const getObj = ref({ |
|
||||
pageNum: 1, |
|
||||
pageSize: 5, |
|
||||
}); |
|
||||
//分页总条目 |
|
||||
const total = ref(100); |
|
||||
// 搜索对象时间 |
|
||||
const getTime = ref([]); |
|
||||
// 搜索活动列表 |
|
||||
const activity = ref([]); |
|
||||
// 所有信息 |
|
||||
const allData = ref([]); |
|
||||
// 搜索地区列表 |
|
||||
const area = ref([]); |
|
||||
//标签页默认高亮选项 |
|
||||
const activeName = ref('all') |
|
||||
// 支付方式选项 |
|
||||
const payWay = [ |
|
||||
{ |
|
||||
value: '微信', |
|
||||
label: '微信', |
|
||||
}, |
|
||||
{ |
|
||||
value: '支付宝', |
|
||||
label: '支付宝', |
|
||||
}, |
|
||||
{ |
|
||||
value: '银联', |
|
||||
label: '银联', |
|
||||
}, |
|
||||
{ |
|
||||
value: '信用卡', |
|
||||
label: '信用卡', |
|
||||
}, |
|
||||
{ |
|
||||
value: '借记卡', |
|
||||
label: '借记卡', |
|
||||
}, |
|
||||
{ |
|
||||
value: '现金充值', |
|
||||
label: '现金充值', |
|
||||
}, |
|
||||
] |
|
||||
// 删除========================================================== |
|
||||
// 删除对象 |
|
||||
const delObj = ref({}); |
|
||||
|
|
||||
//表格高度 |
|
||||
const tableHeight = computed(function () { |
|
||||
return (getObj.value.pageSize + 2) * 60 + 'px'; |
|
||||
}); |
|
||||
|
|
||||
// 方法 |
|
||||
// 搜索=========================================================================== |
|
||||
// 搜索方法 |
|
||||
const get = async function (val) { |
|
||||
try { |
|
||||
// 搜索参数页码赋值 |
|
||||
if (typeof val === 'number') { |
|
||||
getObj.value.pageNum = val; |
|
||||
} |
|
||||
// 搜索参数时间赋值 |
|
||||
if (getTime.value != null) { |
|
||||
if (getTime.value.startDate != '' && getTime.value.endDate != '') { |
|
||||
rechargeVo.value.startDate = getTime.value[0]; |
|
||||
rechargeVo.value.endDate = getTime.value[1]; |
|
||||
} |
|
||||
} else { |
|
||||
rechargeVo.value.startDate = ''; |
|
||||
rechargeVo.value.endDate = ''; |
|
||||
} |
|
||||
console.log('搜索参数', getObj.value); |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post('http://192.168.8.93:10010/recharge/recharge', { ...getObj.value, rechargeVo: { ...rechargeVo.value } }); |
|
||||
|
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log('请求成功', result); |
|
||||
// 存储表格数据 |
|
||||
tableData.value = result.data.list; |
|
||||
console.log('tableData', tableData.value); |
|
||||
// 存储分页总数 |
|
||||
total.value = result.data.total; |
|
||||
console.log('total', total.value); |
|
||||
} catch (error) { |
|
||||
console.log('请求失败', error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 重置 |
|
||||
const reset = function () { |
|
||||
rechargeVo.value.activityId = ''; |
|
||||
rechargeVo.value.payWay = ''; |
|
||||
rechargeVo.value.area = ''; |
|
||||
rechargeVo.value.startDate = ''; |
|
||||
rechargeVo.value.endDate = ''; |
|
||||
getTime.value = {}; |
|
||||
} |
|
||||
// 今天 |
|
||||
const getToday = function () { |
|
||||
const today = new Date(); |
|
||||
const startDate = new Date(today.getFullYear(), today.getMonth(), today.getDate()); |
|
||||
const endDate = new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1); |
|
||||
getTime.value = [startDate, endDate]; |
|
||||
console.log('getTime', getTime.value); |
|
||||
get(); |
|
||||
} |
|
||||
// 昨天 |
|
||||
const getYesterday = function () { |
|
||||
const yesterday = new Date(); |
|
||||
yesterday.setDate(yesterday.getDate() - 1); |
|
||||
const startDate = new Date(yesterday.getFullYear(), yesterday.getMonth(), yesterday.getDate()); |
|
||||
const endDate = new Date(yesterday.getFullYear(), yesterday.getMonth(), yesterday.getDate() + 1); |
|
||||
getTime.value = [startDate, endDate]; |
|
||||
console.log('getTime', getTime.value); |
|
||||
get(); |
|
||||
} |
|
||||
// 近7天 |
|
||||
const get7Days = function () { |
|
||||
const today = new Date(); |
|
||||
const startDate = new Date(today.getFullYear(), today.getMonth(), today.getDate() - 6); |
|
||||
const endDate = new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1); |
|
||||
getTime.value = [startDate, endDate]; |
|
||||
console.log('getTime', getTime.value); |
|
||||
get(); |
|
||||
} |
|
||||
//全部充值明细 |
|
||||
const adminAll = function () { |
|
||||
console.log('adminAll'); |
|
||||
rechargeVo.value.status = ''; |
|
||||
get(); |
|
||||
} |
|
||||
//待审核充值明细 |
|
||||
const adminWait = function () { |
|
||||
rechargeVo.value.status = 0; |
|
||||
get(); |
|
||||
console.log('adminWait'); |
|
||||
} |
|
||||
//已通过充值明细 |
|
||||
const adminPass = function () { |
|
||||
rechargeVo.value.status = 1; |
|
||||
get(); |
|
||||
console.log('adminPass'); |
|
||||
} |
|
||||
//已驳回充值明细 |
|
||||
const adminReject = function () { |
|
||||
rechargeVo.value.status = 2; |
|
||||
get(); |
|
||||
console.log('adminReject'); |
|
||||
} |
|
||||
//点击标签页 |
|
||||
const handleClick = function (tab, event) { |
|
||||
if (tab.props.name === 'all') { |
|
||||
adminAll(); |
|
||||
} else if (tab.props.name === 'wait') { |
|
||||
adminWait(); |
|
||||
} else if (tab.props.name === 'pass') { |
|
||||
adminPass(); |
|
||||
} else if (tab.props.name === 'reject') { |
|
||||
adminReject(); |
|
||||
} |
|
||||
} |
|
||||
// 获取活动名称 |
|
||||
const getActivity = async function () { |
|
||||
try { |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post('http://192.168.8.93:10010/recharge/activity/select', {}); |
|
||||
|
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log('请求成功', result); |
|
||||
// 存储表格数据 |
|
||||
activity.value = result.data; |
|
||||
console.log('activity', activity.value); |
|
||||
} catch (error) { |
|
||||
console.log('请求失败', error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
} |
|
||||
// 获取地区 |
|
||||
const getArea = async function () { |
|
||||
try { |
|
||||
// 发送POST请求 |
|
||||
const result = await API.post('http://192.168.8.93:10010/recharge/recharge', {}); |
|
||||
// 将响应结果存储到响应式数据中 |
|
||||
console.log('请求成功', result); |
|
||||
// 存储全部数据 |
|
||||
allData.value = result.data; |
|
||||
console.log('allData', allData.value); |
|
||||
// 分离并去重地区列表 |
|
||||
area.value = [...new Set(allData.value.map(item => item.area))] |
|
||||
console.log('地区', area.value); |
|
||||
} catch (error) { |
|
||||
console.log('请求失败', error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
|
|
||||
} |
|
||||
// 删除================================= |
|
||||
// 点击删除按钮 |
|
||||
const del = function (row) { |
|
||||
delObj.value.rechargeId = row.rechargeId; |
|
||||
console.log('delObj1', delObj.value); |
|
||||
} |
|
||||
// 确认删除按钮 |
|
||||
const delConfirm = async function () { |
|
||||
try { |
|
||||
console.log('delObj2', delObj.value); |
|
||||
const result = await API.post('http://192.168.8.93:10010/recharge/recharge/edit', delObj.value); |
|
||||
console.log('删除成功', result); |
|
||||
// 刷新表格数据 |
|
||||
get(); |
|
||||
} catch (error) { |
|
||||
console.log('请求失败', error); |
|
||||
// 在这里可以处理错误逻辑,比如显示错误提示等 |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 验证跳转输入框的数字是否合法 |
|
||||
const checkNumber = function () { |
|
||||
if (typeof parseInt(getObj.value.pageNum) === 'number') { |
|
||||
console.log('总共有多少页' + Math.ceil(total.value / getObj.value.pageSize)); |
|
||||
if ((getObj.value.pageNum > 0) && (getObj.value.pageNum <= Math.ceil(total.value / getObj.value.pageSize))) { |
|
||||
console.log('输入的数字合法'); |
|
||||
get(); |
|
||||
} else { |
|
||||
//提示 |
|
||||
ElMessage({ |
|
||||
type: 'error', |
|
||||
message: '请检查输入内容', |
|
||||
}) |
|
||||
} |
|
||||
} else { |
|
||||
//提示 |
|
||||
ElMessage({ |
|
||||
type: 'error', |
|
||||
message: '请检查输入内容', |
|
||||
}) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 挂载 |
|
||||
onMounted(async function () { |
|
||||
await get(); |
|
||||
getActivity(); |
|
||||
await getArea(); |
|
||||
}) |
|
||||
|
|
||||
|
|
||||
|
|
||||
</script> |
|
||||
|
|
||||
<template> |
|
||||
<el-row> |
|
||||
<el-col> |
|
||||
<el-card style="margin-bottom: 20px"> |
|
||||
<el-row style="margin-bottom: 10px;"> |
|
||||
<el-col :span="8"> |
|
||||
<div class="head-card-element"> |
|
||||
<el-text class="mx-1" size="large">活动名称:</el-text> |
|
||||
<el-select v-model="rechargeVo.activityId" placeholder="请选择活动名称" size="large" |
|
||||
style="width: 240px" clearable> |
|
||||
<el-option v-for="item in activity" :key="item.activityId" :label="item.activityName" |
|
||||
:value="item.activityId" /> |
|
||||
</el-select> |
|
||||
</div> |
|
||||
</el-col> |
|
||||
<el-col :span="8"> |
|
||||
<div class="head-card-element"> |
|
||||
<el-text class="mx-1" size="large">支付方式:</el-text> |
|
||||
<el-select v-model="rechargeVo.payWay" placeholder="请选择支付方式" size="large" |
|
||||
style="width: 240px" clearable> |
|
||||
<el-option v-for="item in payWay" :key="item.value" :label="item.label" |
|
||||
:value="item.value" /> |
|
||||
</el-select> |
|
||||
</div> |
|
||||
|
|
||||
</el-col> |
|
||||
<el-col :span="8"> |
|
||||
<div class="head-card-element"> |
|
||||
<el-text class="mx-1" size="large">所属地区:</el-text> |
|
||||
<el-select v-model="rechargeVo.area" placeholder="请选择所属地区" size="large" |
|
||||
style="width: 240px" clearable> |
|
||||
<el-option v-for="item in area" :key="item" :label="item" :value="item" /> |
|
||||
</el-select> |
|
||||
</div> |
|
||||
</el-col> |
|
||||
</el-row> |
|
||||
<el-row> |
|
||||
<el-col :span="21"> |
|
||||
<div class="head-card-element"> |
|
||||
<el-text class="mx-1" size="large">充值时间:</el-text> |
|
||||
<el-date-picker v-model="getTime" type="datetimerange" range-separator="至" |
|
||||
start-placeholder="起始时间" end-placeholder="结束时间" /> |
|
||||
<el-button style="margin-left: 10px;" @click="getToday()">今</el-button> |
|
||||
<el-button @click="getYesterday()">昨</el-button> |
|
||||
<el-button @click="get7Days()">近7天</el-button> |
|
||||
</div> |
|
||||
</el-col> |
|
||||
<el-col :span="3"> |
|
||||
<div class="head-card-btn"> |
|
||||
<el-button @click="reset()">重置</el-button> |
|
||||
<el-button type="primary" @click="get()">查询</el-button> |
|
||||
</div> |
|
||||
</el-col> |
|
||||
</el-row> |
|
||||
</el-card> |
|
||||
</el-col> |
|
||||
</el-row> |
|
||||
<el-row> |
|
||||
<el-col> |
|
||||
<el-card> |
|
||||
<el-tabs v-model="activeName" type="card" class="demo-tabs" @tab-click="handleClick"> |
|
||||
<el-tab-pane label="全部" name="all"></el-tab-pane> |
|
||||
<el-tab-pane label="待审核" name="wait"></el-tab-pane> |
|
||||
<el-tab-pane label="已通过" name="pass"></el-tab-pane> |
|
||||
<el-tab-pane label="已驳回" name="reject"></el-tab-pane> |
|
||||
</el-tabs> |
|
||||
<div> |
|
||||
<el-table :data="tableData" :height="tableHeight" style="width: 100%"> |
|
||||
<el-table-column prop="username" label="姓名" width="100px" /> |
|
||||
<el-table-column prop="jwcode" label="精网号" width="150px" /> |
|
||||
<el-table-column prop="area" label="所属地区" width="100px" /> |
|
||||
<el-table-column prop="activityName" label="活动名称" width="150px" /> |
|
||||
<el-table-column prop="rechargeGold" label="充值金额" width="100px" /> |
|
||||
<el-table-column prop="paidGold" label="充值金币" width="100px" /> |
|
||||
<el-table-column prop="freeGold" label="免费金币" width="100px" /> |
|
||||
<el-table-column prop="remark" label="备注" width="200px" show-overflow-tooltip /> |
|
||||
<el-table-column prop="payWay" label="支付方式" width="100px" /> |
|
||||
<el-table-column prop="rechargeVoucher" label="支付凭证" width="150px"> |
|
||||
<template #default="scope"> |
|
||||
<el-image :preview-src-list="[scope.row.rechargeVoucher]" preview-teleported="true" :src="scope.row.rechargeVoucher" alt="凭证" style="width: 50px; height: 50px" /> |
|
||||
</template> |
|
||||
</el-table-column> |
|
||||
<el-table-column prop="name" label="提交人" width="100px" /> |
|
||||
<el-table-column prop="status" label="状态" width="100px"> |
|
||||
<template #default="scope"> |
|
||||
<span v-if="scope.row.status === 1"> |
|
||||
<div class="status"> |
|
||||
<span class="green-dot"></span> |
|
||||
<span>已通过</span> |
|
||||
</div> |
|
||||
</span> |
|
||||
<span v-if="scope.row.status === 0"> |
|
||||
<div class="status"> |
|
||||
<span class="grey-dot"></span> |
|
||||
<span>待审核</span> |
|
||||
</div> |
|
||||
</span> |
|
||||
<span v-if="scope.row.status === 2"> |
|
||||
<div class="status"> |
|
||||
<span class="red-dot"></span> |
|
||||
<span>已驳回</span> |
|
||||
</div> |
|
||||
</span> |
|
||||
</template> |
|
||||
</el-table-column> |
|
||||
<el-table-column prop="reson" label="驳回理由" width="200px" show-overflow-tooltip /> |
|
||||
<el-table-column prop="rechargeTime" label="交款时间" width="200px"> |
|
||||
<template #default="scope"> |
|
||||
{{ moment(scope.row.rechargeTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
||||
</template> |
|
||||
</el-table-column> |
|
||||
<el-table-column prop="createTime" label="提交时间" width="200px" /> |
|
||||
<el-table-column fixed="right" prop="operation" label="操作" width="150px"> |
|
||||
<template #default="scope"> |
|
||||
<el-popconfirm title="确定将此条活动删除吗?" @confirm="delConfirm"> |
|
||||
<template #reference> |
|
||||
<el-button type="primary" text @click="del(scope.row)"> |
|
||||
删除 |
|
||||
</el-button> |
|
||||
</template> |
|
||||
<template #actions="{ confirm, cancel }"> |
|
||||
<el-button size="small" @click="cancel">取消</el-button> |
|
||||
<el-button type="primary" size="small" @click="confirm"> |
|
||||
确定 |
|
||||
</el-button> |
|
||||
</template> |
|
||||
</el-popconfirm> |
|
||||
</template> |
|
||||
|
|
||||
</el-table-column> |
|
||||
</el-table> |
|
||||
</div> |
|
||||
|
|
||||
<!-- 分页 --> |
|
||||
<div class="pagination"> |
|
||||
<el-pagination background :page-size="getObj.pageSize" layout="slot" :total="total"> |
|
||||
<div>共{{ total }}条,每页 </div> |
|
||||
<el-select v-model="getObj.pageSize" class="page-size" @change="get()" style="width: 80px"> |
|
||||
<el-option v-for="item in [5, 6, 7, 8, 9, 10]" :key="item" :label="item" |
|
||||
:value="item"></el-option> |
|
||||
</el-select> |
|
||||
<div> 条</div> |
|
||||
</el-pagination> |
|
||||
<el-pagination background layout="prev, pager, next,slot" :page-size="getObj.pageSize" |
|
||||
:total="total" :current-page="getObj.pageNum" @current-change="get"> |
|
||||
<div>跳至</div> |
|
||||
<el-input v-model="getObj.pageNum" style="width: 40px;" @change="checkNumber" /> |
|
||||
<div>页</div> |
|
||||
</el-pagination> |
|
||||
</div> |
|
||||
</el-card> |
|
||||
</el-col> |
|
||||
</el-row> |
|
||||
|
|
||||
<!-- 编辑弹窗 --> |
|
||||
<el-dialog v-model="editRechargeVisible" title="新增活动" width="500" :before-close="closeEditRechargeVisible"> |
|
||||
<template #footer> |
|
||||
|
|
||||
<el-form :model="editObj" label-width="auto" style="max-width: 600px"> |
|
||||
|
|
||||
<el-form-item label="活动名称:"> |
|
||||
<el-input v-model="addObj.activityName" placeholder="请输入活动名称" style="width: 220px;" /> |
|
||||
</el-form-item> |
|
||||
|
|
||||
<el-form-item label="免费金币:"> |
|
||||
<el-radio-group v-model="addObj.freeGold"> |
|
||||
<el-radio value="0">无赠送</el-radio> |
|
||||
<el-radio value="1">有赠送</el-radio> |
|
||||
</el-radio-group> |
|
||||
</el-form-item> |
|
||||
|
|
||||
<el-form-item label="免费金币兑换比:"> |
|
||||
<el-input v-model="addObj.rechargeRatio" placeholder="请输入" style="width: 80px;" />:1 |
|
||||
<div style="color: grey;">(提示:当前规则每10新币可兑换1免费金币)</div> |
|
||||
</el-form-item> |
|
||||
|
|
||||
<el-form-item label="开始时间:"> |
|
||||
<el-time-picker v-model="addObj.startTime" /> |
|
||||
</el-form-item> |
|
||||
|
|
||||
<el-form-item label="结束时间:"> |
|
||||
<el-time-picker v-model="addObj.endTime" /> |
|
||||
</el-form-item> |
|
||||
|
|
||||
<el-form-item label="添加人:"> |
|
||||
<el-input v-model="addObj.adminName" disabled style="width: 220px;" /> |
|
||||
</el-form-item> |
|
||||
|
|
||||
</el-form> |
|
||||
|
|
||||
<div class="dialog-footer"> |
|
||||
<el-button @click="closeAddActivityVisible">取消</el-button> |
|
||||
<el-button type="primary" @click="closeAddActivityVisible"> |
|
||||
提交 |
|
||||
</el-button> |
|
||||
</div> |
|
||||
</template> |
|
||||
</el-dialog> |
|
||||
|
|
||||
</template> |
|
||||
|
|
||||
<style scoped> |
|
||||
.pagination { |
|
||||
display: flex; |
|
||||
} |
|
||||
|
|
||||
.status { |
|
||||
display: flex; |
|
||||
} |
|
||||
|
|
||||
.head-card { |
|
||||
display: flex; |
|
||||
} |
|
||||
|
|
||||
.head-card-element { |
|
||||
margin-right: 20px; |
|
||||
} |
|
||||
|
|
||||
.head-card-btn { |
|
||||
margin-left: auto; |
|
||||
} |
|
||||
</style> |
|
1131
vue/gold-system/vue/gold-system/src/views/workspace/index.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save
Reference in new issue