123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <template>
- <view class="container">
- <view class="search-box">
- <uni-search-bar ref="searchBar" radius="5" placeholder="搜索" :defaultText="goodName" clearButton="auto" cancelButton="none"
- bgColor="#f7f7f7" @confirm="search" class="search-bar" />
- </view>
- <view class="data-tab">
- <u-tabs :list="tabList" :is-scroll="false" :current="tabIndex" @change="changeTabs" font-size="30" active-color="#52A63A"
- inactive-color="#666666" :bold="false" height="90"></u-tabs>
- </view>
- <scroll-view class="data-list" scroll-y="true" @scrolltolower="handleLoadMore(1)" v-if="tabIndex==0">
- <goodItem v-for="(item, index) in list1" :key="index" :goodData="item" :check.sync="item.check" :manageType="manageType"></goodItem>
- </scroll-view>
- <scroll-view class="data-list" scroll-y="true" @scrolltolower="handleLoadMore(2)" v-else-if="tabIndex==1">
- <goodItem v-for="(item, index) in list2" :key="index" :goodData="item" :check.sync="item.check" :manageType="manageType"></goodItem>
- </scroll-view>
- <scroll-view class="data-list" scroll-y="true" @scrolltolower="handleLoadMore(3)" v-else-if="tabIndex==2">
- <goodItem v-for="(item, index) in list3" :key="index" :goodData="item" :check.sync="item.check" :manageType="manageType"></goodItem>
- </scroll-view>
- <view class="good-handle">
- <uni-goods-nav :fill="true" :options="[]" @buttonClick="goodHandle1" :buttonGroup="buttonGroup1" v-if="!manageType" />
- <uni-goods-nav :fill="true" :options="[]" @buttonClick="goodHandle2" :buttonGroup="buttonGroup2" class="nav-border"
- v-else-if="tabIndex == 0" />
- <uni-goods-nav :fill="true" :options="[]" @buttonClick="goodHandle2" :buttonGroup="buttonGroup3" v-else-if="tabIndex == 1" />
- <uni-goods-nav :fill="true" :options="[]" @buttonClick="goodHandle2" :buttonGroup="buttonGroup4" class="nav-border"
- v-else-if="tabIndex == 2" />
- </view>
- <u-popup v-model="popupShow" mode="bottom" border-radius="30">
- <view class="good-handle-box">
- <u-button class="handle-button" :hair-line="false" @click="addGood(1)">普通售卖</u-button>
- <u-button class="handle-button" :hair-line="false" @click="addGood(2)">拍卖</u-button>
- <u-button class="handle-button" :hair-line="false" @click="addGood(3)">自助采摘</u-button>
- <u-button class="handle-close" @click="popupShow = false">取消</u-button>
- </view>
- </u-popup>
- <u-top-tips ref="uTips"></u-top-tips>
- </view>
- </template>
- <script>
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- import goodItem from '@/pagesGood/goodItem.vue'
- export default {
- components: {
- goodItem
- },
- data() {
- return {
- goodName: '',
- tabIndex: 0,
- tabList: [{
- name: '出售中'
- }, {
- name: '已售空'
- }, {
- name: '已下架'
- }],
- pageIndex1: 1,
- isOver1: false,
- list1: [],
- pageIndex2: 1,
- isOver2: false,
- list2: [],
- pageIndex3: 1,
- isOver3: false,
- list3: [],
- manageType: false,
- popupShow: false,
- buttonGroup1: [{
- text: '批量管理',
- backgroundColor: '#75BD60',
- color: '#fff'
- }, {
- text: '添加商品',
- backgroundColor: '#52A63A',
- color: '#fff'
- }],
- buttonGroup2: [{
- text: '取消',
- backgroundColor: '#52A63A',
- color: '#fff'
- }, {
- text: '下架',
- backgroundColor: '#52A63A',
- color: '#fff'
- }, {
- text: '删除',
- backgroundColor: '#52A63A',
- color: '#fff'
- }],
- buttonGroup3: [{
- text: '取消',
- backgroundColor: '#75BD60',
- color: '#fff'
- }, {
- text: '删除',
- backgroundColor: '#52A63A',
- color: '#fff'
- }],
- buttonGroup4: [{
- text: '取消',
- backgroundColor: '#52A63A',
- color: '#fff'
- }, {
- text: '上架',
- backgroundColor: '#52A63A',
- color: '#fff'
- }, {
- text: '删除',
- backgroundColor: '#52A63A',
- color: '#fff'
- }],
- }
- },
- onLoad(options) {},
- onShow(options) {
- this.reasetList()
- },
- onPullDownRefresh() {
- this.reasetList('refresh')
- },
- methods: {
- // 搜索商品
- search(data) {
- this.goodName = data.value
- this.reasetList()
- },
- // 切换tab
- changeTabs(index) {
- this.tabIndex = index;
- this.reasetList()
- },
- // 刷新数据
- reasetList(refresh) {
- this['isOver' + (this.tabIndex + 1)] = false
- this['pageIndex' + (this.tabIndex + 1)] = 1
- this['list' + (this.tabIndex + 1)] = []
- this.getList(this.tabIndex + 1, refresh)
- },
- // 懒加载
- handleLoadMore(type) {
- if (!this['isOver' + type]) {
- this['pageIndex' + type]++
- this.getList(type)
- }
- },
- // 获取列表数据
- getList(type, refresh) {
- NET.request(API.getGoodList, {
- name: this.goodName,
- pageIndex: this['pageIndex' + type],
- pageSize: 10,
- type: type,
- }, 'POST').then(res => {
- if (refresh == 'refresh') {
- uni.stopPullDownRefresh();
- }
- this['isOver' + type] = res.data.list.length != 10
- res.data.list.forEach(site => {
- site.check = false
- })
- this['list' + type] = this['list' + type].concat(res.data.list)
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.data.msg,
- type: 'warning',
- })
- })
- },
- // 全部分类下查询
- goodHandle1(e) {
- if (e.index == 0) {
- this.manageType = true
- } else {
- this.popupShow = true
- }
- },
- // 各分类下批量操作
- goodHandle2(e) {
- if (e.index == 0) {
- this.manageType = false
- } else {
- NET.request(API.setGoodsStatus, {
- ids: this['list' + (this.tabIndex + 1)].filter(site => site.check).map(site => {
- return site.id
- }),
- operation: (this.tabIndex == 0 && e.index == 1) ? 1 : ((this.tabIndex == 2 && e.index == 1) ? 2 : 3),
- type: this.tabIndex == 0 ? 1 : 2
- }, 'POST').then(res => {
- this.$refs.uTips.show({
- title: '操作成功',
- type: 'success',
- })
- this.reasetList()
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.data.msg,
- type: 'warning',
- })
- })
- }
- },
- // 新增商品
- addGood(type) {
- this.popupShow = false
- uni.navigateTo({
- url: '/pagesGood/goodForm?type=add&formType=' + type
- });
- },
- // 检测所有商品选情况
- // getAllCartType() {
- // return this['list' + (this.tabIndex + 1)].filter(site => site.allCheck).length == this['list' + (this.tabIndex + 1)].length
- // },
- // // 设置所有品全选状态
- // checkAllShop() {
- // let type = this.getAllCartType()
- // this['list' + (this.tabIndex + 1)].forEach(item => {
- // item.allCheck = !type
- // item.products.forEach(site => {
- // site.check = !type
- // })
- // })
- // },
- }
- }
- </script>
- <style lang="less" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .container {
- width: 100%;
- height: 100%;
- float: left;
- position: relative;
- background-color: #f7f7f7;
- .search-box {
- width: 100%;
- height: 58px;
- box-sizing: border-box;
- padding: 2px 12px 1px 12px;
- background-color: #FFFFFF;
- }
- .data-tab {
- width: 100%;
- height: 45px;
- float: left;
- }
- .data-list {
- width: 100%;
- height: calc(100% - 154px);
- float: left;
- }
- .good-handle {
- width: 100%;
- position: absolute;
- bottom: 0px;
- height: 50px;
- background: #ffffff;
- .nav-border {
- /deep/.uni-tab__cart-button-right {
- border-right: 1px solid #74bd60;
- }
- /deep/.uni-tab__cart-button-right:last-child {
- border-right: none;
- }
- }
- }
- .good-handle-box {
- width: 100%;
- float: left;
- box-sizing: border-box;
- padding: 0 20px 20px 20px;
- .handle-button {
- width: 100%;
- height: 66px;
- float: left;
- font-size: 15px;
- font-family: PingFang SC;
- color: #333333;
- line-height: 66px;
- border: none;
- border-top: 1px solid #E0E0E0;
- border-radius: 0;
- /deep/button {
- margin-top: 12px;
- }
- }
- .handle-button:first-child {
- border-top: none;
- }
- .handle-close {
- width: 125px;
- height: 42px;
- float: left;
- border-radius: 5px;
- font-size: 16px;
- font-family: PingFang SC;
- line-height: 42px;
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- /deep/button {
- color: #56a83a !important;
- background-color: #F2F2F2 !important;
- line-height: 42px;
- }
- /deep/button::after {
- border: none;
- }
- }
- /deep/.u-btn--default {
- border: none;
- }
- }
- }
- </style>
|