fix: 替换参数配置接口

This commit is contained in:
TsMask
2023-09-06 11:32:42 +08:00
parent ed72ca11be
commit a07ad1ade2
2 changed files with 14 additions and 14 deletions

View File

@@ -239,7 +239,7 @@ function fnModalVisibleByVive(configId: string | number) {
return;
}
getConfig(configId).then(res => {
if (res.code === 200 && res.data) {
if (res.code === 1 && res.data) {
modalState.from = Object.assign(modalState.from, res.data);
modalState.title = '参数配置信息';
modalState.visibleByView = true;
@@ -265,7 +265,7 @@ function fnModalVisibleByEdit(configId?: string | number) {
getConfig(configId).then(res => {
modalState.confirmLoading = false;
hide();
if (res.code === 200 && res.data) {
if (res.code === 1 && res.data) {
modalState.from = Object.assign(modalState.from, res.data);
modalState.title = '修改参数配置';
modalState.visibleByEdit = true;
@@ -291,7 +291,7 @@ function fnModalOk() {
message.loading({ content: '请稍等...', key });
config
.then(res => {
if (res.code === 200) {
if (res.code === 1) {
message.success({
content: `${modalState.title}成功`,
key,
@@ -342,7 +342,7 @@ function fnRecordDelete(configId: string = '0') {
const key = 'delConfig';
message.loading({ content: '请稍等...', key });
delConfig(configId).then(res => {
if (res.code === 200) {
if (res.code === 1) {
message.success({
content: `删除成功`,
key,
@@ -370,7 +370,7 @@ function fnExportList() {
const key = 'exportConfig';
message.loading({ content: '请稍等...', key });
exportConfig(toRaw(queryParams)).then(res => {
if (res.code === 200) {
if (res.code === 1) {
message.success({
content: `已完成导出`,
key,
@@ -400,7 +400,7 @@ function fnRefreshCache() {
const key = 'refreshCache';
message.loading({ content: '请稍等...', key });
refreshCache().then(res => {
if (res.code === 200) {
if (res.code === 1) {
message.success({
content: `刷新缓存成功`,
key,
@@ -425,7 +425,7 @@ function fnGetList() {
queryParams.beginTime = queryRangePicker.value[0];
queryParams.endTime = queryRangePicker.value[1];
listConfig(toRaw(queryParams)).then(res => {
if (res.code === 200 && Array.isArray(res.rows)) {
if (res.code === 1 && Array.isArray(res.rows)) {
// 取消勾选
if (tableState.selectedRowKeys.length > 0) {
tableState.selectedRowKeys = [];