|
@@ -349,29 +349,56 @@
|
|
|
</a-col>
|
|
|
<a-col :md="8" :sm="8">
|
|
|
<a-form-item label="剪辑">
|
|
|
- <a-select v-model="queryParam.clipId" allowClear show-search :filter-option="filterOption">
|
|
|
- <a-select-option v-for="item in designList" :key="item.userId" :value="item.userId">
|
|
|
- {{ item.companyName + '_' + item.userName }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
+ <a-select
|
|
|
+ v-model="queryParam.clipId"
|
|
|
+ :filter-option="filterOption"
|
|
|
+ allowClear
|
|
|
+ show-search
|
|
|
+ >
|
|
|
+ <a-select-option
|
|
|
+ v-for="item in designList"
|
|
|
+ :key="item.userId"
|
|
|
+ :value="item.userId"
|
|
|
+ >
|
|
|
+ {{ item.companyName + '_' + item.userName }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="8" :sm="8">
|
|
|
<a-form-item label="拍摄">
|
|
|
- <a-select v-model="queryParam.shotId" allowClear show-search :filter-option="filterOption">
|
|
|
- <a-select-option v-for="item in designList" :key="item.userId" :value="item.userId">
|
|
|
- {{ item.companyName + '_' + item.userName }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
+ <a-select
|
|
|
+ v-model="queryParam.shotId"
|
|
|
+ :filter-option="filterOption"
|
|
|
+ allowClear
|
|
|
+ show-search
|
|
|
+ >
|
|
|
+ <a-select-option
|
|
|
+ v-for="item in designList"
|
|
|
+ :key="item.userId"
|
|
|
+ :value="item.userId"
|
|
|
+ >
|
|
|
+ {{ item.companyName + '_' + item.userName }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="8" :sm="8">
|
|
|
<a-form-item label="编导">
|
|
|
- <a-select v-model="queryParam.planId" allowClear show-search :filter-option="filterOption">
|
|
|
- <a-select-option v-for="item in designList" :key="item.userId" :value="item.userId">
|
|
|
- {{ item.companyName + '_' + item.userName }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
+ <a-select
|
|
|
+ v-model="queryParam.planId"
|
|
|
+ :filter-option="filterOption"
|
|
|
+ allowClear
|
|
|
+ show-search
|
|
|
+ >
|
|
|
+ <a-select-option
|
|
|
+ v-for="item in designList"
|
|
|
+ :key="item.userId"
|
|
|
+ :value="item.userId"
|
|
|
+ >
|
|
|
+ {{ item.companyName + '_' + item.userName }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="8" :sm="8">
|
|
@@ -1988,7 +2015,6 @@ export default {
|
|
|
};
|
|
|
});
|
|
|
}, 1000);
|
|
|
- this.getDesignList();
|
|
|
getAction('/ctop/tagInfo/treeList', {
|
|
|
pageSize: 10000
|
|
|
}).then(res => {
|
|
@@ -2001,6 +2027,7 @@ export default {
|
|
|
});
|
|
|
this.getHangye();
|
|
|
this.handleGetCreativeWord();
|
|
|
+ this.handleGetDesignList();
|
|
|
},
|
|
|
watch: {
|
|
|
$route(n, o) {
|
|
@@ -2054,11 +2081,13 @@ export default {
|
|
|
methods: {
|
|
|
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
|
// 获取设计人员
|
|
|
- getDesignList() {
|
|
|
- postAction('/ctop/kuaishou/videoReport/getDesignList').then((res) => {
|
|
|
- if (res.success) {
|
|
|
- this.designList = res.result;
|
|
|
+ handleGetDesignList() {
|
|
|
+ postAction('/ctop/kuaishou/videoReport/getDesignList').then(result => {
|
|
|
+ if (result.success) {
|
|
|
+ this.designList = result.result;
|
|
|
}
|
|
|
+ }).catch(error => {
|
|
|
+ console.log(error, 'eeee');
|
|
|
});
|
|
|
},
|
|
|
handleSubmit() {
|