| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- <template>
- <div>
- <use-table ref="tbl"></use-table>
- <div class="container container_status dflex_vertical_c">
- <div class="item_interval" v-for="(item, i) in stateDatas" :key="i">
- <el-button class="badge_txt" :class="{ active: item.cnt == req.state }" size="small" @click="cutSta(item)">{{ item.name }}</el-button>
- <!-- <v-countup class="badge" start-value="0" :end-value="item.cnt"></v-countup> -->
- </div>
- </div>
- <div class="container padding_b_0">
- <div class="dflex_wrap">
- <div class="dflex_vertical_c margin_r_40 margin_b_20">
- <div class="search_name">商品名称:</div>
- <el-input v-model="req.name" placeholder="请输入" @input="loadData" class="search_input"></el-input>
- </div>
- <el-button size="mini" class="search_btn margin_b_20 margin_r_40" @click="loadData">搜索</el-button>
- </div>
- </div>
- <div class="container use-table">
- <div class="dflex_sb margin_b_15">
- <div><el-button class="batch_btn padding0" @click="removes">删除</el-button></div>
- <el-button class="add_btn pos_r padding0" icon="iconfont iconxinzeng" @click="toAdd">新增</el-button>
- </div>
- <el-table :height="tblHeight" :data="tableDatas" @selection-change="selectionChange" highlight-current-row>
- <el-table-column type="selection"></el-table-column>
- <!-- <el-table-column label="排序" width="200" align="center">
- <template slot-scope="scope">
- <el-input-number size="small" :min="1" v-model="scope.row.sort" @change="sortChange(scope.row)" @blur="sortChange(scope.row)"></el-input-number>
- </template>
- </el-table-column> -->
- <el-table-column label="商品" width="330" align="center">
- <template slot-scope="scope">
- <div class="dflex_vertical_c">
- <el-image v-if="scope.row.imgs.search(',')==(-1)" style="width: 100px;height: 80px;" :src="scope.row.imgs || require('static/img/noimage.png')" :preview-src-list="scope.row.imgs" fit="contain"></el-image>
- <el-image v-else style="width: 100px;height: 80px;" :src="((scope.row.imgs).substring(0, ((scope.row.imgs).indexOf(',')))) || require('static/img/noimage.png')" :preview-src-list="scope.row.imgs" fit="contain"></el-image>
- <div class="left_just margin_l_10">
- <div class="ellipsis">{{ scope.row.name }}</div>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="价格" align="center">
- <template slot-scope="scope">
- <div class="price">{{ scope.row.price}}</div>
- <div class="m_price">{{ scope.row.marketPrice}}</div>
- </template>
- </el-table-column>
- <el-table-column label="限时精选" align="center">
- <template slot-scope="scope">
- <el-tooltip :content="scope.row.limited == '1' ? '取消限时精选' : '启用限时精选'" placement="top" :hide-after="1000" :enterable="false" effect="light">
- <el-switch
- v-model="scope.row.limited"
- active-color="#ff6a6c"
- inactive-color="#bbb"
- active-value="1"
- inactive-value="0"
- @change="limitedChang(scope.row)"
- ></el-switch>
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="热门推荐" align="center">
- <template slot-scope="scope">
- <el-tooltip :content="scope.row.hot == '1' ? '取消热门推荐' : '启用热门推荐'" placement="top" :hide-after="1000" :enterable="false" effect="light">
- <el-switch
- v-model="scope.row.hot"
- active-color="#ff6a6c"
- inactive-color="#bbb"
- active-value="1"
- inactive-value="0"
- @change="hotChang(scope.row)"
- ></el-switch>
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="状态" align="center">
- <template slot-scope="scope">
- <template v-if="scope.row.state==0">下架</template>
- <template v-if="scope.row.state==1">在售</template>
- <template v-if="scope.row.state==2">待审核</template>
- </template>
- </el-table-column>
- <el-table-column label="数据统计" align="left" width="150">
- <template slot-scope="scope">
- <div class="left_just">
- <div>已售数:{{ scope.row.saleCnt }}</div>
- <div>访问数:{{ scope.row.visitCnt }}</div>
- <div>收藏数:{{ scope.row.collectCnt }}</div>
- <!-- <div>分享数:{{ scope.row.shareCnt }}</div> -->
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" fixed="right" width="120">
- <template slot-scope="scope">
- <div>
- <el-tooltip content="上架" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '2'">
- <el-button icon="iconfont iconshangjia" circle @click="staUp(scope.row.id)"></el-button>
- </el-tooltip>
- <el-tooltip content="下架" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '1'">
- <el-button icon="iconfont iconxiajia1" circle @click="staOut(scope.row.id)"></el-button>
- </el-tooltip>
- <el-tooltip content="编辑" placement="top" :hide-after="1000" :enterable="false" effect="light">
- <el-button icon="iconfont iconbianji" circle @click="toEdit(scope.row.id)"></el-button>
- </el-tooltip>
- </div>
- <div class="margin_t_10">
- <el-tooltip content="删除" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '0' || scope.row.state == '2'">
- <el-button icon="iconfont iconshanchu" circle @click="remove(scope.row.id)"></el-button>
- </el-tooltip>
- <!-- <el-tooltip content="评价" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '1'">
- <el-button icon="iconfont iconpingjia1" circle @click="toEvaluate(scope.row.id)"></el-button>
- </el-tooltip> -->
- <!-- <el-tooltip content="二维码" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '1'"><el-button icon="iconfont iconerweima" circle @click="qrCode"></el-button></el-tooltip> -->
- <!-- <el-tooltip content="预览" placement="top" :hide-after="1000" :enterable="false" effect="light" v-if="scope.row.state == '2'">
- <el-button icon="el-icon-view" circle @click="preview(scope.row.id)"></el-button>
- </el-tooltip> -->
- </div>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- :current-page="req.page"
- :page-sizes="[10, 20, 30, 50, 100]"
- :page-size="req.rows"
- layout="total, sizes, prev, pager, next, jumper"
- :total="tableTotal"
- @size-change="sizeChange"
- @current-change="currentChange"
- ></el-pagination>
- </div>
- </div>
- </template>
- <script>
- import vCountup from 'vue-countupjs';
- const __name = 'usemall-goods';
- const __goodsCategory = 'usemall-goods-category';
- import {
- goodsOut,
- goodsUp,
- delgoodpin
- } from '@/util/loginJie.js'
- export default {
- components: { vCountup },
- data() {
- return {
- state: '',//0下架 1在售 2 待审核
- classOptions: [],
- stateObj: {
- 待审核: '2',
- 销售中: '1',
- 已下架: '0',
- 全部: ''
- },
- stateDatas: [],
- req: {
- page: 1,
- rows: 10,
- orderby: 'sort asc',
- name: '',
- state: ''
- },
- tblHeight: 0,
- tableDatas: [],
- tableTotal: 0,
- selectDatas: []
- };
- },
- methods: {
- loadData(e) {
- this.stateDatas = [];
- for (let key in this.stateObj) {
- this.stateDatas.push({
- name: key,
- cnt: this.stateObj[key]
- });
- }
- console.log(this.req.page)
- this.$axios.get("/goods/admin/list",
- {
- params:{
- 'curPage':this.req.page,
- 'pageSize':this.req.rows,
- 'goodsName':e,//商品名称搜索
- 'state':this.req.state,//商品状态0下架 1在售 2 待审核
- 'orderField':'sort',
- 'order':'asc'
- },
- headers:{
- 'Mall-Token': uni.getStorageSync("token")
- }
- }).then(response => {
- let res = response
- console.log(res)
- if (res.success) {
- // if (res.datas.group && res.datas.group.datas) {
- // this.stateDatas = res.datas.group.state;
- // }
- // res.data.list.forEach((row, idx) => {
- // row.imgs = [row.imgs];
- // row.limited = row.limit + '';
- // row.hot = row.hot + '';
- // });
- this.tableDatas = res.data.list;
- this.tableTotal = res.data.totalCount;
- } else {
- }
- }).catch(res =>{
- });
- },
- cutSta(item) {
- this.state = item.cnt;
- this.req.state = item.cnt;
- this.loadData();
- },
- toAdd() {
- uni.navigateTo({
- url: `/pages/goods/list/goods_list_add_edit?tab=添加商品`,
- events: {
- refreshData: () => {
- this.loadData();
- }
- }
- });
- },
- staUp(id) {
- var data=[id]
- var headers={
- 'Content-Type': 'application/json; charset=utf-8',
- "Mall-Token": uni.getStorageSync('token')
- }
- this.$confirm('此操作将上架此商品!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- goodsUp(data,headers).then((res) => {
- if (res.success) {
- this.loadData();
- }
- })
-
- // this.$db[__name].update(id, { state: '销售中' }).then(res => {
- // if (res.code == 200) this.loadData();
- // });
- });
- },
- staOut(id) {
- var data=[id]
- var headers={
- 'Content-Type': 'application/json; charset=utf-8',
- "Mall-Token": uni.getStorageSync('token')
- }
- this.$confirm('此操作将下架此商品!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- goodsOut(data,headers).then((res) => {
- if (res.success) {
- this.loadData();
- }
- })
- // this.$db[__name].update(id, { state: '已下架' }).then(res => {
- // if (res.code == 200) this.loadData();
- // });
- });
- },
- toEdit(id) {
- uni.navigateTo({
- url: `/pages/goods/list/goods_list_add_edit?id=${id}&tab=编辑商品`,
- events: {
- refreshData: () => {
- this.loadData();
- }
- }
- });
- },
- toEvaluate(id) {
- uni.navigateTo({
- url: `/pages/goods/list/evaluate_add?id=${id}&tab=添加评价`
- });
- },
- qrCode() {
- this.$message('正在开发中...');
- },
- preview() {
- this.$notify.info({
- title: '消息',
- message: '正在开发中...'
- });
- },
- remove(id) {
- var data=[id]
- var headers={
- 'Content-Type': 'application/json; charset=utf-8',
- "Mall-Token": uni.getStorageSync('token')
- }
- this.$confirm('此操作将永久删除该数据!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- delgoodpin(data,headers).then((res) => {
- if (res.success) {
- this.loadData();
- }
- })
- // this.$db[__name].remove(id).then(res => {
- // if (res.code == 200) {
- // this.loadData();
- // }
- // });
- });
- },
- selectionChange(datas) {
- this.selectDatas = datas;
- },
- removes() {
- if (this.selectDatas.length <= 0) {
- this.$message('请勾选需要删除的数据');
- return;
- }
-
- let data = this.selectDatas.map(x => x.id);
- var headers={
- 'Content-Type': 'application/json; charset=utf-8',
- "Mall-Token": uni.getStorageSync('token')
- }
-
- this.$confirm('此操作将永久删除勾选数据!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- delgoodpin(data,headers).then((res) => {
- if (res.success) {
- this.loadData();
- }
- })
- // this.$db[__name]
- // .where({
- // id: this.$db.$cmd.in(ids)
- // })
- // .remove()
- // .then(res => {
- // if (res.code == 200) {
- // this.loadData();
- // }
- // });
- });
- },
- sortChange(row) {
- if (row.sort == '') {
- return;
- }
- this.$db[__name].update(row.id, { sort: row.sort }).then(res => {
- if (res.code == 200) this.loadData();
- });
- },
- limitedChang(row) {
- if(row.limited=='1'){
- var type=1
- }else if(row.limited=='0'){
- var type=0
- }
- this.$axios.put("/goods/admin/hot-limited-change",
- {
- "action": "2",//1热门推荐、2限时精选
- "goodIds": [row.id],
- "type": type//1新增、0取消
- },
- {
- headers:{
- 'Mall-Token': uni.getStorageSync("token")
- }
- }).then(response => {
- let res = response
- if (res.success) {
- this.loadData();
- } else {
- }
- }).catch(res =>{
- });
- // this.$db[__name].update(row.id, { limited: parseInt(row.limited) }).then(res => {
- // if (res.code == 200) this.loadData();
- // });
- },
- hotChang(row) {
- if(row.hot=='1'){
- var type=1
- }else if(row.hot=='0'){
- var type=0
- }
- this.$axios.put("/goods/admin/hot-limited-change",
- {
- "action": "1",//1热门推荐、2限时精选
- "goodIds": [row.id],
- "type": type//1新增、0取消
- },
- {
- headers:{
- 'Mall-Token': uni.getStorageSync("token")
- }
- }).then(response => {
- let res = response
- if (res.success) {
- this.loadData();
- } else {
- }
- }).catch(res =>{
- });
- // this.$db[__name].update(row.id, { hot: parseInt(row.hot) }).then(res => {
- // if (res.code == 200) this.loadData();
- // });
- },
- sizeChange(size) {
- this.req.rows = size;
- this.loadData();
- },
- currentChange(current) {
- this.req.page = current;
- this.loadData();
- }
- },
- created() {
- // this.$db[__goodsCategory].totree({ orderby: 'sort asc', startWith: 'pid == ""', loadding: false }).then(res => {
- // if (res.code == 200) {
- // this.classOptions = res.datas;
- // }
- // });
- this.loadData();
- },
- updated() {
- if (!this.tblHeight) {
- this.tblHeight = this.$refs.tbl.tblHeight;
- }
- }
- };
- </script>
- <style></style>
|