| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910 |
- <template>
- <div id="activeConfiguration">
- <search-box :formList="formList" @search="search" @init="init" />
- <table-list
- :tableSets="tableSet"
- :tableData="tableData"
- :navText="navText"
- @addClick="addClick"
- :loading="loading"
- >
- <template slot="btn" slot-scope="props">
- <el-button
- type="text"
- @click="changeStatus(props.scope.row, 3)"
- v-if="props.scope.row.status === 2 || props.scope.row.status === 4"
- >开始</el-button
- >
- <el-button
- type="text"
- @click="changeStatus(props.scope.row, 1)"
- v-if="props.scope.row.status === 3"
- >结束</el-button
- >
- <el-button type="text" @click="addClick(props.scope.row, 2)"
- >详情</el-button
- >
- <el-button
- type="text"
- @click="changeStatus(props.scope.row, 2)"
- v-if="props.scope.row.status === 3"
- >撤回</el-button
- >
- <el-button
- type="text"
- @click="addClick(props.scope.row, 0)"
- v-if="props.scope.row.status === 2 || props.scope.row.status === 4"
- >修改</el-button
- >
- <el-button
- type="text"
- @click="changeStatus(props.scope.row, 0)"
- v-if="props.scope.row.status === 4"
- >删除</el-button
- >
- </template>
- </table-list>
- <pagination
- :total="total"
- :pageSize="pageSize"
- :currentPage="currentPage"
- @handleSizeChange="handleSizeChange"
- @handleCurrentChange="handleCurrentChange"
- />
- <el-dialog
- :visible.sync="dialogBox"
- width="920px"
- :show-close="false"
- :destroy-on-close="true"
- :before-close="closeBefore"
- :fullscreen="fullscreen"
- >
- <div slot="title" class="hearders">
- <div class="leftTitle">
- {{ statusPop === 1 ? "添加" : statusPop === 0 ? "修改" : "详情" }}
- </div>
- <div class="rightBoxs">
- <img
- src="@/assets/images/Max@2x.png"
- alt=""
- @click="fullscreen = !fullscreen"
- />
- <img src="@/assets/images/Close@2x.png" alt="" @click="closeBefore" />
- </div>
- </div>
- <el-row class="contentBox" :span="24">
- <el-col :span="12">
- <el-col :span="24">
- <header>活动名称:</header>
- <el-input
- :disabled="statusPop === 2"
- placeholder="请输入活动名称"
- v-model="formLabelAlign.activityName"
- /></el-col>
- <el-col :span="24">
- <header>活动链接:</header>
- <el-input
- :disabled="statusPop === 2"
- placeholder="请输入活动链接"
- v-model="formLabelAlign.activityUrl"
- />
- </el-col>
- <el-col :span="24">
- <header>活动类型:</header>
- <el-select
- style="width: 100%"
- v-model="formLabelAlign.activityType"
- placeholder="请选择活动类型"
- :disabled="statusPop === 2"
- >
- <el-option
- v-for="item in activityList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-col>
- <el-col :span="24" v-if="formLabelAlign.activityType !== 2">
- <header>活动范围:</header>
- <el-select
- style="width: 100%"
- multiple
- v-model="formLabelAlign.courses"
- placeholder="请选择活动类型"
- :disabled="statusPop === 2"
- >
- <el-option
- v-for="(item, index) in courseList"
- :key="index"
- :label="item.courseName"
- :value="item.courseId"
- >
- </el-option>
- </el-select>
- </el-col>
- <el-col :span="24" v-if="formLabelAlign.activityType !== 2">
- <header>
- {{
- formLabelAlign.activityType === 0
- ? "金额"
- : formLabelAlign.activityType === 1
- ? "折扣"
- : formLabelAlign.activityType === 3
- ? "商品金额"
- : formLabelAlign.activityType === 4
- ? "优惠金额"
- : formLabelAlign.activityType === 5
- ? "商品折扣"
- : "未定义"
- }}:
- </header>
- <el-input
- placeholder="请输入"
- v-model="formLabelAlign.price"
- :disabled="statusPop === 2"
- >
- <template slot="append">{{
- formLabelAlign.activityType === 0 ||
- formLabelAlign.activityType === 3 ||
- formLabelAlign.activityType === 4 ||
- formLabelAlign.activityType === 5
- ? "¥"
- : "折"
- }}</template>
- </el-input>
- </el-col>
- <el-col
- :span="24"
- v-if="
- formLabelAlign.activityType === 0 ||
- formLabelAlign.activityType === 1
- "
- >
- <header>
- {{
- formLabelAlign.activityType === 0
- ? "优惠券"
- : formLabelAlign.activityType === 1
- ? "折扣券"
- : "未定义"
- }}有效期:
- </header>
- <el-input
- placeholder="请输入有效期"
- v-model="formLabelAlign.couponEnd"
- :disabled="statusPop === 2"
- >
- <template slot="append">月</template>
- </el-input>
- </el-col>
- <el-col :span="24">
- <header>活动时间:</header>
- <el-date-picker
- :disabled="statusPop === 2"
- v-model="releaseTime"
- type="datetimerange"
- range-separator="~"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="timestamp"
- >
- </el-date-picker>
- </el-col>
- <el-col :span="24">
- <header>备注:</header>
- <el-input
- :disabled="statusPop === 2"
- placeholder="请输入备注"
- v-model="formLabelAlign.description"
- />
- </el-col>
- </el-col>
- <el-col :span="12">
- <el-col :span="24">
- <header>活动封面:</header>
- <div class="imgBox">
- <label class="imgLabel" for="inputs">
- <div class="msPhoto" v-if="formLabelAlign.activityLogo">
- <img
- :src="
- $methodsTools.splitImgHost(formLabelAlign.activityLogo)
- "
- alt="图片加载失败"
- />
- </div>
- <div class="imgbbx" v-else>
- <p style="margin-top: 49px">点击添加或将文件拖拽到这里上传</p>
- <i class="el-icon-plus"></i>
- <p style="margin-bottom: 37px">
- 图片格式:.jpg/.png/jpeg/bmp
- </p>
- </div>
- <input
- id="inputs"
- type="file"
- ref="file"
- :disabled="statusPop === 2"
- style="display: none"
- @change="getImgFile"
- />
- </label>
- <p>请上传分辨率为100x100且大小小于2m的图片</p>
- </div>
- </el-col>
- <el-col :span="24">
- <header>活动详情图:</header>
- <div class="imgBox">
- <label class="imgLabel" for="inputsimg">
- <div class="msPhoto" v-if="formLabelAlign.activityContentUrl">
- <img
- :src="
- $methodsTools.splitImgHost(formLabelAlign.activityContentUrl)
- "
- alt="图片加载失败"
- />
- </div>
- <div class="imgbbx" v-else>
- <p style="margin-top: 49px">点击添加或将文件拖拽到这里上传</p>
- <i class="el-icon-plus"></i>
- <p style="margin-bottom: 37px">
- 图片格式:.jpg/.png/jpeg/bmp
- </p>
- </div>
- <input
- id="inputsimg"
- type="file"
- ref="fileimg"
- :disabled="statusPop === 2"
- style="display: none"
- @change="getImgFileImg"
- />
- </label>
- <p>请上传活动详情图</p>
- </div>
- </el-col>
- <el-col :span="24" v-if="formLabelAlign.activityType === 2">
- <header>直播内容:</header>
- <el-input
- :disabled="statusPop === 2"
- placeholder="请输入直播内容"
- v-model="formLabelAlign.liveContent"
- />
- </el-col>
- <el-col :span="24" v-if="formLabelAlign.activityType !== 2">
- <header>发放数量:</header>
- <el-input-number
- :disabled="statusPop === 2"
- v-model="formLabelAlign.quantity"
- controls-position="right"
- :min="0"
- style="width: 100%"
- ></el-input-number>
- </el-col>
- </el-col>
- </el-row>
- <div slot="footer" class="dialog-footer">
- <el-button @click="closeBefore">取 消</el-button>
- <el-button
- type="primary"
- @click="rulesTableSumbit"
- v-if="statusPop !== 2"
- >确 定</el-button
- >
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import searchBox from "@/components/searchBox";
- import tableList from "@/components/tableList";
- import pagination from "@/components/pagination";
- export default {
- components: { searchBox, tableList, pagination },
- data() {
- return {
- loading: false, //当前表单加载是否加载动画
- navText: {
- title: "活动配置",
- index: 0,
- ch: "条",
- num: true,
- choice: true,
- addHide: false,
- backFatherBtn: {
- status: false,
- title: "未定义",
- },
- },
- statusPop: 0,
- fullscreen: false,
- dialogBox: false,
- activityList: [
- {
- label: "优惠券",
- value: 0,
- },
- {
- label: "折扣券",
- value: 1,
- },
- {
- label: "线上直播",
- value: 2,
- },
- {
- label: "定价",
- value: 3,
- },
- {
- label: "优惠",
- value: 4,
- },
- {
- label: "折扣",
- value: 5,
- },
- ],
- //搜索
- formList: [
- {
- label: "活动类型",
- prop: "activityType",
- placeholder: "请选择活动类型",
- scope: "select",
- options: [
- {
- label: "优惠券",
- value: 0,
- },
- {
- label: "折扣券",
- value: 1,
- },
- {
- label: "线上直播",
- value: 2,
- },
- {
- label: "定价",
- value: 3,
- },
- {
- label: "优惠",
- value: 4,
- },
- {
- label: "折扣",
- value: 5,
- },
- ],
- },
- {
- label: "活动状态",
- prop: "status",
- placeholder: "请选择活动状态",
- scope: "select",
- options: [
- {
- label: "已删除",
- value: 0,
- },
- {
- label: "已结束",
- value: 1,
- },
- {
- label: "已撤回",
- value: 2,
- },
- {
- label: "已开始",
- value: 3,
- },
- {
- label: "未开始",
- value: 4,
- },
- ],
- },
- {
- label: "活动时间",
- prop: "startTimeList",
- scope: "datePicker",
- },
- {
- label: "活动名称",
- prop: "activityName",
- placeholder: "请输入活动名称",
- },
- ],
- // 表单
- tableSet: [
- {
- label: "活动名称",
- prop: "activityName",
- hidden: true,
- },
- {
- label: "活动类型",
- prop: "activityType",
- hidden: true,
- scope: "activityType",
- },
- {
- label: "活动说明",
- prop: "activityType",
- hidden: true,
- scope: "activityRemarks",
- },
- {
- label: "活动时间",
- prop1: "startTime",
- prop2: "endTime",
- hidden: true,
- scope: "TimeLists",
- },
- {
- label: "活动状态",
- prop: "status",
- hidden: true,
- scope: "statusActivity",
- },
- {
- label: "发放数量",
- prop: "quantity",
- hidden: true,
- },
- {
- label: "参与人数",
- prop: "userNumber",
- hidden: true,
- },
- {
- label: "备注",
- prop: "description",
- hidden: true,
- },
- ],
- formLabelAlign: {},
- releaseTime: [],
- tableData: [], //表单数据
- total: 0, //一共多少条
- pageSize: 10, //每页多少条数据
- currentPage: 1, //当前页码
- beif: {},
- courseList: [],
- };
- },
- mounted() {
- this.search();
- this.getCourse();
- },
- methods: {
- getCourse() {
- this.$api
- .inquireCourseList({
- status: 1,
- })
- .then((res) => {
- if (res.code === 200) {
- this.courseList = res.rows;
- }
- });
- },
- getImgFile() {
- var self = this;
- var file = this.$refs.file.files[0];
- if (file === undefined) {
- self.$set(self.formLabelAlign, "activityLogo", "");
- return;
- }
- if (file.size > 2 * 1024 * 1024) {
- this.$message.error("图片不得大于2MB");
- return;
- }
- var type = this.$refs.file.value.toLowerCase().split(".").splice(-1);
- if (
- type[0] != "jpg" &&
- type[0] != "png" &&
- type[0] != "jpeg" &&
- type[0] != "bmp"
- ) {
- this.$message.error("上传格式需为:.jpg/.png/.jpeg/bmp");
- this.$refs.file.value = "";
- return;
- }
- var reader = new FileReader();
- reader.readAsDataURL(file);
- reader.onload = function (ev) {
- self.$set(self.formLabelAlign, "activityLogo", ev.target.result);
- };
- },
- getImgFileImg(){
- var self = this;
- var file = this.$refs.fileimg.files[0];
- if (file === undefined) {
- self.$set(self.formLabelAlign, "activityContentUrl", "");
- return;
- }
- if (file.size > 5 * 1024 * 1024) {
- this.$message.error("图片不得大于5MB");
- return;
- }
- var type = this.$refs.fileimg.value.toLowerCase().split(".").splice(-1);
- if (
- type[0] != "jpg" &&
- type[0] != "png" &&
- type[0] != "jpeg" &&
- type[0] != "bmp"
- ) {
- this.$message.error("上传格式需为:.jpg/.png/.jpeg/bmp");
- this.$refs.fileimg.value = "";
- return;
- }
- var reader = new FileReader();
- reader.readAsDataURL(file);
- reader.onload = function (ev) {
- self.$set(self.formLabelAlign, "activityContentUrl", ev.target.result);
- };
- },
- search(v) {
- this.loading = true;
- if (v === undefined) {
- v = {
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- };
- }
- var data = {
- activityName: v.activityName,
- status: v.status,
- activityType: v.activityType,
- startTime: v.startTimeList ? (v.startTimeList[0] / 1000).toFixed(0) : "",
- endTime: v.startTimeList ? (v.startTimeList[1] / 1000).toFixed(0) : "",
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- };
- this.$api.inquireActiveConfiguration(data).then((res) => {
- this.tableData = res.rows;
- this.total = res.total;
- this.navText.index = res.total;
- });
- this.loading = false;
- },
- init() {
- this.search();
- },
- addClick(v, int) {
- if (int === undefined) {
- this.statusPop = 1;
- this.formLabelAlign = {};
- } else {
- this.beif = JSON.stringify(v);
- this.formLabelAlign = JSON.parse(this.beif);
- this.releaseTime = [
- this.formLabelAlign.startTime * 1000,
- this.formLabelAlign.endTime * 1000,
- ];
- this.statusPop = int;
- }
- this.dialogBox = true;
- },
- closeBefore() {
- if (this.statusPop === 2) {
- this.dialogBox = false;
- this.fullscreen = false;
- } else {
- this.$confirm("此操作将关闭窗口, 是否继续?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- this.dialogBox = false;
- this.fullscreen = false;
- this.formLabelAlign = {};
- })
- .catch(() => {});
- }
- },
- async rulesTableSumbit() {
- if (!this.formLabelAlign.activityName) {
- this.$message.error("请输入活动名称");
- return;
- }
- if (
- this.formLabelAlign.activityLogo === "" ||
- this.formLabelAlign.activityLogo === undefined
- ) {
- this.$message.error("请上传活动图标");
- return;
- }
- if (
- this.formLabelAlign.activityContentUrl === "" ||
- this.formLabelAlign.activityContentUrl === undefined
- ) {
- this.$message.error("请上传活动详情图");
- return;
- }
- if (!this.formLabelAlign.activityUrl) {
- this.$message.error("请输入跳转链接");
- return;
- }
- if (!this.releaseTime) {
- this.$message.error("请选择活动时间");
- return;
- }
- if (this.formLabelAlign.activityType !== 2) {
- if (this.formLabelAlign.courses.length === 0) {
- this.$message.error("请选择活动范围");
- return;
- }
- if (
- this.formLabelAlign.price === "" ||
- this.formLabelAlign.price == undefined ||
- this.formLabelAlign.price === null
- ) {
- this.$message.error("请选择金额/折扣/优惠金额");
- return;
- }
- if (
- this.formLabelAlign.quantity === "" ||
- this.formLabelAlign.quantity == undefined ||
- this.formLabelAlign.quantity === null
- ) {
- this.$message.error("请输入发放数量");
- return;
- }
- } else {
- if (!this.formLabelAlign.liveContent) {
- this.$message.error("请输入直播内容");
- return;
- }
- }
- if (this.statusPop === 0) {
- var objNew = JSON.parse(this.beif);
- if (this.formLabelAlign.activityLogo !== objNew.activityLogo) {
- const awtimg01 = await this.imgUpload(0);
- }
- if (this.formLabelAlign.activityContentUrl !== objNew.activityContentUrl) {
- const awtimg02 = await this.imgUploadimg(0);
- }
- } else {
- const awtimg1 = await this.imgUpload(0);
- const awtimg2 = await this.imgUploadimg(0);
- }
- var data = {
- activityName: this.formLabelAlign.activityName,
- activityUrl: this.formLabelAlign.activityUrl,
- activityType: this.formLabelAlign.activityType,
- startTime: Number(this.releaseTime[0]) / 1000,
- endTime: Number(this.releaseTime[1]) / 1000,
- description: this.formLabelAlign.description,
- activityLogo: this.formLabelAlign.activityLogo,
- activityContentUrl:this.formLabelAlign.activityContentUrl
- };
- if (this.formLabelAlign.activityType !== 2) {
- if (
- this.formLabelAlign.activityType === 0 ||
- this.formLabelAlign.activityType === 1
- ) {
- data.couponEnd = this.formLabelAlign.couponEnd;
- }
- data.coursesId = this.formLabelAlign.courses;
- data.price = this.formLabelAlign.price;
- data.quantity = this.formLabelAlign.quantity;
- } else {
- data.liveContent = this.formLabelAlign.liveContent;
- }
- if (this.statusPop === 1) {
- data.status = 4;
- this.$api.addActiveConfiguration(data).then((sult) => {
- this.$message.success("添加成功!");
- this.dialogBox = false;
- this.search();
- });
- } else {
- data.id = this.formLabelAlign.id;
- data.status = this.formLabelAlign.status;
- this.$api.editActiveConfiguration(data).then((sult) => {
- this.$message.success("修改成功!");
- this.dialogBox = false;
- this.search();
- });
- }
- },
- changeStatus(v, int) {
- var self = this;
- var data = {
- id: v.id,
- status: int,
- };
- this.$api.editActiveConfiguration(data).then((res) => {
- if (res.code === 200) {
- if (int === 0) {
- self.$message.success("删除成功");
- } else if (int === 1) {
- self.$message.success("结束成功");
- } else if (int === 2) {
- self.$message.success("撤回成功");
- } else if (int === 3) {
- self.$message.success("开始成功");
- }
- this.search();
- }
- });
- },
- imgUpload(int) {
- return new Promise((resolve, reject) => {
- this.$upload
- .upload(this.$refs.file.files[0], int)
- .then((res) => {
- console.log(res);
- this.$set(this.formLabelAlign, "activityLogo", res);
- resolve();
- })
- .catch((err) => {
- this.$message.error("活动封面图上传错误");
- });
- });
- },
- imgUploadimg(int) {
- return new Promise((resolve, reject) => {
- this.$upload
- .upload(this.$refs.fileimg.files[0], int)
- .then((res) => {
- console.log(res);
- this.$set(this.formLabelAlign, "activityContentUrl", res);
- resolve();
- })
- .catch((err) => {
- this.$message.error("活动详情图上传错误");
- });
- });
- },
- handleSizeChange(v) {
- this.pageSize = v;
- this.currentPage = 1;
- this.search();
- },
- handleCurrentChange(v) {
- this.currentPage = v;
- this.search();
- },
- },
- };
- </script>
- <style lang="less" scoped>
- /deep/.el-button {
- border-radius: 8px;
- }
- /deep/.el-dialog {
- border-radius: 8px;
- .el-dialog__header {
- padding: 0;
- .hearders {
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0px 18px 0px 20px;
- border-bottom: 1px solid #e2e2e2;
- .leftTitle {
- font-size: 14px;
- font-weight: bold;
- color: #2f4378;
- }
- .rightBoxs {
- display: flex;
- align-items: center;
- img {
- width: 14px;
- height: 14px;
- margin-left: 13px;
- cursor: pointer;
- }
- }
- }
- }
- .el-dialog__body {
- padding: 0;
- .contentBox {
- padding: 20px 20px 5px;
- .el-col {
- padding: 0px 20px;
- margin-bottom: 30px;
- header {
- margin-bottom: 6px;
- color: #2f4378;
- font-size: 14px;
- }
- }
- }
- }
- .el-dialog__footer {
- padding: 0;
- .dialog-footer {
- padding: 0px 40px;
- height: 70px;
- border-top: 1px solid #e2e2e2;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- }
- }
- .imgBox {
- width: 100%;
- // height: 210px;
- border: 1px solid #e2e2e2;
- border-radius: 8px;
- padding: 8px 8px 3px;
- display: flex;
- flex-direction: column;
- align-items: center;
- .imgLabel {
- flex: 1;
- width: 100%;
- border: 1px dotted #e2e2e2;
- color: #999;
- font-size: 14px;
- cursor: pointer;
- border-radius: 8px;
- .msPhoto {
- display: flex;
- justify-content: center;
- align-items: center;
- max-width: 100%;
- max-height: 270px;
- img {
- max-width: 100%;
- max-height: 270px;
- }
- }
- .imgbbx {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- i {
- font-weight: bold;
- margin: 14px 0;
- font-size: 24px;
- }
- }
- }
- p {
- margin: 5px 0px;
- }
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409eff;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 178px;
- height: 178px;
- line-height: 178px;
- text-align: center;
- }
- .avatar {
- width: 178px;
- height: 178px;
- display: block;
- }
- </style>
|