From 74c91e61bba6c08c6ef528b5737e62f711068a4d Mon Sep 17 00:00:00 2001 From: dt_2916866708 <> Date: Thu, 11 Jan 2024 10:14:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=88=86=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/product/productAttr.js | 9 +++- src/utils/validate.js | 17 ++++++- src/views/product/productAttr/index.vue | 13 +++--- src/views/product/productClassify/index.vue | 52 +++++++++------------ 4 files changed, 51 insertions(+), 40 deletions(-) diff --git a/src/api/product/productAttr.js b/src/api/product/productAttr.js index f060248..843d5cb 100644 --- a/src/api/product/productAttr.js +++ b/src/api/product/productAttr.js @@ -1,6 +1,13 @@ import request from '@/utils/request' var service_name = 'oil-mall' export default { + classifyGetByPage(page) { // 分页查询 + return request({ + url: `/${service_name}/mallProductClassification/getByPage`, + method: 'post', + data: page + }) + }, typeFindByPage(page) { // 分页查询 return request({ url: `/${service_name}/mallProductAttributesType/getByPage`, @@ -49,7 +56,7 @@ delete(page) { data: page }) }, - delete(page) { + typeDelete(page) { return request({ url: `/${service_name}/mallProductAttributesType/delete`, method: 'post', diff --git a/src/utils/validate.js b/src/utils/validate.js index c9b2fb9..4201a1e 100644 --- a/src/utils/validate.js +++ b/src/utils/validate.js @@ -1,5 +1,5 @@ /** - * Created by PanJiaChen on 16/11/18. + * Created by CAOLIANCUN on 2024/1/11. */ /** @@ -150,3 +150,18 @@ export function isArray(arg) { } return Array.isArray(arg) } +export function isStrictPromise(value) { + return !!value + && typeof value === 'object' + && typeof value.then === 'function' + && typeof value.finally === 'function'; +} +export function loadingFn(_loading,callback) { + console.log(isStrictPromise(callback),_loading,'isStrictPromise(callback)') + _loading = true; + if (isStrictPromise(callback)) { + callback.finally(() => { + // _loading = false; + }) + }; +} \ No newline at end of file diff --git a/src/views/product/productAttr/index.vue b/src/views/product/productAttr/index.vue index eba22d4..a220b99 100644 --- a/src/views/product/productAttr/index.vue +++ b/src/views/product/productAttr/index.vue @@ -1,6 +1,6 @@