tangning 1 سال پیش
والد
کامیت
e3f54d0a43

+ 2 - 2
src/api/operate/index.ts

@@ -491,7 +491,7 @@ export const intercomMessageHandle = (params: updateParams) =>
     },
   });
 
-// 根据场景码获取授权用户列表
+// 根据场景码获取授权浏览列表
 export const getAuthList = (params) =>
   defHttp.post<Result>({
     url: Api.getAuthList,
@@ -502,7 +502,7 @@ export const getAuthList = (params) =>
     },
   });
 
-// 根据场景码获取授权用户列表
+// 根据场景码获取授权浏览列表
 export const getAuthType = (params) =>
   defHttp.post<Result>({
     url: Api.getAuthType,

+ 2 - 2
src/views/productOperation/modal/PowersModal.vue

@@ -176,7 +176,7 @@
           defaultValue: 0,
           componentProps: {
             options: [
-              { label: '授权用户', value: 0 },
+              { label: '授权浏览', value: 0 },
               { label: '公开浏览', value: 1 },
             ],
             onChange: (value) => {
@@ -230,7 +230,7 @@
           field: 'authType',
           componentProps: {
             options: [
-              { label: '授权用户', value: 0, disabled: disabled && authType == 1 },
+              { label: '授权浏览', value: 0, disabled: disabled && authType == 1 },
               { label: '公开浏览', value: 1, disabled: disabled && authType == 0 },
             ],
           },

+ 1 - 1
src/views/sceneShare/data.ts

@@ -18,7 +18,7 @@ export const userListSchema: BasicColumn[] = [
     width: 200,
     dataIndex: 'state',
     customRender: ({ record }) => {
-      return record.vip == 0 ? '否' : '是';
+      return record.status == 1 ? '正常' : '冻结';
     },
   },
 ];

+ 1 - 1
src/views/sceneShare/giveList.vue

@@ -5,7 +5,7 @@
         <TableAction
           :actions="[
             {
-              label: record.sceneCount || 0,
+              label: record.sceneCount || '-',
               onClick: handleCreate.bind(null, record),
             },
           ]"