|
@@ -0,0 +1,107 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <scTable ref="table" :apiObj="list.apiObj" :params="searchKey" @selectionChange="selectionChange" row-key="id" hidePagination>
|
|
|
|
|
+ <el-table-column type="selection" width="50" fixed="left"></el-table-column>
|
|
|
|
|
+ <el-table-column label="品类名称" width="200" fixed="left" prop="name"></el-table-column>
|
|
|
|
|
+ <el-table-column label="序号" width="120" prop="id"></el-table-column>
|
|
|
|
|
+ <el-table-column label="品类ID" prop="category_id" width="200"></el-table-column>
|
|
|
|
|
+ <el-table-column label="状态" prop="enable" width="120" align="center">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <div class="status-success" v-if="scope.row.enable==1"><sc-status-indicator type="success"></sc-status-indicator> 正常</div>
|
|
|
|
|
+ <div class="status-danger" v-if="scope.row.enable==2"><sc-status-indicator type="danger"></sc-status-indicator> 禁用</div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="创建时间" prop="create_at" width="180"></el-table-column>
|
|
|
|
|
+ <el-table-column label="操作" width="140" align="left" fixed="right">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-button-group>
|
|
|
|
|
+ <el-button size="small" @click="table_view(scope.row)">编辑</el-button>
|
|
|
|
|
+ <el-button type="danger" size="small" @click="table_del(scope.row)">删除</el-button>
|
|
|
|
|
+ </el-button-group>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ </scTable>
|
|
|
|
|
+ <formMain ref="formMain" @success="handleSuccess"></formMain>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script>
|
|
|
|
|
+import formMain from './form';
|
|
|
|
|
+export default {
|
|
|
|
|
+ components: {
|
|
|
|
|
+ formMain
|
|
|
|
|
+ },
|
|
|
|
|
+ data(){
|
|
|
|
|
+ return {
|
|
|
|
|
+ list: {
|
|
|
|
|
+ apiObj: this.$API.category.list
|
|
|
|
|
+ },
|
|
|
|
|
+ dataSelect:[],
|
|
|
|
|
+ dataSelectFull:[],
|
|
|
|
|
+ searchKey:{}
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ table_auth(data){
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs.comboMain.open("edit").setData(data)
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ table_view(data){
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs.formMain.open("edit").setData(data)
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ table_del(data){
|
|
|
|
|
+ this.$confirm(`删除店铺后,所有有关该店铺的门店、订单等信息都将删除,不可恢复,确定要执行删除吗`, '提示', {
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(async ()=>{
|
|
|
|
|
+ var resp = await this.$API.shop.del.post({"id":data.id});
|
|
|
|
|
+ if (resp.code == 0) {
|
|
|
|
|
+ return this.$message.error(resp.msg);
|
|
|
|
|
+ }
|
|
|
|
|
+ this.$message.success(resp.msg);
|
|
|
|
|
+ this.$emit("success");
|
|
|
|
|
+ }).catch(()=>{})
|
|
|
|
|
+ },
|
|
|
|
|
+ refresh(){
|
|
|
|
|
+ this.$refs.table.refresh()
|
|
|
|
|
+ },
|
|
|
|
|
+ upData(data){
|
|
|
|
|
+ this.$refs.table.upData(data)
|
|
|
|
|
+ },
|
|
|
|
|
+ handleSuccess(){
|
|
|
|
|
+ this.$refs.table.refresh()
|
|
|
|
|
+ },
|
|
|
|
|
+ sortChange(event){
|
|
|
|
|
+ if (event.order) {
|
|
|
|
|
+ var data = {
|
|
|
|
|
+ "field":event.prop,
|
|
|
|
|
+ "order":event.order
|
|
|
|
|
+ }
|
|
|
|
|
+ this.$refs.table.upData(data)
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.$refs.table.reload(this.searchKey)
|
|
|
|
|
+ }
|
|
|
|
|
+ return ;
|
|
|
|
|
+ },
|
|
|
|
|
+ selectionChange(event){
|
|
|
|
|
+ this.dataSelect = [];
|
|
|
|
|
+ var arr = [];
|
|
|
|
|
+ var arrCompany = [];
|
|
|
|
|
+ event.forEach(function(val,index){
|
|
|
|
|
+ arr[index] = val.id;
|
|
|
|
|
+ arrCompany[index] = val;
|
|
|
|
|
+ });
|
|
|
|
|
+ this.dataSelectFull = arrCompany;
|
|
|
|
|
+ this.dataSelect = arr;
|
|
|
|
|
+ this.$emit("success",this.dataSelect);
|
|
|
|
|
+ this.$emit("successFull",this.dataSelectFull);
|
|
|
|
|
+ },
|
|
|
|
|
+ table_passwd(row){
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs.userPasswd.open("edit").setData(row)
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</script>
|