|
@@ -61,8 +61,8 @@
|
|
|
<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-option value="0">内部</a-select-option>
|
|
|
+ <a-select-option value="1">素造</a-select-option>
|
|
|
</a-select>
|
|
|
</span>
|
|
|
</div>
|
|
@@ -766,7 +766,7 @@ export default {
|
|
|
shotId:this.shot?this.shot:'',
|
|
|
planId:this.plan?this.plan:'',
|
|
|
leaderId:this.leaderId?this.leaderId:'',
|
|
|
- channelName: this.material ? this.material : ''
|
|
|
+ channelType: this.material ? Number(this.material) : ''
|
|
|
}).then(res => {
|
|
|
let resArr = []
|
|
|
this.data=[];
|
|
@@ -815,7 +815,7 @@ export default {
|
|
|
shotId:this.shot?this.shot:'',
|
|
|
planId:this.plan?this.plan:'',
|
|
|
leaderId:this.leaderId?this.leaderId:'',
|
|
|
- channelName: this.material ? this.material : ''
|
|
|
+ channelType: this.material ? Number(this.material) : ''
|
|
|
}).then(res => {
|
|
|
this.exportLoading=false;
|
|
|
let blob = new Blob([res], {
|