合并代码

This commit is contained in:
sx 2025-01-05 00:13:29 +08:00
parent 538d243657
commit acf71945d4
9 changed files with 1103 additions and 739 deletions

View File

@ -58,7 +58,7 @@ const api = {
*/
getConfig() {
return util.request({
url: '/coreplay/configinfo/list',
url: '/coreplay/configinfo/getConf',
method: 'GET',
})
},

View File

@ -72,18 +72,6 @@ const mine = {
})
},
/**
* 获取待释放列表
* @param {Object} param
*/
releasedList(param) {
return util.request({
url: '/user/released/list',
query: param.query,
method: 'GET',
})
},
/**
* 根据用户账号查询用户id
* @param {Object} param

View File

@ -5,7 +5,7 @@ const config = {
host: 'http://localhost:5173',
// #endif
// #ifndef H5
host: 'http://192.168.1.235:8080',
host: 'http://5310d716.r22.cpolar.top',
// host: 'http://192.168.1.236:8080',
// #endif
// 上传文件二级路径

View File

@ -1583,7 +1583,7 @@ const store = createStore({
});
const config = {
// 接口域名
host: "http://192.168.1.235:8080",
host: "http://5310d716.r22.cpolar.top",
// host: 'http://192.168.1.236:8080',
// 上传文件二级路径
uploadFilePath: "/homecommon/file/preview?fileName=",
@ -1727,17 +1727,6 @@ const mine = {
method: "GET"
});
},
/**
* 获取待释放列表
* @param {Object} param
*/
releasedList(param) {
return util$1.request({
url: "/user/released/list",
query: param.query,
method: "GET"
});
},
/**
* 根据用户账号查询用户id
* @param {Object} param
@ -1756,7 +1745,18 @@ const mine = {
setSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/setSecondLevelCipher",
body: param.body,
data: param.data,
method: "POST"
});
},
/**
* 验证二级密码
* @param {Object} param
*/
checkSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/checkSecondLevelCipher",
data: param.data,
method: "POST"
});
}
@ -2581,7 +2581,7 @@ const api = {
*/
getConfig() {
return util$1.request({
url: "/coreplay/configinfo/list",
url: "/coreplay/configinfo/getConf",
method: "GET"
});
}

File diff suppressed because it is too large Load Diff

View File

@ -160,7 +160,8 @@
opacity: 0.7;
}
.payee .inputBox {
width: 6.25rem;
width: 3.75rem;
box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
}
.payee .first {
width: 1.5625rem;

View File

@ -1708,7 +1708,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
});
var config = {
// 接口域名
host: "http://192.168.1.235:8080",
host: "http://5310d716.r22.cpolar.top",
// host: 'http://192.168.1.236:8080',
// 上传文件二级路径
uploadFilePath: "/homecommon/file/preview?fileName=",
@ -1852,17 +1852,6 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
method: "GET"
});
},
/**
* 获取待释放列表
* @param {Object} param
*/
releasedList(param) {
return util$1.request({
url: "/user/released/list",
query: param.query,
method: "GET"
});
},
/**
* 根据用户账号查询用户id
* @param {Object} param
@ -1881,7 +1870,18 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
setSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/setSecondLevelCipher",
body: param.body,
data: param.data,
method: "POST"
});
},
/**
* 验证二级密码
* @param {Object} param
*/
checkSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/checkSecondLevelCipher",
data: param.data,
method: "POST"
});
}
@ -2706,7 +2706,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
*/
getConfig() {
return util$1.request({
url: "/coreplay/configinfo/list",
url: "/coreplay/configinfo/getConf",
method: "GET"
});
}

View File

@ -1704,7 +1704,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
});
var config = {
// 接口域名
host: "http://192.168.1.235:8080",
host: "http://5310d716.r22.cpolar.top",
// host: 'http://192.168.1.236:8080',
// 上传文件二级路径
uploadFilePath: "/homecommon/file/preview?fileName=",
@ -1848,17 +1848,6 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
method: "GET"
});
},
/**
* 获取待释放列表
* @param {Object} param
*/
releasedList(param) {
return util$1.request({
url: "/user/released/list",
query: param.query,
method: "GET"
});
},
/**
* 根据用户账号查询用户id
* @param {Object} param
@ -1877,7 +1866,18 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
setSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/setSecondLevelCipher",
body: param.body,
data: param.data,
method: "POST"
});
},
/**
* 验证二级密码
* @param {Object} param
*/
checkSecondLevelCipher(param) {
return util$1.request({
url: "/user/user/checkSecondLevelCipher",
data: param.data,
method: "POST"
});
}
@ -2702,7 +2702,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
*/
getConfig() {
return util$1.request({
url: "/coreplay/configinfo/list",
url: "/coreplay/configinfo/getConf",
method: "GET"
});
}

View File

@ -0,0 +1,99 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.page-total[data-v-3f1dc4b3] {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #f6f6f6;
}
.key-list[data-v-3f1dc4b3] {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 1% 3%;
height: 90%;
margin-top: 0.625rem;
}
.key-list .list[data-v-3f1dc4b3] {
display: flex;
align-items: center;
justify-content: center;
width: 32%;
height: 2.875rem;
background-color: #FFFFFF;
border-radius: 0.3125rem;
box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1);
margin-right: 1.7%;
margin-bottom: 0.5rem;
}
.key-list .list uni-text[data-v-3f1dc4b3] {
font-size: 1.1875rem;
font-weight: bold;
color: #222222;
}
.key-list .list[data-v-3f1dc4b3]:nth-child(3n) {
margin-right: 0;
}
.key-list .special[data-v-3f1dc4b3] {
background-color: #f6f6f6;
box-shadow: none;
}
.key-list .special uni-text[data-v-3f1dc4b3] {
color: #959595;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.pwd .item {
margin: 0 0.3125rem;
width: 2.1875rem;
height: 2.5rem;
background-color: #f4f4f4;
border-radius: 0.3125rem;
}