|
@@ -103,7 +103,7 @@ const getDict = (e, model) => {
|
|
|
};
|
|
|
// 审核
|
|
|
const toExam = async (data) => {
|
|
|
- let res: IQueryResult = await userAxios.fetch(data.openid);
|
|
|
+ let res: IQueryResult = await userAxios.fetch(data._id);
|
|
|
if (res.errcode == '0') {
|
|
|
form.value = res.data;
|
|
|
dialog.value = { title: '审核管理', show: true, type: '1' };
|
|
@@ -149,7 +149,7 @@ const searchOther = async () => {
|
|
|
res = await dictAxios.query({ type: 'type' });
|
|
|
if (res.errcode == '0') typeList.value = res.data;
|
|
|
// 状态
|
|
|
- res = await dictAxios.query({ type: 'ststus' });
|
|
|
+ res = await dictAxios.query({ type: 'status' });
|
|
|
if (res.errcode == '0') statusList.value = res.data;
|
|
|
};
|
|
|
</script>
|