feat(master): 屏蔽推送功能
Showing
2 changed files
with
5 additions
and
3 deletions
... | @@ -28,6 +28,7 @@ | ... | @@ -28,6 +28,7 @@ |
28 | <TabPane key="audit" title="试唱上架审核"> | 28 | <TabPane key="audit" title="试唱上架审核"> |
29 | <FormContent | 29 | <FormContent |
30 | :init-value="row" | 30 | :init-value="row" |
31 | :max-step="3" | ||
31 | :current-attribute="currentAttribute" | 32 | :current-attribute="currentAttribute" |
32 | :last-attribute="lastAttribute" | 33 | :last-attribute="lastAttribute" |
33 | :submit-text="submitText" | 34 | :submit-text="submitText" | ... | ... |
... | @@ -69,9 +69,9 @@ | ... | @@ -69,9 +69,9 @@ |
69 | <a-link v-if="record.status === 5 && checkPermission('edit')" class="link-hover" :hoverable="false" @click="onSend(record)"> | 69 | <a-link v-if="record.status === 5 && checkPermission('edit')" class="link-hover" :hoverable="false" @click="onSend(record)"> |
70 | 编辑发行 | 70 | 编辑发行 |
71 | </a-link> | 71 | </a-link> |
72 | <a-link v-if="record.status === 1 && checkPermission('push')" class="link-hover" :hoverable="false" @click="onNotify(record)"> | 72 | <!-- <a-link v-if="record.status === 1 && checkPermission('push')" class="link-hover" :hoverable="false" @click="onNotify(record)">--> |
73 | 推送 | 73 | <!-- 推送--> |
74 | </a-link> | 74 | <!-- </a-link>--> |
75 | <!-- <delete-button v-if="record.status === 2" :index="rowIndex" :on-delete="() => onDelete(record.id)" :row="record" />--> | 75 | <!-- <delete-button v-if="record.status === 2" :index="rowIndex" :on-delete="() => onDelete(record.id)" :row="record" />--> |
76 | </template> | 76 | </template> |
77 | </space-table-column> | 77 | </space-table-column> |
... | @@ -206,6 +206,7 @@ | ... | @@ -206,6 +206,7 @@ |
206 | createVNode(FormContent, { | 206 | createVNode(FormContent, { |
207 | initValue: formVal, | 207 | initValue: formVal, |
208 | hideField: props.createProp?.hideField, | 208 | hideField: props.createProp?.hideField, |
209 | maxStep: 3, | ||
209 | submit: (value: AttributeData) => | 210 | submit: (value: AttributeData) => |
210 | create(value).then((data) => { | 211 | create(value).then((data) => { |
211 | Message.success(`添加活动:${data.song_name}`); | 212 | Message.success(`添加活动:${data.song_name}`); | ... | ... |
-
Please register or sign in to post a comment