|
@@ -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;
|