Browse Source

调整订单设置和订单页面的查看权限

chenlei1231 3 months ago
parent
commit
b9b8cd587e
2 changed files with 39 additions and 39 deletions
  1. 38 38
      src/views/adweb/site/AdwebSiteList.vue
  2. 1 1
      src/views/adweb/sohoeb2b/Order.vue

+ 38 - 38
src/views/adweb/site/AdwebSiteList.vue

@@ -371,51 +371,51 @@
       },
     ];
 
-    // 针对租户管理员,并且是苏豪纺织的租户,可以查看订单设置
-    if (isTenantAdmin.value && isSohoeb2b.value) {
+    // 针对苏豪纺织租户管理员,或者是管理员
+    if ((isTenantAdmin.value && isSohoeb2b.value) || isAdmin.value) {
       dropDown.push({
         label: '订单设置',
         onClick: setSohoeb2bOrder.bind(null, record),
       });
-    } else {
+    }
+
+    dropDown.push({
+      label: '询盘设置',
+      onClick: setEnquiry.bind(null, record),
+    });
+
+    // 站点不是删除状态
+    if (record.status != 0) {
       dropDown.push({
-        label: '询盘设置',
-        onClick: setEnquiry.bind(null, record),
+        label: '站点删除',
+        onClick: siteDeleteStatus.bind(null, record),
       });
+    }
 
-      // 站点不是删除状态
-      if (record.status != 0) {
-        dropDown.push({
-          label: '站点删除',
-          onClick: siteDeleteStatus.bind(null, record),
-        });
-      }
-
-      // 站点已发布,并且是正式域名时可以添加GTM 代码
-      if (record.isDomain === 1 && record.status === 1) {
-        dropDown.push(
-          {
-            label: 'GTM代码',
-            onClick: addGtm.bind(null, record),
-          },
-          {
-            label: 'Google Ads',
-            onClick: bindGoogleAds.bind(null, record),
-          }
-        );
-      }
-
-      // 当前是管理员,并且站点是被删除状态
-      if (isAdmin.value && record.status === 0) {
-        dropDown.push({
-          label: '资源删除',
-          popConfirm: {
-            title: '该站点将从系统中删除,站点资源将会保留15天,是否确认删除',
-            confirm: handleDelete.bind(null, record),
-            placement: 'topLeft',
-          },
-        });
-      }
+    // 站点已发布,并且是正式域名时可以添加GTM 代码
+    if (record.isDomain === 1 && record.status === 1) {
+      dropDown.push(
+        {
+          label: 'GTM代码',
+          onClick: addGtm.bind(null, record),
+        },
+        {
+          label: 'Google Ads',
+          onClick: bindGoogleAds.bind(null, record),
+        }
+      );
+    }
+
+    // 当前是管理员,并且站点是被删除状态
+    if (isAdmin.value && record.status === 0) {
+      dropDown.push({
+        label: '资源删除',
+        popConfirm: {
+          title: '该站点将从系统中删除,站点资源将会保留15天,是否确认删除',
+          confirm: handleDelete.bind(null, record),
+          placement: 'topLeft',
+        },
+      });
     }
 
     return dropDown;

+ 1 - 1
src/views/adweb/sohoeb2b/Order.vue

@@ -1,7 +1,7 @@
 <template>
   <a-card :bordered="false">
     <!-- 查询区域 -->
-    <div class="table-page-search-wrapper" v-if="isShowSelect">
+    <div class="table-page-search-wrapper">
       <select-site ref="selectSiteRef" @set-site-info="setSiteInfo" select-width="100%" label="站点选择" />
     </div>
     <!-- 查询区域-END -->