|
@@ -45,7 +45,15 @@
|
|
{{item.companyName +'_'+item.userName }}
|
|
{{item.companyName +'_'+item.userName }}
|
|
</a-select-option>
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
- </span>
|
|
|
|
|
|
+ </span>
|
|
|
|
+ <span style="margin-left:15px">素材分类:</span>
|
|
|
|
+ <span >
|
|
|
|
+ <!-- <a-input placeholder="请输入编导的名字" v-model="plan" style="width:140px" /> -->
|
|
|
|
+ <a-select v-model="material" style="width: 140px" allowClear>
|
|
|
|
+ <a-select-option value="内部">内部</a-select-option>
|
|
|
|
+ <a-select-option value="塑造">塑造</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </span>
|
|
</div>
|
|
</div>
|
|
<a-button type="primary" @click="searchRes" :loading='searchLoading'>查询</a-button>
|
|
<a-button type="primary" @click="searchRes" :loading='searchLoading'>查询</a-button>
|
|
</div>
|
|
</div>
|
|
@@ -504,6 +512,7 @@ let detailColumn=[
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ material: '',
|
|
searchLoading:false,
|
|
searchLoading:false,
|
|
|
|
|
|
designList:[],
|
|
designList:[],
|
|
@@ -744,7 +753,8 @@ export default {
|
|
clipId:this.clip?this.clip:'',
|
|
clipId:this.clip?this.clip:'',
|
|
shotId:this.shot?this.shot:'',
|
|
shotId:this.shot?this.shot:'',
|
|
planId:this.plan?this.plan:'',
|
|
planId:this.plan?this.plan:'',
|
|
- leaderId:this.leaderId?this.leaderId:''
|
|
|
|
|
|
+ leaderId:this.leaderId?this.leaderId:'',
|
|
|
|
+ channelName: this.material ? this.material : ''
|
|
}).then(res => {
|
|
}).then(res => {
|
|
let resArr = []
|
|
let resArr = []
|
|
this.data=[];
|
|
this.data=[];
|
|
@@ -792,7 +802,8 @@ export default {
|
|
clipId:this.clip?this.clip:'',
|
|
clipId:this.clip?this.clip:'',
|
|
shotId:this.shot?this.shot:'',
|
|
shotId:this.shot?this.shot:'',
|
|
planId:this.plan?this.plan:'',
|
|
planId:this.plan?this.plan:'',
|
|
- leaderId:this.leaderId?this.leaderId:''
|
|
|
|
|
|
+ leaderId:this.leaderId?this.leaderId:'',
|
|
|
|
+ channelName: this.material ? this.material : ''
|
|
}).then(res => {
|
|
}).then(res => {
|
|
this.exportLoading=false;
|
|
this.exportLoading=false;
|
|
let blob = new Blob([res], {
|
|
let blob = new Blob([res], {
|