|
@@ -153,7 +153,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { listKeyword, getKeyword, delKeyword, addKeyword, updateKeyword, exportKeyword } from "@/api/system/keyword";
|
|
|
-import { allList } from "@/api/system/dict/data";
|
|
|
+// import { allList } from "@/api/system/dict/data";
|
|
|
import { getCompanyList } from "@/api/company/companyUser";
|
|
|
|
|
|
export default {
|
|
@@ -201,7 +201,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
- this.getTypeOptions();
|
|
|
+ // this.getTypeOptions();
|
|
|
this.getCompanyOptions();
|
|
|
},
|
|
|
methods: {
|
|
@@ -320,11 +320,11 @@ export default {
|
|
|
}).catch(() => {});
|
|
|
},
|
|
|
/** 获取类型选项 */
|
|
|
- getTypeOptions() {
|
|
|
- allList({ dictType: "keyword_type" }).then(response => {
|
|
|
- this.typeOptions = response.data;
|
|
|
- });
|
|
|
- },
|
|
|
+ // getTypeOptions() {
|
|
|
+ // allList({ dictType: "keyword_type" }).then(response => {
|
|
|
+ // this.typeOptions = response.data;
|
|
|
+ // });
|
|
|
+ // },
|
|
|
/** 获取公司选项 */
|
|
|
getCompanyOptions() {
|
|
|
getCompanyList().then(response => {
|