|
@@ -5,16 +5,13 @@
|
|
|
<el-card style="margin-bottom: 20px">
|
|
|
<div class="top-card-box">
|
|
|
<div class="tabs-box">
|
|
|
- <span
|
|
|
- v-for="(item, index) in listTitle"
|
|
|
- :key="item.ChartPermissionId"
|
|
|
- @click="tabsBoxBtn(item, index)"
|
|
|
- :class="index == tabsPitchon ? 'pitch' : ''"
|
|
|
- >{{ item.PermissionName }}</span
|
|
|
- >
|
|
|
+ <span v-for="(item, index) in listTitle" :key="item.ChartPermissionId" @click="tabsBoxBtn(item, index)" :class="index == tabsPitchon ? 'pitch' : ''">{{ item.PermissionName }}</span>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- <el-button type="primary" @click="$router.push('/addActivity')">添加活动</el-button>
|
|
|
+ <div style="display: flex">
|
|
|
+ <el-upload :action="baseApi + '/resource/image/upload'" :show-file-list="false" accept="image/*" :on-success="handleUploadPosterSuccess">
|
|
|
+ <el-button type="primary">识图建会</el-button>
|
|
|
+ </el-upload>
|
|
|
+ <el-button style="margin-left: 20px" type="primary" @click="$router.push('/addActivity')">添加活动</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
@@ -24,40 +21,13 @@
|
|
|
<div class="screen-box">
|
|
|
<div>
|
|
|
<el-select placeholder="行业" clearable v-model="industry" @change="conditionChange" style="margin-bottom: 20px">
|
|
|
- <el-option
|
|
|
- v-for="item in chartPermissionList"
|
|
|
- :label="item.PermissionName"
|
|
|
- :key="item.ChartPermissionId"
|
|
|
- :value="item.ChartPermissionId"
|
|
|
- ></el-option>
|
|
|
+ <el-option v-for="item in chartPermissionList" :label="item.PermissionName" :key="item.ChartPermissionId" :value="item.ChartPermissionId"></el-option>
|
|
|
</el-select>
|
|
|
<el-select placeholder="活动类型" clearable v-model="cactivityTypeVal" @change="conditionChange">
|
|
|
- <el-option
|
|
|
- v-for="item in cactivityTypeList"
|
|
|
- :label="item.ActivityTypeName"
|
|
|
- :key="item.ActivityTypeId"
|
|
|
- :value="item.ActivityTypeId"
|
|
|
- ></el-option>
|
|
|
+ <el-option v-for="item in cactivityTypeList" :label="item.ActivityTypeName" :key="item.ActivityTypeId" :value="item.ActivityTypeId"></el-option>
|
|
|
</el-select>
|
|
|
- <el-date-picker
|
|
|
- v-model="publishDate"
|
|
|
- type="date"
|
|
|
- placeholder="发布时间"
|
|
|
- format="yyyy 年 MM 月 dd 日"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- @change="conditionChange"
|
|
|
- >
|
|
|
- </el-date-picker>
|
|
|
- <date-picker
|
|
|
- style="margin-bottom: 20px"
|
|
|
- v-model="issueTime"
|
|
|
- type="date"
|
|
|
- range
|
|
|
- placeholder="活动时间"
|
|
|
- value-type="format"
|
|
|
- @change="conditionChange"
|
|
|
- >
|
|
|
- </date-picker>
|
|
|
+ <el-date-picker v-model="publishDate" type="date" placeholder="发布时间" format="yyyy 年 MM 月 dd 日" value-format="yyyy-MM-dd" @change="conditionChange"> </el-date-picker>
|
|
|
+ <date-picker style="margin-bottom: 20px" v-model="issueTime" type="date" range placeholder="活动时间" value-type="format" @change="conditionChange"> </date-picker>
|
|
|
<el-select placeholder="发布状态" clearable v-model="status" @change="conditionChange" style="margin-bottom: 20px">
|
|
|
<el-option v-for="item in options" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
|
|
</el-select>
|
|
@@ -100,7 +70,7 @@
|
|
|
<span class="editsty" @click="editBtn(row.ActivityId, row.PublishStatus)">编辑</span>
|
|
|
|
|
|
<span class="deletesty" v-if="row.PublishStatus == 0 && tabsPitchon == 0" @click="operationBtn(row.ActivityId, '删除')">删除</span>
|
|
|
- <span class="editsty" v-if="row.IsShowSigninButton " @click="handleDownLoadImg(row)">下载签到码</span>
|
|
|
+ <span class="editsty" v-if="row.IsShowSigninButton" @click="handleDownLoadImg(row)">下载签到码</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -110,6 +80,7 @@
|
|
|
</el-col>
|
|
|
</el-card>
|
|
|
<atc-particulars :dialogVisible.sync="dialogVisible" :detailData.sync="detailData" />
|
|
|
+ <imgMeeting :isShowImgMeetingDlg.sync="isShowImgMeetingDlg" :imgMeetingData.sync="imgMeetingData" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -117,9 +88,10 @@
|
|
|
import mPage from "@/components/mPage.vue";
|
|
|
import { raiInterface } from "@/api/api.js";
|
|
|
import AtcParticulars from "../components/atcParticulars.vue";
|
|
|
+import imgMeeting from "./components/imgMeeting.vue";
|
|
|
export default {
|
|
|
name: "",
|
|
|
- components: { mPage, AtcParticulars },
|
|
|
+ components: { mPage, AtcParticulars, imgMeeting },
|
|
|
props: {},
|
|
|
data() {
|
|
|
return {
|
|
@@ -159,6 +131,28 @@ export default {
|
|
|
detailData: {}, //
|
|
|
activityLabel: "",
|
|
|
publishDate: "",
|
|
|
+ baseApi: process.env.API_ROOT,
|
|
|
+ isShowImgMeetingDlg: true,
|
|
|
+ imgMeetingData: [
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第一个",
|
|
|
+ id: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第二个",
|
|
|
+ id: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第三个",
|
|
|
+ id: 3,
|
|
|
+ },
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -331,6 +325,32 @@ export default {
|
|
|
a.click();
|
|
|
};
|
|
|
},
|
|
|
+ // 上传成功
|
|
|
+ handleUploadPosterSuccess(res, file) {
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ this.isShowImgMeetingDlg = true;
|
|
|
+ this.imgMeetingData = [
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第一个",
|
|
|
+ id: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第二个",
|
|
|
+ id: 2,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ date: "2023-07-24",
|
|
|
+ time: "10:00",
|
|
|
+ name: "第三个",
|
|
|
+ id: 3,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
/* 页面跳转前记录参数 */
|
|
|
beforeRouteLeave(to, form, next) {
|