| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <view class="app-content">
- <view class="ex-page">
- <view class="input-wrap_box">
- <view>
- <AppSearchModule placeholder="输入拼音首字母搜索" @input="searchFn"/>
- </view>
- </view>
- <view class="top-bar">
- <DateSelect class="bar" top="0" @selectDateFn="selectDateFn" />
- </view>
- <view class="main-view">
- <view class="space-view ex-table">
- <block>
- <t-table :headerBackgroundColor="'#F0F2F6'">
- <t-tr header><t-th>客户</t-th><t-th>等级</t-th><t-th>数量</t-th><t-th>金额</t-th><t-th>操作</t-th></t-tr>
- <view v-for="(item, index) in profile" :key="index">
- <t-tr>
- <t-td><view>{{item.customName}}</view></t-td>
- <t-td><view>{{item.levelName}}</view></t-td>
- <t-td><view>{{parseFloat(item.num)}}</view></t-td>
- <t-td><view>{{parseFloat(item.amount)}}</view></t-td>
- <t-td>
- <button class="admin-button-com mini blue change-level" @click="updateLevel(item)">调等级</button>
- </t-td>
- </t-tr>
- </view>
- </t-table>
- </block>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import AppWrapperEmpty from "@/components/app-wrapper-empty";
- import SelectList from "@/components/plugin/selectList";
- import { getStatKhCgProfile } from "@/api/stat/index";
- import { changeLevel } from "@/api/custom";
- import { list } from "@/mixins";
- import ShopSelect from "@/components/module/shopSelect";
- import DateSelect from "@/components/module/dateSelect";
- import AppSearchModule from "@/components/module/app-search";
- import {mapActions, mapGetters} from "vuex";
- export default {
- components: { SelectList, AppWrapperEmpty,ShopSelect,AppSearchModule,DateSelect },
- mixins: [list],
- computed: { ...mapGetters(["getDictionariesInfo","getLoginInfo"]) },
- data() {
- return {
- isShow:false,
- customizationTime:[],
- shopId:'',
- itemId:'',
- nowTime: "",
- showTimeDropdown: false,
- nowShop: "",
- showShopDropdown: false,
- columns: [
- {
- name: "姓名",
- dataIndex: "name",
- color: "info"
- },
- {
- name: "开单额",
- dataIndex: "amount",
- color: "info",
- width: 120,
- align: "center"
- },
- {
- name: "开单数",
- dataIndex: "num",
- color: "info",
- align: "center"
- }
- ],
- dataList: [],
- params:{
- itemId: '',
- searchTime:'',
- startTime: "",
- endTime: "",
- shopId: "",
- },
- profile:[],
- storageData:[],
- searchContent:'',
- };
- },
- onPullDownRefresh() {
- this.resetList();
- this.getList().then(res => {
- uni.stopPullDownRefresh();
- });
- },
- onLoad(e) {
- this.itemId = e.id;
- this.params.itemId = e.id;
- this.shopId = this.getLoginInfo.shopId;
- },
- methods: {
- ...mapActions(['setUserShopAll']),
- searchFn(e){
- this.searchContent = e;
- this.filterStat()
- },
- filterStat(){
- let that = this
- if(this.searchContent.length > 0){
- that.profile = [];
- that.storageData.forEach(obj => {
- let hasName = obj.name && obj.name.indexOf(this.searchContent) >= 0;
- let elePy = (obj.py && obj.py.toLocaleUpperCase()) || "";
- let hasPy = elePy.indexOf(this.searchContent.toLocaleUpperCase()) >= 0;
- if (hasName || hasPy) {
- that.profile.push(obj)
- }
- })
- }else{
- that.profile = that.storageData
- }
- },
- //选择分店
- selectShopFn(val){
- this.params.shopId = val.id;
- this.init();
- },
- //选择时间
- selectDateFn(val) {
- this.params = {...this.params,...val}
- this.init();
- },
- async init() {
- this.getList();
- },
- getList() {
- let that = this
- uni.showLoading()
- getStatKhCgProfile(this.params).then(res => {
- uni.hideLoading()
- if (!this.$util.isEmpty(res.data.list)) {
- that.storageData = res.data.list
- that.filterStat()
- }else{
- that.storageData=[]
- }
- });
- },
- updateLevel(item){
- let customId = item.customId
- let self = this
- let levelList = ['个人', '普店', '银店', '金店']
- uni.showActionSheet({
- itemList: levelList,
- success: function (respond) {
- let currentIndex = respond.tapIndex
- changeLevel({customId:customId,level:currentIndex}).then(res => {
- if(res.code == 1) {
- item.levelName = res.data.levelName
- self.$msg(res.msg)
- }
- }).catch(err => {
- console.log('err', err)
- })
- }
- })
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ex-page {
- background: white;
- padding-top:20upx;
- height: 100%;
- display: flex;
- flex-direction: column;
- .top-bar {
- position: absolute;
- left: 0;
- top:116upx;
- display: flex;
- width: 100%;
- z-index: 20;
- .bar{
- width: 50%;
- height: 100%;
- text-align: center;
- &:nth-child(1){
- border-right: 1upx solid #eeeeec;
- }
- }
- }
- .main-view {
- margin-top: 80upx;
- flex: 1;
- background-color: #f9fbfc;
- .space-view {
- background-color: #fff;
- .change-level{
- font-size:22upx;
- padding:10upx 15upx;
- }
- }
- .ex-info {
- padding: 30upx;
- .info-cell {
- display: flex;
- align-items: center;
- font-size: 28upx;
- &:not(:first-child) {
- margin-top: 20upx;
- }
- .cell-label {
- width: 110upx;
- color: #666666;
- }
- .cell-value {
- margin-left: 40upx;
- color: #333;
- &.warning {
- color: #ffaf1d;
- }
- &.success {
- color: #27c325;
- }
- }
- }
- }
- .ex-table {
- ::v-deep.icon-info {
- color: #333333;
- }
- }
- }
- .bar-view {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30upx;
- width: 100%;
- height: 100upx;
- box-shadow: 0upx -1upx 6upx 0upx rgba(4, 0, 0, 0.06);
- .info-view {
- font-size: 26upx;
- }
- .btn-view {
- display: flex;
- .admin-button-com {
- margin: 0 10upx;
- }
- }
- }
- }
- </style>
|