|
@@ -27,7 +27,13 @@
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
<el-table :data="tableData" stripe style="width: 100%">
|
|
<el-table :data="tableData" stripe style="width: 100%">
|
|
- <el-table-column prop="creativeName" label="名称" />
|
|
|
|
|
|
+ <el-table-column prop="creativeName" label="名称">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-button text @click="() => linkSourceMaterial(scope.row.creativeId)">{{
|
|
|
|
+ scope.row.creativeName
|
|
|
|
+ }}</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column prop="statusDesc" label="状态" width="80" />
|
|
<el-table-column prop="statusDesc" label="状态" width="80" />
|
|
<el-table-column prop="publishStatusDesc" label="发布状态" width="80" />
|
|
<el-table-column prop="publishStatusDesc" label="发布状态" width="80" />
|
|
<el-table-column prop="startDate" label="生效日期" width="120" />
|
|
<el-table-column prop="startDate" label="生效日期" width="120" />
|
|
@@ -70,10 +76,10 @@
|
|
<el-button link type="primary" size="small">下线</el-button>
|
|
<el-button link type="primary" size="small">下线</el-button>
|
|
</template>
|
|
</template>
|
|
</el-popconfirm>
|
|
</el-popconfirm>
|
|
- <el-button link type="primary" size="small" @click="() => creatEditPlan(scope.row)">
|
|
|
|
- 修改
|
|
|
|
- </el-button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
+ <el-button link type="primary" size="small" @click="() => creatEditPlan(scope.row)">
|
|
|
|
+ 修改
|
|
|
|
+ </el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -231,7 +237,7 @@ const dialogVisible = ref(false)
|
|
const form = ref<OriginalityItem>({})
|
|
const form = ref<OriginalityItem>({})
|
|
const page = ref<Pages>({
|
|
const page = ref<Pages>({
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
- pageSize: 10,
|
|
|
|
|
|
+ pageSize: 20,
|
|
total: 0,
|
|
total: 0,
|
|
keyword: '',
|
|
keyword: '',
|
|
})
|
|
})
|