|
@@ -15,7 +15,7 @@
|
|
<!-- <a-input placeholder="请输入剪辑的名字" v-model="clip" style="width:140px" /> -->
|
|
<!-- <a-input placeholder="请输入剪辑的名字" v-model="clip" style="width:140px" /> -->
|
|
<a-select v-model="clip" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select v-model="clip" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
- {{item.compantName +'_'+item.userName }}
|
|
|
|
|
|
+ {{item.companyName +'_'+item.userName }}
|
|
</a-select-option>
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
</span>
|
|
</span>
|
|
@@ -24,7 +24,7 @@
|
|
<!-- <a-input placeholder="请输入拍摄的名字" v-model="shot" style="width:140px" /> -->
|
|
<!-- <a-input placeholder="请输入拍摄的名字" v-model="shot" style="width:140px" /> -->
|
|
<a-select v-model="shot" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select v-model="shot" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
- {{item.compantName +'_'+item.userName }}
|
|
|
|
|
|
+ {{item.companyName +'_'+item.userName }}
|
|
</a-select-option>
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
</span>
|
|
</span>
|
|
@@ -33,12 +33,12 @@
|
|
<!-- <a-input placeholder="请输入编导的名字" v-model="plan" style="width:140px" /> -->
|
|
<!-- <a-input placeholder="请输入编导的名字" v-model="plan" style="width:140px" /> -->
|
|
<a-select v-model="plan" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select v-model="plan" style="width: 140px" allowClear show-search :filter-option="filterOption">
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
<a-select-option v-for="item in designList" :key="item.userId" :value='item.userId'>
|
|
- {{item.compantName +'_'+item.userName }}
|
|
|
|
|
|
+ {{item.companyName +'_'+item.userName }}
|
|
</a-select-option>
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
- <a-button type="primary" @click="searchRes">查询</a-button>
|
|
|
|
|
|
+ <a-button type="primary" @click="searchRes" :loading='searchLoading'>查询</a-button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- <div style="margin:15px 0" class="btndiv">
|
|
<!-- <div style="margin:15px 0" class="btndiv">
|
|
@@ -494,6 +494,8 @@ let detailColumn=[
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ searchLoading:false,
|
|
|
|
+
|
|
designList:[],
|
|
designList:[],
|
|
detailLoading:false,
|
|
detailLoading:false,
|
|
clip:undefined,
|
|
clip:undefined,
|
|
@@ -718,6 +720,7 @@ export default {
|
|
//网络请求table数据函数
|
|
//网络请求table数据函数
|
|
HttpPost(){
|
|
HttpPost(){
|
|
this.loading=true;
|
|
this.loading=true;
|
|
|
|
+ this.searchLoading=true
|
|
show = 0
|
|
show = 0
|
|
postAction('/ctop/kuaishou/videoReport/list', {
|
|
postAction('/ctop/kuaishou/videoReport/list', {
|
|
startDate: this.dateValue[0].format('YYYY-MM-DD'),
|
|
startDate: this.dateValue[0].format('YYYY-MM-DD'),
|
|
@@ -733,7 +736,8 @@ export default {
|
|
}).then(res => {
|
|
}).then(res => {
|
|
let resArr = []
|
|
let resArr = []
|
|
this.data=[];
|
|
this.data=[];
|
|
- this.loading = false
|
|
|
|
|
|
+ this.loading = false;
|
|
|
|
+ this.searchLoading=false;
|
|
if (res.success) {
|
|
if (res.success) {
|
|
// let result = res.result
|
|
// let result = res.result
|
|
// this.data.push({ ...result, key: 1 })
|
|
// this.data.push({ ...result, key: 1 })
|