123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 |
- <template>
- <div class="brandListTool">
- <h3 class="toolTit">定价捆绑</h3>
- <!-- <div class="toolBox" v-if="terminal !== 4">-->
- <!-- <div class="itemBox">-->
- <!-- <label>标题</label>-->
- <!-- <el-input v-model="activeComponent.componentContent.title" placeholder="请输入内容"></el-input>-->
- <!-- </div>-->
- <!-- </div>-->
- <div class="porListBox">
- <div class="addProduct">
- <div v-if="!activeComponent.componentContent.activityName" class="addProBtn addImgBtn" @click="selectActivity"><span class="iconfont"></span>选择活动</div>
- <div v-else class="categoryName">
- <span>{{activeComponent.componentContent.activityName}}</span>
- <div class="operation">
- <span class="iconfont" @click="replaceActivity"></span>
- <span class="iconfont" @click="deleteActivity"></span>
- </div>
- </div>
- </div>
- </div>
- <div v-if="terminal == 4">
- <div class="styleSelectLine">
- <div class="blockTit">
- <span>排列样式</span>
- <span>{{activeComponent.componentContent.arrangeType}}</span>
- </div>
- <div class="selectCompose">
- <div class="composeList">
- <span class="item iconfont" :class="{active: activeComponent.componentContent.arrangeType === item.name}" @click="selectArrange(item)" v-for="(item) of arrangeList" :key="item.id" v-html="item.Icon"></span>
- </div>
- </div>
- </div>
- <div class="toolBox" v-if="activeComponent.componentContent.arrangeType === '多行多列'">
- <div class="productTit">
- <span>展示排数</span>
- <span>{{activeComponent.componentContent.productRowNum}}</span>
- </div>
- <div class="itemBox">
- <div class="block">
- <el-slider :max="9" :min="1" v-model="activeComponent.componentContent.productRowNum"></el-slider>
- </div>
- </div>
- <div class="productTit">
- <span>每排商品数</span>
- <span>{{activeComponent.componentContent.productNum}}</span>
- </div>
- <div class="itemBox">
- <div class="block">
- <el-slider :max="5" :min="2" v-model="activeComponent.componentContent.productNum"></el-slider>
- </div>
- </div>
- </div>
- </div>
- <div class="itemChoice">
- <div class="Tit">查看更多</div>
- <div class="Info" v-text="activeComponent.componentContent.showMore ? '显示' : '隐藏'"></div>
- <div class="modifyBox">
- <el-checkbox v-model="activeComponent.componentContent.showMore"></el-checkbox>
- </div>
- </div>
- <!-- <div class="moreBox" v-show="activeComponent.componentContent.showMore">
- <div class="link">
- <tool-select-link :linkObj.sync='activeComponent.componentContent.linkObj' styleType="1"></tool-select-link>
- </div>
- </div> -->
- <el-dialog title="选择活动" :visible.sync="showSkillActivity" width="900px">
- <el-table :data='skillActivity' style="width: 100%" @row-click="rowClick" highlight-current-row>
- <el-table-column label width="35">
- <template slot-scope="scope">
- <el-radio :label="scope.row.priceId" v-model="radioId"/>
- </template>
- </el-table-column>
- <el-table-column
- prop="composeName"
- label="标题">
- </el-table-column>
- <el-table-column
- :formatter="getDate"
- width="400"
- label="活动时间">
- </el-table-column>
- <el-table-column
- prop="state"
- label="状态">
- <template slot-scope="scope">
- 进行中
- </template>
- </el-table-column>
- </el-table>
- <span slot="footer" class="dialog-footer">
- <el-button @click="cancelSkill">取 消</el-button>
- <el-button type="primary" @click="confirmActivity">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import Cookies from 'js-cookie'
- import Draggable from 'vuedraggable'
- import api from '@@/components/canvasShow/config/api'
- import {toolMixin} from '@@/config/mixin'
- import {sendReqMixin} from '@@/components/canvasShow/config/mixin'
- import { mapGetters, mapMutations } from 'vuex'
- import ToolSelect from '../toolModule/tool-select'
- import ToolSingleImg from '../toolModule/tool-single-img'
- import ToolSelectLink from '../toolModule/tool-select-link'
- export default {
- mixins: [toolMixin, sendReqMixin],
- name: 'groupTool',
- components: {
- ToolSelectLink,
- ToolSingleImg,
- ToolSelect,
- Draggable
- },
- data () {
- return {
- radioId: '',
- skillActivity: [],
- selectSkill: {},
- showSkillActivity: false,
- title: '', // 标题内容
- textInfo: '', // 文本
- imgTextData: [
- {
- title: '',
- isShow: true,
- imgData: '',
- describe: '',
- url: ''
- }
- ],
- alignList: [
- {
- id: 1,
- label: '居左',
- value: 'left'
- },
- {
- id: 2,
- label: '居中',
- value: 'center'
- }
- ],
- categoryList: [],
- textAlign: 'left',
- imgCurrent: null,
- dialogVisible: false,
- dialogCategory: false,
- currentCategory: null,
- // categoryName: '', // 类别名称
- productList: [], // 产品列表
- productNum: 2, // 商品展示数量
- labelCurrent: null,
- arrangeList: [
- // {
- // id: 1,
- // type: 'L1',
- // name: '一行一个',
- // Icon: ''
- // },
- {
- id: 2,
- type: 'L2',
- name: '多行多列',
- Icon: ''
- },
- {
- id: 3,
- type: 'L3',
- name: '横向滑动',
- Icon: ''
- }
- ]
- }
- },
- computed: {
- ...mapGetters([
- 'terminal'
- ])
- },
- methods: {
- ...mapMutations({
- setPriceNum: 'SET_PRICENUM'
- }),
- // 时间变换
- getDate(row) {
- return `${row.startTime}至${row.endTime}`
- },
- // 点击选择活动
- selectActivity() {
- this.getActivity()
- this.showSkillActivity = true
- this.radioId = this.activeComponent.componentContent.shopGroupWorkId
- },
- // 获取活动数据
- getActivity() {
- const _ = this
- const params = {
- method: 'GET',
- url: `${api.getPrices}?shopId=${Cookies.get('shopID')}`,
- }
- this.sendReq(params, (res) => {
- _.skillActivity = res.data
- })
- },
- // 行点击
- rowClick(row) {
- this.selectSkill = row;
- this.radioId=row.shopGroupWorkId;
- },
- // 确认活动选择
- confirmActivity() {
- this.activeComponent.componentContent.priceId = this.selectSkill.priceId
- this.activeComponent.componentContent.activityName = this.selectSkill.composeName
- this.showSkillActivity = false
- this.setPriceNum()
- },
- // 取消活动选择
- cancelSkill() {
- this.showSkillActivity = false;
- this.radioId = ''
- },
- // 替换活动
- replaceActivity () {
- this.showSkillActivity = true
- this.getActivity()
- },
- // 删除已选活动
- deleteActivity () {
- this.activeComponent.componentContent.activityName = ''
- this.activeComponent.componentContent.priceId = ''
- this.$forceUpdate()
- this.setPriceNum()
- },
- // 布局选择
- selectArrange (item) {
- this.activeComponent.componentContent.arrangeType = item.name
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .config-content {
- .item {
- padding: 12px 0;
- border-bottom: 1px #ddd solid;
- &:nth-child(1) {
- border-top: 1px #ddd solid;
- }
- }
- .label-text {
- color: #666;
- span {
- color: hsl(357, 97%, 49%);
- font-size: 20px;
- vertical-align: middle;
- display: inline-block;
- margin-right: 5px;
- }
- }
- .add {
- margin-top: 10px;
- width: 50px;
- height: 50px;
- text-align: center;
- line-height: 50px;
- border:1px #ddd solid;
- box-shadow: 0 0 10px #ddd;
- .el-icon-plus {
- color: blue !important;
- }
- &:hover {
- cursor: pointer;
- }
- }
- }
- .brandListTool {
- padding: 20px 20px 0px 20px;
- h3 {
- font-size: 18px;
- font-weight: 500;
- height: 35px;
- line-height: 35px;
- color: #333333;
- margin-bottom: 20px;
- }
- .toolBox {
- padding-bottom: 10px;
- .itemBox {
- label {
- font-size: 14px;
- color: #666666;
- height: 40px;
- line-height: 40px;
- }
- margin-bottom: 15px;
- }
- .textTit {
- height: 35px;
- line-height: 35px;
- font-size: 14px;
- color: #333333;
- display: flex;
- justify-content: space-between;
- span {
- font-weight: normal;
- font-size: 14px;
- color: #666666;
- }
- }
- .productTit {
- margin-top: 20px;
- color: #666666;
- height: 35px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span {
- font-size: 14px;
- color: #666666;
- }
- }
- }
- .itemChoice {
- font-size: 14px;
- display: flex;
- margin: 20px 0;
- align-items: center;
- .Tit {
- color: #888888;
- margin-right: 10px;
- width: 70px;
- }
- .Info {
- color: #222222;
- }
- .modifyBox {
- text-align: right;
- margin-left: auto;
- span {
- height: 26px;
- line-height: 26px;
- float: left;
- display: block;
- text-align: center;
- cursor: pointer;
- width: 30px;
- border: 1px solid #E8EAEC;
- }
- .textActive {
- border: 1px solid $mainColor;
- color: $mainColor;
- }
- .colorBox {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- span {
- margin-right: 10px;
- cursor: pointer;
- border: none;
- color: $mainColor;
- }
- }
- }
- .fontSize {
- span:nth-child(1) {
- font-size: 16px;
- }
- span:nth-child(2) {
- font-size: 14px;
- }
- span:nth-child(3) {
- font-size: 12px;
- }
- }
- }
- .moreBox{
- border: 1px solid #E8EAEC;
- border-radius: 4px;
- padding:20px 10px;
- .radio{
- margin-bottom: 20px;
- }
- .el-radio{
- margin-right: 10px;
- }
- .link{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- }
- .addImgBtn {
- border-radius: 4px;
- background: $mainColor;
- text-align: center;
- height: 36px;
- color: #ffffff;
- font-size: 14px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- span {
- font-size: 20px;
- margin-right: 5px;
- }
- }
- .labelLisTit{
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- }
- .labelListWarp{
- padding-bottom: 20px;
- .imgListBox {
- margin-top: 20px;
- .item {
- border: 1px solid #E8EAEC;
- border-radius: 4px;
- margin-bottom: 10px;
- }
- .listItemBox {
- .addImgTit {
- padding: 10px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #F6F7F9;
- cursor: pointer;
- .titLeft {
- display: flex;
- align-items: center;
- span {
- color: #7D7E80;
- }
- span:nth-child(1) {
- font-size: 28px;
- }
- span:nth-child(2) {
- font-size: 25px;
- margin: 0 6px;
- }
- span:nth-child(3) {
- font-size: 14px;
- }
- }
- .titRight {
- display: flex;
- align-items: center;
- span:nth-child(1) {
- width: 40px;
- text-align: center;
- display: block;
- height: 30px;
- line-height: 30px;
- }
- }
- }
- .addLabelBox{
- padding:0 10px 10px;
- .itemBox{
- margin-bottom: 20px;
- label{
- font-size: 14px;
- color: #666666;
- height: 40px;
- line-height: 40px;
- }
- }
- ::v-deep .module-box{
- margin-bottom: 10px;
- }
- }
- .deleteItem {
- padding: 10px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #F6F7F9;
- cursor: pointer;
- color: $mainColor;
- font-size: 14px;
- span {
- font-size: 16px;
- margin-right: 5px;
- }
- }
- }
- }
- }
- }
- .styleSelectLine{
- margin-top: 30px;
- .blockTit{
- span{
- margin-right: 16px;
- &:last-child{
- color: $mainColor;
- }
- }
- }
- .composeList{
- display: flex;
- flex-wrap: wrap;
- padding-top: 20px;
- .item{
- width: 50px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1px solid #E8EAEC;
- color: #999999;
- font-size: 18px;
- text-align: center;
- cursor: pointer;
- &:hover,&.active{
- color: #FF7800;
- border: 1px solid #FF7800;
- }
- }
- }
- }
- .porListBox {
- margin-top: 10px;
- padding: 10px;
- background: #F0F3F4;
- .addProduct {
- .categoryName {
- height: 35px;
- display: flex;
- align-items: center;
- background: #e9e9e9;
- border-radius: 4px;
- padding: 0 10px;
- justify-content: space-between;
- span {
- color: #333333;
- }
- span {
- color: #333333;
- }
- .operation {
- display: flex;
- span {
- width: 35px;
- display: block;
- height: 35px;
- line-height: 35px;
- text-align: center;
- cursor: pointer;
- }
- }
- }
- .addProBtn {}
- }
- }
- </style>
|