@@ -0,0 +1,25 @@
+import {
+ devList
+} from '@/api/article/list'
+
+const devMixin = {
+ data() {
+ return {
+ devOptions: []
+ }
+ },
+ mounted() {
+ devList().then(res => {
+ if (res.code === 0) {
+ res.data.map(i => {
+ this.devOptions.push({
+ value: i.clientTypeId,
+ label: i.name
+ })
+}
+export { devMixin }