|
@@ -70,12 +70,12 @@
|
|
<script>
|
|
<script>
|
|
import Dialog from '@/components/Dialog/index.vue'
|
|
import Dialog from '@/components/Dialog/index.vue'
|
|
import { submitThree, detail } from '@/api/operation/tag'
|
|
import { submitThree, detail } from '@/api/operation/tag'
|
|
-import { platformMixin, isFreeMixin, audioMixin, onOrOffMixin } from '@/mixin/index'
|
|
|
|
|
|
+import { platformMixin, isFreeMixin, audioMixin, disabledMixin } from '@/mixin/index'
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
Dialog
|
|
Dialog
|
|
},
|
|
},
|
|
- mixins: [platformMixin, isFreeMixin, audioMixin, onOrOffMixin],
|
|
|
|
|
|
+ mixins: [platformMixin, isFreeMixin, audioMixin, disabledMixin],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
// 表单
|
|
// 表单
|
|
@@ -195,7 +195,7 @@ export default {
|
|
return this.selectDictLabel(this.audioOptions, row.audioType)
|
|
return this.selectDictLabel(this.audioOptions, row.audioType)
|
|
},
|
|
},
|
|
statusFormatter(row) {
|
|
statusFormatter(row) {
|
|
- return this.selectDictLabel(this.onOrOffOptions, row.status)
|
|
|
|
|
|
+ return this.selectDictLabel(this.disabledOptions, row.status)
|
|
},
|
|
},
|
|
platfromFormatter(row) {
|
|
platfromFormatter(row) {
|
|
return this.selectDictLabel(this.platformTypeOptions, row.platformId)
|
|
return this.selectDictLabel(this.platformTypeOptions, row.platformId)
|