123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 |
- <template>
- <app-layout>
- <view v-if="list.length > 0" class="dir-left-wrap cat-list">
- <view v-for="(item,index) in list" :key="item.value" class="cross-center dir-left-nowrap cat-item" :style="{'color':color, 'background-color': mch_id == 0 ? '#ECF0FF':'#FFECEC'}">
- <view>{{item.label}}</view>
- <view @click="delCat(index)" class="close cross-center main-center">
- <image :src="mch_id == 0 ? './../image/cat-close.png': './../image/mch-cat-close.png'"></image>
- </view>
- </view>
- </view>
- <view v-if="mch_id || mch_id == 0" class='add-cat' @click='add'>
- <view class='add-cat-btn main-center' :style="{'border-color': color,'color': color}">
- <image :src="mch_id == 0 ? './../image/add.png': './../image/mch-add.png'"></image>
- <view>添加分类</view>
- </view>
- </view>
- <view :class="['add main-between', `${iphone_x? 'iphone_x':''}`]">
- <view v-if="!(type == 'mall' && mch_id > 0)" class="add-btn" :style="{'border-color': color,'color': color}" @click="settingCat">分类管理</view>
- <view :style="{'background-color':color}" class="save-btn" :class="{'all' : type == 'mall' && mch_id > 0}" @click="save">保存</view>
- </view>
- <view class="dialog" v-if="dialog">
- <view class="picker-list">
- <view class="main-between picker-header" :style="{'color': color}">
- <view @click="cancel">取消</view>
- <view @click="toAdd">新增</view>
- </view>
- <picker-view indicator-style="height: 34px;" @change="bindChange">
- <picker-view-column>
- <view
- v-for="(item,idx) in cat" :key="item.value"
- :style="{'color': index_1 == idx ? color : index_1 == idx + 1 || index_1 == idx - 1 ? '#999999' : index_1 == idx + 2 || index_1 == idx - 2 ? '#cdcdcd' : ''}"
- class="picker-view t-omit">
- {{item.label}}
- </view>
- </picker-view-column>
- <picker-view-column>
- <view
- v-for="(item,idx) in sec_list" :key="item.value"
- :style="{'color': index_2 == idx ? color : index_2 == idx + 1 || index_2 == idx - 1 ? '#999999' : index_2 == idx + 2 || index_2 == idx - 2 ? '#cdcdcd' : ''}"
- class="picker-view t-omit">
- {{item.label}}
- </view>
- </picker-view-column>
- <picker-view-column>
- <view
- v-for="(item,idx) in third_list" :key="item.value"
- :style="{'color': index_3 == idx ? color : index_3 == idx + 1 || index_3 == idx - 1 ? '#999999' : index_3 == idx + 2 || index_3 == idx - 2 ? '#cdcdcd' : ''}"
- class="picker-view t-omit">
- {{item.label}}
- </view>
- </picker-view-column>
- </picker-view>
- </view>
- </view>
- </app-layout>
- </template>
- <script>
- export default {
- data() {
- return {
- iphone_x: false,
- first: true,
- cat: [],
- sec_list: [],
- third_list: [],
- list: [],
- mch_id: null,
- dialog: false,
- index_1: 0,
- index_2: 0,
- index_3: 0,
- type: '',
- color: ''
- }
- },
- methods: {
- settingCat() {
- uni.navigateTo({
- url: `/pages/goods-edit/cat-setting/cat-setting?mch_id=` + this.mch_id
- })
- },
- cancel() {
- this.dialog = false;
- this.sec_list = [];
- this.third_list = [];
- this.index_1 = 0;
- this.index_2 = 0;
- this.index_3 = 0;
- },
- toAdd() {
- let that = this;
- let first = that.cat[that.index_1];
- let second = that.sec_list[that.index_2];
- let third = that.third_list[that.index_3];
- let para;
- if(second.label == '未选择' ) {
- para = first;
- }else if(third.label == '未选择' ) {
- para = second;
- }else {
- para = third;
- }
- if(that.list.length > 0) {
- for(let item of that.list) {
- if(item.value == para.value) {
- uni.showToast({
- title: '请勿重复添加',
- icon: 'none',
- duration: 1000
- });
- return false
- }
- }
- }
- setTimeout(()=>{
- that.list.push(para)
- that.dialog = false;
- that.index_1 = 0;
- that.index_2 = 0;
- that.index_3 = 0;
- })
- },
- getCat() {
- let that = this;
- let url = this.mch_id == 0 ? that.$api.app_admin.cat : that.type == 'mall' ? that.$api.mch.cat : that.$api.mch.mch_cat;
- let para;
- that.$request({
- url: url,
- data: {
- mch_id: that.mch_id
- }
- }).then(response=>{
- that.$hideLoading();
- uni.hideLoading();
- that.first = false;
- if(response.code == 0) {
- that.cat = response.data.list;
- if(that.list.length > 0) {
- let list = JSON.parse(JSON.stringify(that.list));
- that.list = [];
- for(let item of list) {
- for(let cat of that.cat) {
- if(item.value == cat.value) {
- that.list.push(item)
- }else {
- if(cat.children) {
- for(let sec of cat.children) {
- if(item.value == sec.value) {
- that.list.push(item)
- }else {
- if(sec.children) {
- for(let third of sec.children) {
- if(item.value == third.value) {
- that.list.push(item)
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }else {
- uni.showToast({
- title: response.msg,
- icon: 'none',
- duration: 1000
- });
- }
- }).catch(response => {
- that.$hideLoading();
- uni.hideLoading();
- });
- },
- delCat(index) {
- this.list.splice(index,1);
- },
- bindChange(res) {
- let that = this;
- if(res.detail.value[0] < 0) {
- res.detail.value[0] = 0;
- }
- if(that.index_1 == res.detail.value[0]) {
- if(that.index_2 == res.detail.value[1]) {
- that.index_3 = +res.detail.value[2];
- }else {
- that.index_2 = +res.detail.value[1];
- that.index_3 = 0;
- that.third_list = [{label:'未选择',value:''}];
- if(that.sec_list[that.index_2].children) {
- that.third_list = that.third_list.concat(that.sec_list[that.index_2].children)
- }
- }
- }else {
- that.index_1 = +res.detail.value[0];
- that.index_2 = 0;
- that.index_3 = 0;
- that.sec_list = [{label:'未选择',value:''}];
- that.third_list = [{label:'未选择',value:''}];
- if(that.cat[that.index_1].children) {
- that.sec_list = that.sec_list.concat(that.cat[that.index_1].children);
- if(that.sec_list[0].children) {
- that.third_list = that.third_list.concat(that.sec_list[0].children)
- }
- }
- }
- },
- save() {
- if(this.mch_id == 0) {
- this.$storage.setStorageSync('goods_cat', this.list);
- }else if(this.type == 'mall') {
- this.$storage.setStorageSync('mch_goods_cat', this.list);
- }else {
- this.$storage.setStorageSync('mch_goods_mch_cat', this.list);
- }
- setTimeout(function() {
- uni.navigateBack();
- }, 500)
- },
- add() {
- this.dialog = true;
- this.sec_list = [{label:'未选择',value:''}];
- this.third_list = [{label:'未选择',value:''}];
- if(this.cat[0].children) {
- this.sec_list = this.sec_list.concat(this.cat[0].children);
- if(this.sec_list[0].children) {
- this.third_list = this.third_list.concat(this.sec_list[0].children)
- }
- }
- }
- },
- onShow() {
- if(!this.first) {
- uni.showLoading({
- mask: true,
- });
- this.getCat();
- }
- },
- onLoad(options) { this.$commonLoad.onload(options);
- let that = this;
- that.$showLoading({
- type: 'global',
- text: '加载中...'
- });
- this.type = options.type ? options.type : '';
- this.mch_id = options.mch_id ? options.mch_id : 0;
- this.color = options.mch_id ? '#ff4544' : '#446dfd';
- if(this.mch_id == 0) {
- this.list = this.$storage.getStorageSync('goods_cat') ? this.$storage.getStorageSync('goods_cat') : [];
- }else if(this.type == 'mall') {
- this.list = this.$storage.getStorageSync('mch_goods_cat') ? this.$storage.getStorageSync('mch_goods_cat') : [];
- }else {
- this.list = this.$storage.getStorageSync('mch_goods_mch_cat') ? this.$storage.getStorageSync('mch_goods_mch_cat') : [];
- }
- uni.getSystemInfo({
- success: function (res) {
- if(res.model.indexOf('iPhone X') > -1 || res.model.indexOf('iPhone 11') > -1 || res.model.indexOf('iPhone11') > -1 || res.model.indexOf('iPhone12') > -1 || res.model.indexOf('Unknown Device') > -1) {
- that.iphone_x = true;
- }
- }
- })
- that.getCat();
- }
- }
- </script>
- <style scoped lang="scss">
- .add-cat {
- height: #{120rpx};
- background-color: #fff;
- padding-top: #{24rpx};
- .add-cat-btn {
- height: #{72rpx};
- width: #{320rpx};
- border-radius: #{36rpx};
- border: #{2rpx} solid;
- margin: 0 auto;
- font-size: #{26rpx};
- line-height: #{72rpx};
- image {
- height: #{28rpx};
- width: #{28rpx};
- margin-right: #{12rpx};
- margin-top: #{22rpx};
- }
- }
- }
- .cat-list {
- background-color: #fff;
- padding: #{30rpx};
- padding-left: 0;
- padding-bottom: 0;
- }
- .cat-item {
- width: auto;
- border-radius: #{33rpx};
- padding-left: #{30rpx};
- height: #{66rpx};
- line-height: #{66rpx};
- margin-left: #{30rpx};
- margin-bottom: #{30rpx};
- .close {
- width: #{60rpx};
- height: #{66rpx};
- image {
- width: #{16rpx};
- height: #{16rpx};
- display: block;
- }
- }
- }
- .title {
- font-size: #{32rpx};
- color: #999999;
- padding-top: #{36rpx};
- background-color: #fff;
- text-align: center;
- }
- .add.iphone_x {
- height: #{170rpx};
- padding-bottom: #{50rpx};
- }
- .add {
- height: #{120rpx};
- padding: 0 #{24rpx};
- margin: 0 auto;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- border-top: #{2rpx} solid #e2e2e2;
- background-color: #fff;
- .add-btn {
- background-color: #fff;
- border: #{2rpx} solid;
- }
- }
- .add>view {
- height: #{80rpx};
- width: #{300rpx};
- margin-top: #{20rpx};
- border-radius: #{40rpx};
- color: #fff;
- font-size: #{28rpx};
- text-align: center;
- line-height: #{80rpx};
- &.all {
- width: #{702rpx};
- }
- }
-
- .dialog {
- position: fixed;
- height: 100%;
- width: 100%;
- bottom: 0;
- left: 0;
- z-index: 9999;
- background-color: rgba(0, 0, 0, .3);
- }
- .dialog.iphone_x .picker-list{
- padding-bottom: #{50rpx};
- }
- .picker {
- width: 100%;
- height: #{440rpx};
- color:#999999;
- }
- .dialog.iphone_x .picker{
- height:#{490rpx};
- }
- .picker-list {
- background-color: #fff;
- padding-top: #{20rpx};
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 9999;
- height: #{520rpx};
- border-top-left-radius: #{10rpx};
- border-top-right-radius: #{10rpx};
- }
- .picker-header {
- padding: 0 #{24rpx};
- font-size: #{32rpx};
- }
- .dialog {
- position: fixed;
- height: 100%;
- width: 100%;
- bottom: 0;
- left: 0;
- z-index: 9999;
- background-color: rgba(0, 0, 0, .3);
- }
- .picker-view {
- height: 34px;
- line-height: 34px;
- text-align:center;
- font-size: #{32rpx};
- }
- picker-view {
- width: 100%;
- height: #{440rpx};
- }
- </style>
|