|
@@ -362,16 +362,20 @@
|
|
|
|
|
|
// 站点已发布,并且是正式域名时可以添加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),
|
|
|
- });
|
|
|
+ dropDown.push(
|
|
|
+ {
|
|
|
+ label: 'GTM代码',
|
|
|
+ onClick: addGtm.bind(null, record),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: 'Google Ads',
|
|
|
+ onClick: bindGoogleAds.bind(null, record),
|
|
|
+ }
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
- if (isAdmin.value) {
|
|
|
+ // 当前是管理员,并且站点是被删除状态
|
|
|
+ if (isAdmin.value && record.status === 0) {
|
|
|
dropDown.push({
|
|
|
label: '资源删除',
|
|
|
popConfirm: {
|