commit
0546388916
@ -22,6 +22,7 @@ import org.springframework.web.multipart.MultipartFile;
|
|||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.net.URLDecoder;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -46,12 +47,18 @@ public class CommonController {
|
|||||||
* @param delete 是否删除
|
* @param delete 是否删除
|
||||||
*/
|
*/
|
||||||
@GetMapping("common/download")
|
@GetMapping("common/download")
|
||||||
public void fileDownload(String fileName, Boolean delete, HttpServletResponse response, HttpServletRequest request) {
|
public void fileDownload(String fileName, Boolean delete, String downFileName,HttpServletResponse response, HttpServletRequest request) {
|
||||||
try {
|
try {
|
||||||
|
if(StringUtils.isEmpty(fileName)){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//解码
|
||||||
|
fileName = URLDecoder.decode(fileName, "UTF-8");
|
||||||
|
downFileName = StringUtils.isEmpty(downFileName) ? null : URLDecoder.decode(downFileName, "UTF-8");
|
||||||
if (!FileUtils.isValidFilename(fileName)) {
|
if (!FileUtils.isValidFilename(fileName)) {
|
||||||
throw new Exception(StringUtils.format("文件名称({})非法,不允许下载。 ", fileName));
|
throw new Exception(StringUtils.format("文件名称({})非法,不允许下载。 ", fileName));
|
||||||
}
|
}
|
||||||
String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
|
String realFileName = (downFileName != null && downFileName.length() <= 200) ? downFileName : System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
|
||||||
String filePath = RuoYiConfig.getDownloadPath() + fileName;
|
String filePath = RuoYiConfig.getDownloadPath() + fileName;
|
||||||
|
|
||||||
response.setCharacterEncoding("utf-8");
|
response.setCharacterEncoding("utf-8");
|
||||||
|
@ -38,6 +38,8 @@ public class SysCustomerHealthyServiceImpl implements ISysCustomerHealthyService
|
|||||||
@Autowired
|
@Autowired
|
||||||
private ISysCustomerService sysCustomerService;
|
private ISysCustomerService sysCustomerService;
|
||||||
|
|
||||||
|
public static final String reportDownFileNameFormat = "%s超重%s斤%s";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询客户健康
|
* 查询客户健康
|
||||||
*
|
*
|
||||||
@ -164,8 +166,10 @@ public class SysCustomerHealthyServiceImpl implements ISysCustomerHealthyService
|
|||||||
//查询客户健康信息
|
//查询客户健康信息
|
||||||
SysCustomerHealthy sysCustomerHealthy = selectSysCustomerHealthyById(healthyDetailRequest.getId());
|
SysCustomerHealthy sysCustomerHealthy = selectSysCustomerHealthyById(healthyDetailRequest.getId());
|
||||||
if(sysCustomerHealthy != null){
|
if(sysCustomerHealthy != null){
|
||||||
ajaxResult = PdfUtils.generatePdfFile(templatePath, filePath, getReportData(sysCustomerHealthy, healthyDetailRequest));
|
Map<String, String> reportData = getReportData(sysCustomerHealthy, healthyDetailRequest);
|
||||||
|
ajaxResult = PdfUtils.generatePdfFile(templatePath, filePath, reportData);
|
||||||
ajaxResult.put("path", fileName);
|
ajaxResult.put("path", fileName);
|
||||||
|
ajaxResult.put("downReportFileName", reportData.get("downReportFileName")+".pdf");
|
||||||
}
|
}
|
||||||
return ajaxResult;
|
return ajaxResult;
|
||||||
}
|
}
|
||||||
@ -235,6 +239,11 @@ public class SysCustomerHealthyServiceImpl implements ISysCustomerHealthyService
|
|||||||
}
|
}
|
||||||
data.put("company","深圳胜唐体控有限公司");
|
data.put("company","深圳胜唐体控有限公司");
|
||||||
data.put("date", DateUtils.getDate());
|
data.put("date", DateUtils.getDate());
|
||||||
|
|
||||||
|
//文件下载时的名称,名字+超重几斤+病史体征
|
||||||
|
String sign = StringUtils.isEmpty(healthyDetailRequest.getPhysicalSigns()) ? "" : healthyDetailRequest.getPhysicalSigns().replace(",","").replace(",","").replace("/", "");
|
||||||
|
String downReportFileName = String.format(reportDownFileNameFormat, healthyDetailRequest.getName(), nutritionalCalories.getOverWeight() > 0 ? nutritionalCalories.getOverWeight().toString() : "0", sign);
|
||||||
|
data.put("downReportFileName", downReportFileName);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,14 +36,11 @@
|
|||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectSysWxUserInfoListNot" parameterType="SysWxUserInfo" resultMap="SysWxUserInfoResult">
|
<select id="selectSysWxUserInfoListNot" parameterType="SysWxUserInfo" resultMap="SysWxUserInfoResult">
|
||||||
select distinct user.openid, user.nick_name, user.appid, user.phone, user.avatar_url, user.sex, user.update_time from sys_wx_user_info user
|
select distinct wxuser.openid, wxuser.nick_name, wxuser.appid, wxuser.phone, wxuser.avatar_url, wxuser.sex, wxuser.update_time from sys_wx_user_info wxuser
|
||||||
right join sys_order
|
where (SELECT COUNT(wxlog.id) FROM sys_wx_user_log wxlog WHERE wxlog.openid = wxuser.openid) > 0
|
||||||
on user.phone = sys_order.phone
|
<if test="appid != null and appid != ''">and wxuser.appid = #{appid}</if>
|
||||||
<where>
|
<if test="openid != null and openid != ''">and wxuser.openid <![CDATA[ <> ]]> #{openid} </if>
|
||||||
<if test="appid != null and appid != ''">and appid = #{appid}</if>
|
order by wxuser.update_time desc
|
||||||
<if test="openid != null and openid != ''">and openid != #{openid}</if>
|
|
||||||
</where>
|
|
||||||
order by update_time desc
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectSysWxUserInfoById" parameterType="String" resultMap="SysWxUserInfoResult">
|
<select id="selectSysWxUserInfoById" parameterType="String" resultMap="SysWxUserInfoResult">
|
||||||
|
@ -171,7 +171,7 @@
|
|||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<!-- 根据openid或手机号查询对应打卡记录 -->
|
<!-- 根据openid和手机号查询对应打卡记录 -->
|
||||||
<select id="getWxLogInfoList" parameterType="SysWxUserLog" resultMap="WxLogInfo">
|
<select id="getWxLogInfoList" parameterType="SysWxUserLog" resultMap="WxLogInfo">
|
||||||
SELECT wxlog.weight,wxlog.log_time,wxlog.sleep_time, wxlog.wakeup_time,wxlog.defecation, wxlog.water, wxlog.insomnia,wxlog.sport,wxlog.diet
|
SELECT wxlog.weight,wxlog.log_time,wxlog.sleep_time, wxlog.wakeup_time,wxlog.defecation, wxlog.water, wxlog.insomnia,wxlog.sport,wxlog.diet
|
||||||
FROM sys_wx_user_log wxlog left join sys_wx_user_info wxinfo on wxinfo.openid = wxlog.openid
|
FROM sys_wx_user_log wxlog left join sys_wx_user_info wxinfo on wxinfo.openid = wxlog.openid
|
||||||
@ -183,4 +183,20 @@
|
|||||||
select id from sys_wx_user_log where to_days(log_time) = to_days(#{logTime}) and openid = #{openid} limit 1
|
select id from sys_wx_user_log where to_days(log_time) = to_days(#{logTime}) and openid = #{openid} limit 1
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<!-- 根据手机号和openid查询打卡连续天数,只查询前两条 -->
|
||||||
|
<select id="getContinuity" parameterType="SysWxUserLog" resultType="Map">
|
||||||
|
SELECT yearMonth,MIN(log_time) AS minLogTime,MAX(log_time) AS maxLogTime,COUNT(*) AS continuityDayCount FROM
|
||||||
|
(
|
||||||
|
SELECT log_time,yearMonth,(days-date_rank) AS day_cha FROM
|
||||||
|
(
|
||||||
|
SELECT *,row_number() over(PARTITION BY yearMonth ORDER BY log_time) date_rank FROM
|
||||||
|
(
|
||||||
|
SELECT log_time,CONCAT(YEAR(log_time),'-',MONTH(log_time)) AS yearMonth,DAY(log_time) AS days
|
||||||
|
FROM sys_wx_user_log wxlog left join sys_wx_user_info wxinfo on wxinfo.openid = wxlog.openid
|
||||||
|
where wxinfo.openid = #{openid} or wxinfo.phone = #{phone}
|
||||||
|
) AS s ORDER BY s.log_time DESC
|
||||||
|
) ss
|
||||||
|
) sss GROUP BY yearMonth,day_cha LIMIT 2
|
||||||
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -785,7 +785,8 @@ export default {
|
|||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
if (response.code == 200 && response.path != null) {
|
if (response.code == 200 && response.path != null) {
|
||||||
this.download(response.path);
|
//文件路径、获取下载文件名称
|
||||||
|
this.download(response.path, response.downReportFileName);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(function () {});
|
.catch(function () {});
|
||||||
|
@ -98,8 +98,8 @@ export function selectDictLabels(datas, value, separator) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 通用下载方法(导出Excel,下载之后删除)
|
// 通用下载方法(导出Excel,下载之后删除)
|
||||||
export function download(fileName) {
|
export function download(fileName, downFileName) {
|
||||||
window.location.href = baseURL + "/common/download?fileName=" + encodeURI(fileName) + "&delete=" + true;
|
window.location.href = baseURL + "/common/download?fileName=" + encodeURI(fileName) + "&delete=" + true + "&downFileName=" + (downFileName != undefined ? encodeURI(downFileName) : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 通用下载本地资源方法
|
// 通用下载本地资源方法
|
||||||
|
@ -1,8 +1,19 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form
|
||||||
|
:model="queryParams"
|
||||||
|
ref="queryForm"
|
||||||
|
:inline="true"
|
||||||
|
v-show="showSearch"
|
||||||
|
label-width="68px"
|
||||||
|
>
|
||||||
<el-form-item label="微信应用" prop="appid">
|
<el-form-item label="微信应用" prop="appid">
|
||||||
<el-select v-model="queryParams.appid" placeholder="请选择微信应用" clearable size="small">
|
<el-select
|
||||||
|
v-model="queryParams.appid"
|
||||||
|
placeholder="请选择微信应用"
|
||||||
|
clearable
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in appidOptions"
|
v-for="dict in appidOptions"
|
||||||
:key="dict.dictValue"
|
:key="dict.dictValue"
|
||||||
@ -20,9 +31,27 @@
|
|||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="营养师" prop="nutritionistId">
|
||||||
|
<el-select v-model="queryParams.nutritionistId" clearable filterable placeholder="请选择">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in nutritionistIdOptions.slice(1)"
|
||||||
|
:key="dict.dictValue"
|
||||||
|
:label="dict.dictLabel"
|
||||||
|
:value="parseInt(dict.dictValue)"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-button
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
type="cyan"
|
||||||
|
icon="el-icon-search"
|
||||||
|
size="mini"
|
||||||
|
@click="handleQuery"
|
||||||
|
>搜索</el-button
|
||||||
|
>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
||||||
|
>重置</el-button
|
||||||
|
>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
@ -37,84 +66,139 @@
|
|||||||
>新增
|
>新增
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-col>-->
|
</el-col>-->
|
||||||
<!-- <el-col :span="1.5">-->
|
<!-- <el-col :span="1.5">-->
|
||||||
<!-- <el-button-->
|
<!-- <el-button-->
|
||||||
<!-- type="success"-->
|
<!-- type="success"-->
|
||||||
<!-- icon="el-icon-edit"-->
|
<!-- icon="el-icon-edit"-->
|
||||||
<!-- size="mini"-->
|
<!-- size="mini"-->
|
||||||
<!-- :disabled="single"-->
|
<!-- :disabled="single"-->
|
||||||
<!-- @click="handleUpdate"-->
|
<!-- @click="handleUpdate"-->
|
||||||
<!-- v-hasPermi="['custom:wxUserLog:edit']"-->
|
<!-- v-hasPermi="['custom:wxUserLog:edit']"-->
|
||||||
<!-- >修改-->
|
<!-- >修改-->
|
||||||
<!-- </el-button>-->
|
<!-- </el-button>-->
|
||||||
<!-- </el-col>-->
|
<!-- </el-col>-->
|
||||||
<!-- <el-col :span="1.5">-->
|
<!-- <el-col :span="1.5">-->
|
||||||
<!-- <el-button-->
|
<!-- <el-button-->
|
||||||
<!-- type="danger"-->
|
<!-- type="danger"-->
|
||||||
<!-- icon="el-icon-delete"-->
|
<!-- icon="el-icon-delete"-->
|
||||||
<!-- size="mini"-->
|
<!-- size="mini"-->
|
||||||
<!-- :disabled="multiple"-->
|
<!-- :disabled="multiple"-->
|
||||||
<!-- @click="handleDelete"-->
|
<!-- @click="handleDelete"-->
|
||||||
<!-- v-hasPermi="['custom:wxUserLog:remove']"-->
|
<!-- v-hasPermi="['custom:wxUserLog:remove']"-->
|
||||||
<!-- >删除-->
|
<!-- >删除-->
|
||||||
<!-- </el-button>-->
|
<!-- </el-button>-->
|
||||||
<!-- </el-col>-->
|
<!-- </el-col>-->
|
||||||
<!-- <el-col :span="1.5">-->
|
<!-- <el-col :span="1.5">-->
|
||||||
<!-- <el-button-->
|
<!-- <el-button-->
|
||||||
<!-- type="warning"-->
|
<!-- type="warning"-->
|
||||||
<!-- icon="el-icon-download"-->
|
<!-- icon="el-icon-download"-->
|
||||||
<!-- size="mini"-->
|
<!-- size="mini"-->
|
||||||
<!-- @click="handleExport"-->
|
<!-- @click="handleExport"-->
|
||||||
<!-- v-hasPermi="['custom:wxUserLog:export']"-->
|
<!-- v-hasPermi="['custom:wxUserLog:export']"-->
|
||||||
<!-- >导出-->
|
<!-- >导出-->
|
||||||
<!-- </el-button>-->
|
<!-- </el-button>-->
|
||||||
<!-- </el-col>-->
|
<!-- </el-col>-->
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
<right-toolbar
|
||||||
|
:showSearch.sync="showSearch"
|
||||||
|
@queryTable="getList"
|
||||||
|
></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-table v-loading="loading" :data="wxUserLogList" @selection-change="handleSelectionChange">
|
<el-table
|
||||||
|
v-loading="loading"
|
||||||
|
:data="wxUserLogList"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
>
|
||||||
<el-table-column label="用户头像" align="center" prop="avatarUrl">
|
<el-table-column label="用户头像" align="center" prop="avatarUrl">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-image :src="scope.row.avatarUrl" style="width: 32px; height: 32px; border-radius: 50%"/>
|
<el-image
|
||||||
|
:src="scope.row.avatarUrl"
|
||||||
|
style="width: 32px; height: 32px; border-radius: 50%"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
||||||
<!-- <el-table-column label="微信openid" align="center" prop="openid" />-->
|
<!-- <el-table-column label="微信openid" align="center" prop="openid" />-->
|
||||||
<el-table-column label="当天体重" align="center" prop="weight">
|
<el-table-column label="当天体重" align="center" prop="weight">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{`${scope.row.weight} 斤` }}</span>
|
<span>{{ `${scope.row.weight} 斤` }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="微信应用" align="center" prop="appid" width="120" :formatter="appidFormat"/>
|
<el-table-column
|
||||||
<el-table-column label="姓名" align="center" prop="customerName"/>
|
label="微信应用"
|
||||||
|
align="center"
|
||||||
|
prop="appid"
|
||||||
|
width="120"
|
||||||
|
:formatter="appidFormat"
|
||||||
|
/>
|
||||||
|
<el-table-column label="姓名" align="center" prop="customerName" />
|
||||||
|
|
||||||
<el-table-column label="手机号" align="center" prop="phone" width="180"/>
|
<el-table-column label="手机号" align="center" prop="phone" width="180" />
|
||||||
<el-table-column label="营养师" align="center" prop="nutritionist"/>
|
<el-table-column label="营养师" align="center" prop="nutritionist" />
|
||||||
<el-table-column label="打卡日期" align="center" prop="logTime" width="120">
|
<el-table-column
|
||||||
|
label="打卡日期"
|
||||||
|
align="center"
|
||||||
|
prop="logTime"
|
||||||
|
width="120"
|
||||||
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ parseTime(scope.row.logTime, '{y}-{m}-{d}') }}</span>
|
<span>{{ parseTime(scope.row.logTime, "{y}-{m}-{d}") }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="睡觉时间" align="center" prop="sleepTime" width="120">
|
<el-table-column
|
||||||
|
label="睡觉时间"
|
||||||
|
align="center"
|
||||||
|
prop="sleepTime"
|
||||||
|
width="120"
|
||||||
|
>
|
||||||
<!-- <template slot-scope="scope">-->
|
<!-- <template slot-scope="scope">-->
|
||||||
<!-- <span>{{ parseTime(scope.row.sleepTime, '{y}-{m}-{d}') }}</span>-->
|
<!-- <span>{{ parseTime(scope.row.sleepTime, '{y}-{m}-{d}') }}</span>-->
|
||||||
<!-- </template>-->
|
<!-- </template>-->
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="起床时间" align="center" prop="wakeupTime" width="120">
|
<el-table-column
|
||||||
|
label="起床时间"
|
||||||
|
align="center"
|
||||||
|
prop="wakeupTime"
|
||||||
|
width="120"
|
||||||
|
>
|
||||||
<!-- <template slot-scope="scope">-->
|
<!-- <template slot-scope="scope">-->
|
||||||
<!-- <span>{{ parseTime(scope.row.wakeupTime, '{y}-{m}-{d}') }}</span>-->
|
<!-- <span>{{ parseTime(scope.row.wakeupTime, '{y}-{m}-{d}') }}</span>-->
|
||||||
<!-- </template>-->
|
<!-- </template>-->
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="运动锻炼" align="center" prop="sport" :formatter="sportFormat"/>
|
<el-table-column
|
||||||
<el-table-column label="按食谱" align="center" prop="diet" :formatter="dietFormat"/>
|
label="运动锻炼"
|
||||||
<el-table-column label="熬夜失眠" align="center" prop="insomnia" :formatter="insomniaFormat"/>
|
align="center"
|
||||||
<el-table-column label="起床排便" align="center" prop="defecation" :formatter="defecationFormat"/>
|
prop="sport"
|
||||||
|
:formatter="sportFormat"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="按食谱"
|
||||||
|
align="center"
|
||||||
|
prop="diet"
|
||||||
|
:formatter="dietFormat"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="熬夜失眠"
|
||||||
|
align="center"
|
||||||
|
prop="insomnia"
|
||||||
|
:formatter="insomniaFormat"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="起床排便"
|
||||||
|
align="center"
|
||||||
|
prop="defecation"
|
||||||
|
:formatter="defecationFormat"
|
||||||
|
/>
|
||||||
<el-table-column label="饮水量" align="center" prop="water">
|
<el-table-column label="饮水量" align="center" prop="water">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{`${scope.row.water} ml`}}</span>
|
<span>{{ `${scope.row.water} ml` }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column
|
||||||
|
label="操作"
|
||||||
|
align="center"
|
||||||
|
class-name="small-padding fixed-width"
|
||||||
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
@ -122,7 +206,7 @@
|
|||||||
icon="el-icon-edit"
|
icon="el-icon-edit"
|
||||||
@click="handleUpdate(scope.row)"
|
@click="handleUpdate(scope.row)"
|
||||||
v-hasPermi="['custom:wxUserLog:edit']"
|
v-hasPermi="['custom:wxUserLog:edit']"
|
||||||
>修改
|
>修改
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
@ -130,14 +214,14 @@
|
|||||||
icon="el-icon-delete"
|
icon="el-icon-delete"
|
||||||
@click="handleDelete(scope.row)"
|
@click="handleDelete(scope.row)"
|
||||||
v-hasPermi="['custom:wxUserLog:remove']"
|
v-hasPermi="['custom:wxUserLog:remove']"
|
||||||
>删除
|
>删除
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination
|
<pagination
|
||||||
v-show="total>0"
|
v-show="total > 0"
|
||||||
:total="total"
|
:total="total"
|
||||||
:page.sync="queryParams.pageNum"
|
:page.sync="queryParams.pageNum"
|
||||||
:limit.sync="queryParams.pageSize"
|
:limit.sync="queryParams.pageSize"
|
||||||
@ -150,44 +234,56 @@
|
|||||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="体重" prop="weight">
|
<el-form-item label="体重" prop="weight">
|
||||||
<el-input v-model="form.weight" placeholder="请输入体重"/>
|
<el-input v-model="form.weight" placeholder="请输入体重" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="打卡日期" prop="logTime">
|
<el-form-item label="打卡日期" prop="logTime">
|
||||||
<el-date-picker clearable size="small" style="width: 200px"
|
<el-date-picker
|
||||||
v-model="form.logTime"
|
clearable
|
||||||
type="date"
|
size="small"
|
||||||
value-format="yyyy-MM-dd"
|
style="width: 200px"
|
||||||
:picker-options="logTimePickerOptions"
|
v-model="form.logTime"
|
||||||
placeholder="选择睡觉时间">
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
:picker-options="logTimePickerOptions"
|
||||||
|
placeholder="选择睡觉时间"
|
||||||
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="睡觉时间" prop="sleepTime">
|
<el-form-item label="睡觉时间" prop="sleepTime">
|
||||||
<el-time-select clearable size="small" style="width: 200px"
|
<el-time-select
|
||||||
v-model="form.sleepTime"
|
clearable
|
||||||
:picker-options="{
|
size="small"
|
||||||
start: '00:00',
|
style="width: 200px"
|
||||||
step: '00:15',
|
v-model="form.sleepTime"
|
||||||
end: '23:45'
|
:picker-options="{
|
||||||
}"
|
start: '00:00',
|
||||||
placeholder="选择睡觉时间">
|
step: '00:15',
|
||||||
|
end: '23:45',
|
||||||
|
}"
|
||||||
|
placeholder="选择睡觉时间"
|
||||||
|
>
|
||||||
</el-time-select>
|
</el-time-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="起床时间" prop="wakeupTime">
|
<el-form-item label="起床时间" prop="wakeupTime">
|
||||||
<el-time-select clearable size="small" style="width: 200px"
|
<el-time-select
|
||||||
v-model="form.wakeupTime"
|
clearable
|
||||||
:picker-options="{
|
size="small"
|
||||||
start: '00:00',
|
style="width: 200px"
|
||||||
step: '00:15',
|
v-model="form.wakeupTime"
|
||||||
end: '23:45'
|
:picker-options="{
|
||||||
}"
|
start: '00:00',
|
||||||
placeholder="选择睡觉时间">
|
step: '00:15',
|
||||||
|
end: '23:45',
|
||||||
|
}"
|
||||||
|
placeholder="选择睡觉时间"
|
||||||
|
>
|
||||||
</el-time-select>
|
</el-time-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -241,13 +337,17 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="饮水量" prop="water">
|
<el-form-item label="饮水量" prop="water">
|
||||||
<el-input v-model="form.water" placeholder="请输入饮水量"/>
|
<el-input v-model="form.water" placeholder="请输入饮水量" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="备注" prop="remark">
|
<el-form-item label="备注" prop="remark">
|
||||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"/>
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
type="textarea"
|
||||||
|
placeholder="请输入内容"
|
||||||
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -261,231 +361,251 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
addWxUserLog,
|
addWxUserLog,
|
||||||
delWxUserLog,
|
delWxUserLog,
|
||||||
exportWxUserLog,
|
exportWxUserLog,
|
||||||
getWxUserLog,
|
getWxUserLog,
|
||||||
listWxUserLog,
|
listWxUserLog,
|
||||||
updateWxUserLog
|
updateWxUserLog,
|
||||||
} from "@/api/custom/wxUserLog";
|
} from "@/api/custom/wxUserLog";
|
||||||
|
import { mapGetters } from "vuex";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "WxUserLog",
|
name: "WxUserLog",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 选中数组
|
// 选中数组
|
||||||
ids: [],
|
ids: [],
|
||||||
// 非单个禁用
|
// 非单个禁用
|
||||||
single: true,
|
single: true,
|
||||||
// 非多个禁用
|
// 非多个禁用
|
||||||
multiple: true,
|
multiple: true,
|
||||||
// 显示搜索条件
|
// 显示搜索条件
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
// 总条数
|
// 总条数
|
||||||
total: 0,
|
total: 0,
|
||||||
// 微信用户记录表格数据
|
// 微信用户记录表格数据
|
||||||
wxUserLogList: [],
|
wxUserLogList: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
title: "",
|
title: "",
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 微信appid字典
|
// 微信appid字典
|
||||||
appidOptions: [],
|
appidOptions: [],
|
||||||
// 运动情况字典
|
// 运动情况字典
|
||||||
sportOptions: [],
|
sportOptions: [],
|
||||||
// 饮食情况字典
|
// 饮食情况字典
|
||||||
dietOptions: [],
|
dietOptions: [],
|
||||||
// 熬夜失眠字典
|
// 熬夜失眠字典
|
||||||
insomniaOptions: [],
|
insomniaOptions: [],
|
||||||
// 排便情况字典
|
// 排便情况字典
|
||||||
defecationOptions: [],
|
defecationOptions: [],
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
appid: null,
|
appid: null,
|
||||||
phone: null,
|
phone: null,
|
||||||
},
|
nutritionistId: null
|
||||||
// 表单参数
|
},
|
||||||
form: {},
|
// 表单参数
|
||||||
// 表单校验
|
form: {},
|
||||||
rules: {},
|
// 表单校验
|
||||||
logTimePickerOptions: {
|
rules: {},
|
||||||
disabledDate(time) {
|
logTimePickerOptions: {
|
||||||
return time.getTime() > Date.now();
|
disabledDate(time) {
|
||||||
},
|
return time.getTime() > Date.now();
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
this.getDicts("cus_wx_app").then((response) => {
|
||||||
|
this.appidOptions = response.data;
|
||||||
|
});
|
||||||
|
this.getDicts("sys_yes_no").then((response) => {
|
||||||
|
this.sportOptions = response.data;
|
||||||
|
});
|
||||||
|
this.getDicts("sys_yes_no").then((response) => {
|
||||||
|
this.dietOptions = response.data;
|
||||||
|
});
|
||||||
|
this.getDicts("sys_yes_no").then((response) => {
|
||||||
|
this.insomniaOptions = response.data;
|
||||||
|
});
|
||||||
|
this.getDicts("sys_yes_no").then((response) => {
|
||||||
|
this.defecationOptions = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters([
|
||||||
|
// 售后字典
|
||||||
|
"afterSaleIdOptions",
|
||||||
|
// 主营养师字典
|
||||||
|
"nutritionistIdOptions"
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询微信用户记录列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listWxUserLog(this.queryParams).then((response) => {
|
||||||
|
this.wxUserLogList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 微信appid字典翻译
|
||||||
|
appidFormat(row, column) {
|
||||||
|
return this.selectDictLabel(this.appidOptions, row.appid);
|
||||||
|
},
|
||||||
|
// 运动情况字典翻译
|
||||||
|
sportFormat(row, column) {
|
||||||
|
return this.selectDictLabel(this.sportOptions, row.sport);
|
||||||
|
},
|
||||||
|
// 饮食情况字典翻译
|
||||||
|
dietFormat(row, column) {
|
||||||
|
return this.selectDictLabel(this.dietOptions, row.diet);
|
||||||
|
},
|
||||||
|
// 熬夜失眠字典翻译
|
||||||
|
insomniaFormat(row, column) {
|
||||||
|
return this.selectDictLabel(this.insomniaOptions, row.insomnia);
|
||||||
|
},
|
||||||
|
// 排便情况字典翻译
|
||||||
|
defecationFormat(row, column) {
|
||||||
|
return this.selectDictLabel(this.defecationOptions, row.defecation);
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
const defaultAppidType = this.appidOptions.find(
|
||||||
|
(opt) => opt.remark === "default"
|
||||||
|
);
|
||||||
|
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
openid: null,
|
||||||
|
weight: null,
|
||||||
|
appid: defaultAppidType ? defaultAppidType.dictValue : null,
|
||||||
|
phone: null,
|
||||||
|
sleepTime: null,
|
||||||
|
wakeupTime: null,
|
||||||
|
sport: null,
|
||||||
|
avatarUrl: null,
|
||||||
|
diet: null,
|
||||||
|
insomnia: null,
|
||||||
|
defecation: null,
|
||||||
|
water: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null,
|
||||||
|
remark: null,
|
||||||
|
logTime: null,
|
||||||
};
|
};
|
||||||
|
this.resetForm("form");
|
||||||
},
|
},
|
||||||
created() {
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getDicts("cus_wx_app").then(response => {
|
},
|
||||||
this.appidOptions = response.data;
|
/** 重置按钮操作 */
|
||||||
});
|
resetQuery() {
|
||||||
this.getDicts("sys_yes_no").then(response => {
|
this.resetForm("queryForm");
|
||||||
this.sportOptions = response.data;
|
this.handleQuery();
|
||||||
});
|
},
|
||||||
this.getDicts("sys_yes_no").then(response => {
|
// 多选框选中数据
|
||||||
this.dietOptions = response.data;
|
handleSelectionChange(selection) {
|
||||||
});
|
this.ids = selection.map((item) => item.openid);
|
||||||
this.getDicts("sys_yes_no").then(response => {
|
this.single = selection.length !== 1;
|
||||||
this.insomniaOptions = response.data;
|
this.multiple = !selection.length;
|
||||||
});
|
},
|
||||||
this.getDicts("sys_yes_no").then(response => {
|
/** 新增按钮操作 */
|
||||||
this.defecationOptions = response.data;
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加微信用户记录";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const id = row.id || this.ids;
|
||||||
|
getWxUserLog(id).then((response) => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改微信用户记录";
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
/** 提交按钮 */
|
||||||
/** 查询微信用户记录列表 */
|
submitForm() {
|
||||||
getList() {
|
this.$refs["form"].validate((valid) => {
|
||||||
this.loading = true;
|
if (valid) {
|
||||||
listWxUserLog(this.queryParams).then(response => {
|
// console.log(this.form)
|
||||||
this.wxUserLogList = response.rows;
|
if (this.form.id != null) {
|
||||||
this.total = response.total;
|
updateWxUserLog(this.form).then((response) => {
|
||||||
this.loading = false;
|
if (response.code === 200) {
|
||||||
});
|
this.msgSuccess("修改成功");
|
||||||
},
|
this.open = false;
|
||||||
// 微信appid字典翻译
|
this.getList();
|
||||||
appidFormat(row, column) {
|
}
|
||||||
return this.selectDictLabel(this.appidOptions, row.appid);
|
});
|
||||||
},
|
} else {
|
||||||
// 运动情况字典翻译
|
addWxUserLog(this.form).then((response) => {
|
||||||
sportFormat(row, column) {
|
if (response.code === 200) {
|
||||||
return this.selectDictLabel(this.sportOptions, row.sport);
|
this.msgSuccess("新增成功");
|
||||||
},
|
this.open = false;
|
||||||
// 饮食情况字典翻译
|
this.getList();
|
||||||
dietFormat(row, column) {
|
}
|
||||||
return this.selectDictLabel(this.dietOptions, row.diet);
|
});
|
||||||
},
|
|
||||||
// 熬夜失眠字典翻译
|
|
||||||
insomniaFormat(row, column) {
|
|
||||||
return this.selectDictLabel(this.insomniaOptions, row.insomnia);
|
|
||||||
},
|
|
||||||
// 排便情况字典翻译
|
|
||||||
defecationFormat(row, column) {
|
|
||||||
return this.selectDictLabel(this.defecationOptions, row.defecation);
|
|
||||||
},
|
|
||||||
// 取消按钮
|
|
||||||
cancel() {
|
|
||||||
this.open = false;
|
|
||||||
this.reset();
|
|
||||||
},
|
|
||||||
// 表单重置
|
|
||||||
reset() {
|
|
||||||
const defaultAppidType = this.appidOptions.find(opt => opt.remark === 'default');
|
|
||||||
|
|
||||||
this.form = {
|
|
||||||
id: null,
|
|
||||||
openid: null,
|
|
||||||
weight: null,
|
|
||||||
appid: defaultAppidType ? defaultAppidType.dictValue : null,
|
|
||||||
phone: null,
|
|
||||||
sleepTime: null,
|
|
||||||
wakeupTime: null,
|
|
||||||
sport: null,
|
|
||||||
avatarUrl: null,
|
|
||||||
diet: null,
|
|
||||||
insomnia: null,
|
|
||||||
defecation: null,
|
|
||||||
water: null,
|
|
||||||
createBy: null,
|
|
||||||
createTime: null,
|
|
||||||
updateBy: null,
|
|
||||||
updateTime: null,
|
|
||||||
remark: null,
|
|
||||||
logTime: null
|
|
||||||
};
|
|
||||||
this.resetForm("form");
|
|
||||||
},
|
|
||||||
/** 搜索按钮操作 */
|
|
||||||
handleQuery() {
|
|
||||||
this.queryParams.pageNum = 1;
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
/** 重置按钮操作 */
|
|
||||||
resetQuery() {
|
|
||||||
this.resetForm("queryForm");
|
|
||||||
this.handleQuery();
|
|
||||||
},
|
|
||||||
// 多选框选中数据
|
|
||||||
handleSelectionChange(selection) {
|
|
||||||
this.ids = selection.map(item => item.openid)
|
|
||||||
this.single = selection.length !== 1
|
|
||||||
this.multiple = !selection.length
|
|
||||||
},
|
|
||||||
/** 新增按钮操作 */
|
|
||||||
handleAdd() {
|
|
||||||
this.reset();
|
|
||||||
this.open = true;
|
|
||||||
this.title = "添加微信用户记录";
|
|
||||||
},
|
|
||||||
/** 修改按钮操作 */
|
|
||||||
handleUpdate(row) {
|
|
||||||
this.reset();
|
|
||||||
const id = row.id || this.ids
|
|
||||||
getWxUserLog(id).then(response => {
|
|
||||||
this.form = response.data;
|
|
||||||
this.open = true;
|
|
||||||
this.title = "修改微信用户记录";
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 提交按钮 */
|
|
||||||
submitForm() {
|
|
||||||
this.$refs["form"].validate(valid => {
|
|
||||||
if (valid) {
|
|
||||||
// console.log(this.form)
|
|
||||||
if (this.form.id != null) {
|
|
||||||
updateWxUserLog(this.form).then(response => {
|
|
||||||
if (response.code === 200) {
|
|
||||||
this.msgSuccess("修改成功");
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
addWxUserLog(this.form).then(response => {
|
|
||||||
if (response.code === 200) {
|
|
||||||
this.msgSuccess("新增成功");
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
},
|
});
|
||||||
/** 删除按钮操作 */
|
},
|
||||||
handleDelete(row) {
|
/** 删除按钮操作 */
|
||||||
const ids = row.id || this.ids;
|
handleDelete(row) {
|
||||||
this.$confirm('是否确认删除微信用户记录编号为"' + ids + '"的数据项?', "警告", {
|
const ids = row.id || this.ids;
|
||||||
|
this.$confirm(
|
||||||
|
'是否确认删除微信用户记录编号为"' + ids + '"的数据项?',
|
||||||
|
"警告",
|
||||||
|
{
|
||||||
confirmButtonText: "确定",
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: "取消",
|
cancelButtonText: "取消",
|
||||||
type: "warning"
|
type: "warning",
|
||||||
}).then(function () {
|
}
|
||||||
|
)
|
||||||
|
.then(function () {
|
||||||
return delWxUserLog(ids);
|
return delWxUserLog(ids);
|
||||||
}).then(() => {
|
})
|
||||||
|
.then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.msgSuccess("删除成功");
|
this.msgSuccess("删除成功");
|
||||||
}).catch(function () {
|
})
|
||||||
});
|
.catch(function () {});
|
||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
const queryParams = this.queryParams;
|
const queryParams = this.queryParams;
|
||||||
this.$confirm('是否确认导出所有微信用户记录数据项?', "警告", {
|
this.$confirm("是否确认导出所有微信用户记录数据项?", "警告", {
|
||||||
confirmButtonText: "确定",
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: "取消",
|
cancelButtonText: "取消",
|
||||||
type: "warning"
|
type: "warning",
|
||||||
}).then(function () {
|
})
|
||||||
|
.then(function () {
|
||||||
return exportWxUserLog(queryParams);
|
return exportWxUserLog(queryParams);
|
||||||
}).then(response => {
|
})
|
||||||
|
.then((response) => {
|
||||||
this.download(response.msg);
|
this.download(response.msg);
|
||||||
}).catch(function () {
|
})
|
||||||
});
|
.catch(function () {});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user