|
@@ -468,19 +468,6 @@ a {
|
|
|
>
|
|
|
人员修改</a
|
|
|
>
|
|
|
- <!-- <a
|
|
|
- href="javascript:;"
|
|
|
- style="margin-left:20px"
|
|
|
- @click="edit(items, '2')"
|
|
|
- v-show="active == '0' || active == '1'"
|
|
|
- v-if="
|
|
|
- role.roleCode == 'operator' ||
|
|
|
- role.roleCode == 'kuaishouOperationManager' ||
|
|
|
- role.roleCode == 'admin'
|
|
|
- "
|
|
|
- >
|
|
|
- 驳回</a
|
|
|
- > -->
|
|
|
<a-popconfirm
|
|
|
@confirm="okEditShow(items, '2')"
|
|
|
v-show="active != '2'"
|
|
@@ -748,6 +735,9 @@ a {
|
|
|
'planId', // 给表单赋值或拉取表单时,该input对应的key
|
|
|
{ rules: [{ required: true, message: '请选择策划!' }] }
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.planId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -759,6 +749,9 @@ a {
|
|
|
v-decorator="[
|
|
|
'shotId' // 给表单赋值或拉取表单时,该input对应的key
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.shotId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -771,6 +764,9 @@ a {
|
|
|
'clipId', // 给表单赋值或拉取表单时,该input对应的key
|
|
|
{ rules: [{ required: true, message: '请选择剪辑!' }] }
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.clipId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -1111,6 +1107,9 @@ a {
|
|
|
'planId', // 给表单赋值或拉取表单时,该input对应的key
|
|
|
{ rules: [{ required: true, message: '请选择策划!' }] }
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.planId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -1122,6 +1121,9 @@ a {
|
|
|
v-decorator="[
|
|
|
'shotId' // 给表单赋值或拉取表单时,该input对应的key
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.shotId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -1134,6 +1136,9 @@ a {
|
|
|
'clipId', // 给表单赋值或拉取表单时,该input对应的key
|
|
|
{ rules: [{ required: true, message: '请选择剪辑!' }] }
|
|
|
]"
|
|
|
+ showSearch
|
|
|
+ optionFilterProp="children"
|
|
|
+ :filterOption="filterOption"
|
|
|
>
|
|
|
<a-select-option :value="item.userId" v-for="item of ascription.clipId" :key="item.userId">
|
|
|
{{ item.userName }}
|
|
@@ -1245,7 +1250,11 @@ export default {
|
|
|
{
|
|
|
value: '2',
|
|
|
tab: '已驳回'
|
|
|
- }
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // value: '3',
|
|
|
+ // tab: '有效视频'
|
|
|
+ // }
|
|
|
],
|
|
|
// 表头
|
|
|
columns: [],
|
|
@@ -2011,12 +2020,25 @@ export default {
|
|
|
callbackTwo(key) {
|
|
|
this.checkAll = false
|
|
|
this.checkArr = []
|
|
|
- if (this.form.getFieldValue('projectId')) {
|
|
|
- this.form.setFieldsValue({
|
|
|
- projectId: ''
|
|
|
- })
|
|
|
+ if(key == '3'){
|
|
|
+ this.url.list = "/ctop/materialInfo/effiMaterialInfo"
|
|
|
+ this.queryParam = {
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ this.url.list = "/ctop/materialInfo/list"
|
|
|
+ this.queryParam = {
|
|
|
+ type: 'VIDEO',
|
|
|
+ userId: this.userInfo().id,
|
|
|
+ status: key
|
|
|
+ }
|
|
|
+ if (this.form.getFieldValue('projectId')) {
|
|
|
+ this.form.setFieldsValue({
|
|
|
+ projectId: ''
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
- this.queryParam.status = key
|
|
|
+
|
|
|
+ // this.queryParam.status = key
|
|
|
this.loadData(1)
|
|
|
},
|
|
|
overUpload(urlAll) {
|