table不随屏幕改变尺寸问题

master
mabo 2021-05-27 16:37:00 +08:00
parent 087ffe230d
commit 0df88e08e4
88 changed files with 5255 additions and 5397 deletions

View File

@ -1,10 +1,14 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form
ref="searchForm"
:model="searchForm"
inline
:label-width="70"
class="search-form"
>
<Form-item label="会员名称" prop="memberName"> <Form-item label="会员名称" prop="memberName">
<Input <Input
type="text" type="text"
@ -15,23 +19,52 @@
/> />
</Form-item> </Form-item>
<Form-item label="状态"> <Form-item label="状态">
<Select v-model="searchForm.distributionStatus" style="width:200px"> <Select
<Option v-for="item in distributionStatusList" :value="item.value" :key="item.value">{{ item.label }}</Option> v-model="searchForm.distributionStatus"
style="width: 200px"
>
<Option
v-for="item in distributionStatusList"
:value="item.value"
:key="item.value"
>{{ item.label }}</Option
>
</Select> </Select>
</Form-item> </Form-item>
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button
@click="handleSearch"
type="primary"
icon="ios-search"
class="search-btn"
>搜索</Button
>
</Form> </Form>
</Row> </Row>
<Row class="padding-row"> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> :loading="loading"
</Row> border
:columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page
:current="searchForm.pageNumber"
:total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>
@ -42,17 +75,17 @@
resumeDistribution, resumeDistribution,
auditDistribution, auditDistribution,
} from "@/api/distribution"; } from "@/api/distribution";
import {distributionStatusList} from './dataJson.js'; import { distributionStatusList } from "./dataJson.js";
export default { export default {
name: "distribution", name: "distribution",
components: { components: {},
},
data() { data() {
return { return {
distributionStatusList, // distributionStatusList, //
openSearch: true, // openSearch: true, //
loading: true, // loading: true, //
searchForm: { // searchForm: {
//
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
}, },
@ -63,7 +96,7 @@
title: "会员名称", title: "会员名称",
key: "memberName", key: "memberName",
minWidth: 120, minWidth: 120,
tooltip: true tooltip: true,
}, },
{ {
title: "推广单数", title: "推广单数",
@ -77,8 +110,11 @@
width: 150, width: 150,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
return h('div', this.$options.filters.unitPrice(params.row.rebateTotal, '¥')) return h(
} "div",
this.$options.filters.unitPrice(params.row.rebateTotal, "¥")
);
},
}, },
{ {
title: "可用金额", title: "可用金额",
@ -86,8 +122,11 @@
width: 150, width: 150,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
return h('div', this.$options.filters.unitPrice(params.row.rebateTotal, '¥')) return h(
} "div",
this.$options.filters.unitPrice(params.row.rebateTotal, "¥")
);
},
}, },
{ {
title: "冻结金额", title: "冻结金额",
@ -95,8 +134,11 @@
width: 150, width: 150,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
return h('div', this.$options.filters.unitPrice(params.row.rebateTotal, '¥')) return h(
} "div",
this.$options.filters.unitPrice(params.row.rebateTotal, "¥")
);
},
}, },
{ {
title: "状态", title: "状态",
@ -105,16 +147,24 @@
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
if (params.row.distributionStatus == "PASS") { if (params.row.distributionStatus == "PASS") {
return h( "Badge", {props: { status: "success",text: "审核通过" } }) return h("Badge", {
props: { status: "success", text: "审核通过" },
});
} else if (params.row.distributionStatus == "APPLY") { } else if (params.row.distributionStatus == "APPLY") {
return h( "Badge", {props: { status: "processing",text: "申请中" } }) return h("Badge", {
props: { status: "processing", text: "申请中" },
});
} else if (params.row.distributionStatus == "RETREAT") { } else if (params.row.distributionStatus == "RETREAT") {
return h( "Badge", {props: { status: "warning",text: "已清退" } }) return h("Badge", {
props: { status: "warning", text: "已清退" },
});
} else if (params.row.distributionStatus == "REFUSE") { } else if (params.row.distributionStatus == "REFUSE") {
return h( "Badge", {props: { status: "error",text: "审核拒绝" } }) return h("Badge", {
} props: { status: "error", text: "审核拒绝" },
});
} }
}, },
},
{ {
title: "操作", title: "操作",
key: "action", key: "action",
@ -122,11 +172,13 @@
fixed: "right", fixed: "right",
width: 140, width: 140,
render: (h, params) => { render: (h, params) => {
return h("div",{ return h(
"div",
{
style: { style: {
display:'flex', display: "flex",
justifyContent:'center' justifyContent: "center",
} },
}, },
[ [
h( h(
@ -134,14 +186,20 @@
{ {
props: { props: {
type: "error", type: "error",
size: "small" size: "small",
},
style: {
marginRight: "5px",
display:
params.row.distributionStatus != "RETREAT"
? "block"
: "none",
}, },
style:{marginRight:'5px', display:params.row.distributionStatus!='RETREAT'?'block':'none'},
on: { on: {
click: () => { click: () => {
this.retreat(params.row); this.retreat(params.row);
} },
} },
}, },
"清退" "清退"
), ),
@ -150,23 +208,30 @@
{ {
props: { props: {
type: "success", type: "success",
size: "small" size: "small",
},
style: {
marginRight: "5px",
display:
params.row.distributionStatus == "RETREAT"
? "block"
: "none",
}, },
style:{marginRight:'5px', display:params.row.distributionStatus=='RETREAT'?'block':'none'},
on: { on: {
click: () => { click: () => {
this.resume(params.row); this.resume(params.row);
} },
} },
}, },
"恢复" "恢复"
) ),
]); ]
} );
} },
},
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -176,7 +241,7 @@
see(v) { see(v) {
this.$router.push({ this.$router.push({
name: "distributionOrder", name: "distributionOrder",
query: { id:v.memberId } query: { id: v.memberId },
}); });
}, },
changePage(v) { changePage(v) {
@ -194,7 +259,8 @@
this.getDataList(); this.getDataList();
}, },
clearSelectAll() { // clearSelectAll() {
//
this.$refs.table.selectAll(false); this.$refs.table.selectAll(false);
}, },
changeSelect(e) { changeSelect(e) {
@ -206,7 +272,7 @@
this.loading = true; this.loading = true;
this.searchForm.status = "PASS"; this.searchForm.status = "PASS";
// //
getDistributionListData(this.searchForm).then(res => { getDistributionListData(this.searchForm).then((res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
@ -223,39 +289,39 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
retreatDistribution(v.id).then(res => { retreatDistribution(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
// //
resume(v) { resume(v) {
this.$Modal.confirm({ this.$Modal.confirm({
title: '提示', title: "提示",
// //
content: "您确认要恢复 " + v.memberName + " ?", content: "您确认要恢复 " + v.memberName + " ?",
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
resumeDistribution(v.id).then(res => { resumeDistribution(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -1,10 +1,14 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form
ref="searchForm"
:model="searchForm"
inline
:label-width="70"
class="search-form"
>
<Form-item label="会员名称" prop="memberName"> <Form-item label="会员名称" prop="memberName">
<Input <Input
type="text" type="text"
@ -14,29 +18,46 @@
style="width: 200px" style="width: 200px"
/> />
</Form-item> </Form-item>
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button
@click="handleSearch"
type="primary"
icon="ios-search"
class="search-btn"
>搜索</Button
>
</Form> </Form>
</Row> </Row>
<Row style="margin-top: 10px"> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" class="mt_10"
@on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> :loading="loading"
</Row> border
:columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" <Page
@on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" :current="searchForm.pageNumber"
size="small" show-total show-elevator show-sizer></Page> :total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>
<script> <script>
import { import { getDistributionListData, auditDistribution } from "@/api/distribution";
getDistributionListData,
auditDistribution
} from "@/api/distribution";
export default { export default {
name: "distributionApply", name: "distributionApply",
@ -44,15 +65,17 @@
data() { data() {
return { return {
loading: true, // loading: true, //
searchForm: { // searchForm: {
//
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
order: "desc", // order: "desc", //
startDate: "", // startDate: "", //
endDate: "" // endDate: "", //
}, },
form: { // form: {
//
memberName: "", memberName: "",
}, },
// //
@ -92,13 +115,13 @@
size: "small", size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.audit(params.row, "PASS"); this.audit(params.row, "PASS");
} },
} },
}, },
"通过" "通过"
), ),
@ -112,17 +135,17 @@
on: { on: {
click: () => { click: () => {
this.audit(params.row, "REFUSE"); this.audit(params.row, "REFUSE");
} },
} },
}, },
"拒绝" "拒绝"
) ),
]); ]);
} },
} },
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -168,7 +191,7 @@
this.loading = true; this.loading = true;
this.searchForm.distributionStatus = "APPLY"; this.searchForm.distributionStatus = "APPLY";
// //
getDistributionListData(this.searchForm).then(res => { getDistributionListData(this.searchForm).then((res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
@ -183,33 +206,33 @@
}, },
// //
audit(v, status) { audit(v, status) {
let test = "拒绝" let test = "拒绝";
if (status == "PASS") { if (status == "PASS") {
test = "通过" test = "通过";
} }
let params = { let params = {
status : status status: status,
} };
this.$Modal.confirm({ this.$Modal.confirm({
title: "确认" + test, title: "确认" + test,
// //
content: "您确认要" + test + " " + v.memberName + " ?", content: "您确认要" + test + " " + v.memberName + " ?",
loading: true, loading: true,
onOk: () => { onOk: () => {
auditDistribution(v.id, params).then(res => { auditDistribution(v.id, params).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch" > <Row @keydown.enter.native="handleSearch" >
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -21,15 +19,11 @@
</Form-item> </Form-item>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page padding-row"> <Row type="flex" justify="end" class="page padding-row">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500"> <Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500">
<Form ref="form" :model="form" :label-width="100" :rules="formValidate" > <Form ref="form" :model="form" :label-width="100" :rules="formValidate" >
<FormItem label="编号"> <FormItem label="编号">

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -20,7 +18,6 @@
<Row class="operation" style="margin-top: 10px"> <Row class="operation" style="margin-top: 10px">
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
<template slot="goodsName" slot-scope="{row}"> <template slot="goodsName" slot-scope="{row}">
<div> <div>
@ -36,13 +33,10 @@
</div> </div>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row v-show="openSearch" @keydown.enter.native="handleSearch"> <Row v-show="openSearch" @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -36,19 +34,13 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize"
@on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> </Row> <Row @keydown.enter.native="handleSearch"> </Row>
<Row class="operation"> <Row class="operation">
@ -9,7 +7,6 @@
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -20,7 +17,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -36,8 +32,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -70,7 +70,6 @@
<Tabs v-model="orderStatus" @on-click="handleClickType"> <Tabs v-model="orderStatus" @on-click="handleClickType">
<TabPane label="行业订单数量" name="NUM"> <TabPane label="行业订单数量" name="NUM">
<Table :columns="columns" :data="data"></Table> <Table :columns="columns" :data="data"></Table>
</TabPane> </TabPane>
<TabPane label="行业订单金额" name="PRICE"> <TabPane label="行业订单金额" name="PRICE">
<Table :columns="columns" :data="data"></Table> <Table :columns="columns" :data="data"></Table>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -43,7 +41,6 @@
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button> <Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -77,7 +74,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -93,8 +89,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -32,7 +30,6 @@
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button> <Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -60,7 +57,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -76,8 +72,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -3,8 +3,6 @@
</style> </style>
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -30,7 +28,6 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -41,7 +38,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -57,8 +53,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -28,7 +26,6 @@
<Button @click="add" type="primary" >添加</Button> <Button @click="add" type="primary" >添加</Button>
<Button @click="delAll" >批量删除</Button> <Button @click="delAll" >批量删除</Button>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -39,9 +36,7 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -57,8 +52,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,6 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -10,7 +9,6 @@
<Button @click="handleSearch" type="primary" class="search-btn" icon="ios-search">搜索</Button> <Button @click="handleSearch" type="primary" class="search-btn" icon="ios-search">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"
@on-sort-change="changeSort" @on-selection-change="changeSelect"> @on-sort-change="changeSort" @on-selection-change="changeSelect">
<!-- 页面展示 --> <!-- 页面展示 -->
@ -24,15 +22,12 @@
</i-switch> </i-switch>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage"
@on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Row>
<Modal v-model="infoFlag" width="800" :title="infoTitle"> <Modal v-model="infoFlag" width="800" :title="infoTitle">
@ -68,7 +63,7 @@
<div style="margin-left: 40px"> <div style="margin-left: 40px">
<img style="width: 100px;height: 110px;margin-left: 2px" <img style="width: 100px;height: 110px;margin-left: 2px"
v-for="(img,index) in infoData.image.split(',')" v-if="infoData.image.length !=0" :src="img" v-for="(img,index) in infoData.image.split(',')" v-if="infoData.image.length !=0" :src="img"
alt="" /> alt="" :key="index"/>
</div> </div>
</div> </div>
</List> </List>
@ -81,7 +76,7 @@
</div> </div>
<div v-if="infoData.haveReplyImage == 1"> <div v-if="infoData.haveReplyImage == 1">
<div style="margin-left: 60px"> <div style="margin-left: 60px">
<img style="width: 100px;height: 110px" v-for="(img,index) in infoData.replyImage.split(',')" <img style="width: 100px;height: 110px" v-for="(img,index) in infoData.replyImage.split(',')" :key="index"
v-if="infoData.replyImage.length !=0" :src="img" alt=""/> v-if="infoData.replyImage.length !=0" :src="img" alt=""/>
</div> </div>
</div> </div>

View File

@ -1,13 +1,10 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"></Row> <Row @keydown.enter.native="handleSearch"></Row>
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -26,7 +23,6 @@
</i-switch> </i-switch>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -42,8 +38,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -43,7 +41,6 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -54,7 +51,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -70,8 +66,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,8 +1,6 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -15,16 +13,12 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -50,7 +48,6 @@
</Form-item> </Form-item>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -61,7 +58,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -77,8 +73,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="roleModalVisible" v-model="roleModalVisible"

View File

@ -1,6 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -22,17 +21,13 @@
<Button @click="addMember" type="primary">添加会员</Button> <Button @click="addMember" type="primary">添加会员</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Row>
<!-- 添加用户模态框 --> <!-- 添加用户模态框 -->
<Modal v-model="addFlag" title="添加用户"> <Modal v-model="addFlag" title="添加用户">

View File

@ -78,7 +78,6 @@
</div> </div>
</div> </div>
<div class="point-data" style="margin-top: -5px"> <div class="point-data" style="margin-top: -5px">
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -89,7 +88,6 @@
@on-sort-change="pointChangeSort" @on-sort-change="pointChangeSort"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -168,7 +166,6 @@
</Form> </Form>
</Row> </Row>
<div style="min-height: 180px"> <div style="min-height: 180px">
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -179,7 +176,6 @@
@on-sort-change="orderChangeSort" @on-sort-change="orderChangeSort"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -201,7 +197,6 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="addMemberAddress" type="primary">新增</Button> <Button @click="addMemberAddress" type="primary">新增</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -212,7 +207,6 @@
@on-sort-change="addressChangeSort" @on-sort-change="addressChangeSort"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -249,7 +243,6 @@
</div> </div>
</div> </div>
</div> </div>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -260,7 +253,6 @@
@on-sort-change="walletChangeSort" @on-sort-change="walletChangeSort"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -292,7 +284,6 @@
<Button @click="getReceiptRecordData" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="getReceiptRecordData" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -308,7 +299,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page

View File

@ -32,7 +32,6 @@
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search">搜索</Button > <Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search">搜索</Button >
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -44,8 +43,6 @@
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -101,7 +101,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -112,7 +111,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="memberTable" ref="memberTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -145,7 +143,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -156,7 +153,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="shopTable" ref="shopTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -191,7 +187,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -202,7 +197,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="weChatTable" ref="weChatTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="weChatSearchForm.pageNumber" :current="weChatSearchForm.pageNumber"
@ -236,7 +230,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -247,7 +240,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="otherTable" ref="otherTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -75,7 +75,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -86,7 +85,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -41,7 +41,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -52,7 +51,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="pageNumber" :current="pageNumber"

View File

@ -46,7 +46,6 @@
<Row class="operation"> <Row class="operation">
<Button @click="weChatSync" type="primary">同步微信消息</Button> <Button @click="weChatSync" type="primary">同步微信消息</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -54,7 +53,6 @@
:data="weChatData" :data="weChatData"
ref="weChatTable" ref="weChatTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="weChatSearchForm.pageNumber" :current="weChatSearchForm.pageNumber"
@ -77,7 +75,6 @@
<Row class="operation"> <Row class="operation">
<Button @click="weChatSync('mp')" type="primary">同步微信小程序订阅消息</Button> <Button @click="weChatSync('mp')" type="primary">同步微信小程序订阅消息</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -86,7 +83,6 @@
sortable="custom" sortable="custom"
ref="weChatMPTable" ref="weChatMPTable"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="weChatMPSearchForm.pageNumber" :current="weChatMPSearchForm.pageNumber"

View File

@ -1,29 +1,58 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form
ref="searchForm"
:model="searchForm"
inline
:label-width="70"
class="search-form"
>
<Form-item label="标题" prop="title"> <Form-item label="标题" prop="title">
<Input type="text" v-model="searchForm.title" placeholder="请输入标题" clearable style="width: 200px"/> <Input
type="text"
v-model="searchForm.title"
placeholder="请输入标题"
clearable
style="width: 200px"
/>
</Form-item> </Form-item>
<Form-item label="消息内容" prop="content"> <Form-item label="消息内容" prop="content">
<Input type="text" v-model="searchForm.content" placeholder="请输入消息内容" clearable style="width: 200px"/> <Input
type="text"
v-model="searchForm.content"
placeholder="请输入消息内容"
clearable
style="width: 200px"
/>
</Form-item> </Form-item>
<span v-if="drop"> <span v-if="drop">
<Form-item label="发送类型" prop="sendType"> <Form-item label="发送类型" prop="sendType">
<Select v-model="searchForm.sendType" placeholder="请选择" clearable style="width: 200px"> <Select
v-model="searchForm.sendType"
placeholder="请选择"
clearable
style="width: 200px"
>
<Option value="ALL">全站会员</Option> <Option value="ALL">全站会员</Option>
<Option value="SELECT">指定会员</Option> <Option value="SELECT">指定会员</Option>
</Select> </Select>
</Form-item> </Form-item>
<Form-item label="创建人" prop="createBy"> <Form-item label="创建人" prop="createBy">
<Input type="text" v-model="searchForm.createBy" placeholder="请输入创建人" clearable style="width: 200px"/> <Input
type="text"
v-model="searchForm.createBy"
placeholder="请输入创建人"
clearable
style="width: 200px"
/>
</Form-item> </Form-item>
</span> </span>
<Form-item style="margin-left:-35px;" class="br"> <Form-item style="margin-left: -35px" class="br">
<Button @click="handleSearch" type="primary" icon="ios-search">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search"
>搜索</Button
>
<Button @click="handleReset"></Button> <Button @click="handleReset"></Button>
<a class="drop-down" @click="dropDown"> <a class="drop-down" @click="dropDown">
{{ dropDownContent }} {{ dropDownContent }}
@ -43,23 +72,38 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> :loading="loading"
</Row> border
:columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page
:current="searchForm.pageNumber"
:total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "member-notice-sender", name: "member-notice-sender",
components: { components: {},
},
data() { data() {
return { return {
openSearch: true, // openSearch: true, //
@ -71,7 +115,8 @@
drop: false, // drop: false, //
dropDownContent: "展开", // drop dropDownContent: "展开", // drop
dropDownIcon: "ios-arrow-down", // drop dropDownIcon: "ios-arrow-down", // drop
searchForm: { // searchForm: {
//
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
@ -85,12 +130,12 @@
{ {
type: "selection", type: "selection",
width: 60, width: 60,
align: "center" align: "center",
}, },
{ {
type: "index", type: "index",
width: 60, width: 60,
align: "center" align: "center",
}, },
{ {
title: "标题", title: "标题",
@ -110,22 +155,21 @@
h("Badge", { h("Badge", {
props: { props: {
status: "success", status: "success",
text: "全部会员" text: "全部会员",
} },
}) }),
]); ]);
} else { } else {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "success", status: "success",
text: "指定会员" text: "指定会员",
} },
}) }),
]); ]);
} }
} },
}, },
{ {
title: "创建人", title: "创建人",
@ -152,22 +196,22 @@
props: { props: {
type: "error", type: "error",
size: "small", size: "small",
icon: "md-trash" icon: "md-trash",
}, },
on: { on: {
click: () => { click: () => {
this.remove(params.row); this.remove(params.row);
} },
} },
}, },
"删除" "删除"
) ),
]); ]);
} },
} },
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -223,13 +267,15 @@
getDataList() { getDataList() {
this.loading = true; this.loading = true;
// //
this.getRequest("/memberNoticeSenter/getByPage", this.searchForm).then(res => { this.getRequest("/memberNoticeSenter/getByPage", this.searchForm).then(
(res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
this.total = res.result.total; this.total = res.result.total;
} }
}); }
);
// //
//this.data = [ //this.data = [
//]; //];
@ -240,7 +286,7 @@
let query = { type: 0, backRoute: this.$route.name }; let query = { type: 0, backRoute: this.$route.name };
this.$router.push({ this.$router.push({
name: "add_message", name: "add_message",
query: query query: query,
}); });
}, },
edit(v) { edit(v) {
@ -266,18 +312,20 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
this.deleteRequest("/memberNoticeSenter/delByIds/" + v.id).then(res => { this.deleteRequest("/memberNoticeSenter/delByIds/" + v.id).then(
(res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); }
);
// //
//this.$Message.success(""); //this.$Message.success("");
//this.$Modal.remove(); //this.$Modal.remove();
//this.getDataList(); //this.getDataList();
} },
}); });
}, },
delAll() { delAll() {
@ -296,26 +344,28 @@
}); });
ids = ids.substring(0, ids.length - 1); ids = ids.substring(0, ids.length - 1);
// //
this.deleteRequest("/memberNoticeSenter/delByIds/" + ids).then(res => { this.deleteRequest("/memberNoticeSenter/delByIds/" + ids).then(
(res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.clearSelectAll(); this.clearSelectAll();
this.getDataList(); this.getDataList();
} }
}); }
);
// //
//this.$Message.success(""); //this.$Message.success("");
//this.$Modal.remove(); //this.$Modal.remove();
//this.clearSelectAll(); //this.clearSelectAll();
//this.getDataList(); //this.getDataList();
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -22,7 +22,6 @@
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search">搜索</Button > <Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search">搜索</Button >
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -34,8 +33,6 @@
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -10,7 +10,6 @@
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="add" type="primary" >添加</Button> <Button @click="add" type="primary" >添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -21,7 +20,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -45,7 +43,6 @@
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -56,7 +53,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -80,7 +76,6 @@
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -91,7 +86,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -116,7 +110,6 @@
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
<Button @click="getDataList" icon="md-refresh">刷新</Button> <Button @click="getDataList" icon="md-refresh">刷新</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -127,7 +120,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -73,7 +73,6 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -106,7 +105,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -36,8 +34,6 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -58,7 +54,6 @@
</Poptip> </Poptip>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -74,8 +69,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -29,16 +27,12 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -21,18 +19,14 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"
@on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize"
@on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -51,7 +51,6 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -62,7 +61,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -28,16 +26,12 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -58,7 +58,6 @@
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -75,7 +74,6 @@
@click="$router.push({name: 'order-detail',query: {sn: scope.row.orderSn}})">{{scope.row.orderSn}}</a> @click="$router.push({name: 'order-detail',query: {sn: scope.row.orderSn}})">{{scope.row.orderSn}}</a>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -20,7 +20,6 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="add" type="primary" style="">添加</Button> <Button @click="add" type="primary" style="">添加</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
<!-- 页面展示 --> <!-- 页面展示 -->
<template slot="openStatusSlot" slot-scope="scope"> <template slot="openStatusSlot" slot-scope="scope">
@ -33,7 +32,6 @@
</i-switch> </i-switch>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator> size="small" show-total show-elevator>

View File

@ -4,7 +4,6 @@
<template> <template>
<div class="search"> <div class="search">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -15,7 +14,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="pageNumber" :current="pageNumber"

View File

@ -1,13 +1,13 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
<Button @click="disableAll" icon="md-trash">批量禁用</Button> <Button @click="disableAll" icon="md-trash">批量禁用</Button>
<Button @click="getDataList" icon="md-refresh">刷新</Button> <Button @click="getDataList" icon="md-refresh">刷新</Button>
<Button type="dashed" @click="openTip=!openTip">{{openTip ? "" : ""}}</Button> <Button type="dashed" @click="openTip = !openTip">{{
openTip ? "关闭提示" : "开启提示"
}}</Button>
</Row> </Row>
<Row v-show="openTip"> <Row v-show="openTip">
<Alert show-icon> <Alert show-icon>
@ -15,24 +15,54 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> :loading="loading"
</Row> border
:columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page
:current="searchForm.pageNumber"
:total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col> <Modal
</Row> :title="modalTitle"
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500"> v-model="modalVisible"
<Form ref="form" :model="form" :label-width="100" :rules="formValidate" > <FormItem label="名称" prop="name" > :mask-closable="false"
:width="500"
>
<Form ref="form" :model="form" :label-width="100" :rules="formValidate">
<FormItem label="名称" prop="name">
<Input v-model="form.name" clearable style="width: 100%" /> <Input v-model="form.name" clearable style="width: 100%" />
</FormItem> </FormItem>
<FormItem label="图片" prop="url"> <FormItem label="图片" prop="url">
<upload-pic-input v-model="form.url" style="width:100%"></upload-pic-input> <upload-pic-input
v-model="form.url"
style="width: 100%"
></upload-pic-input>
</FormItem> </FormItem>
<FormItem label="操作类型" prop="operationType"> <FormItem label="操作类型" prop="operationType">
<Select v-model="form.operationType" placeholder="请选择" clearable style="width: 200px"> <Select
v-model="form.operationType"
placeholder="请选择"
clearable
style="width: 200px"
>
<Option value="NONE">无操作</Option> <Option value="NONE">无操作</Option>
<Option value="URL">链接地址</Option> <Option value="URL">链接地址</Option>
<Option value="GOODS">商品序号</Option> <Option value="GOODS">商品序号</Option>
@ -50,7 +80,9 @@
</Form> </Form>
<div slot="footer"> <div slot="footer">
<Button type="text" @click="modalVisible = false">取消</Button> <Button type="text" @click="modalVisible = false">取消</Button>
<Button type="primary" :loading="submitLoading" @click="handleSubmit"></Button> <Button type="primary" :loading="submitLoading" @click="handleSubmit"
>提交</Button
>
</div> </div>
</Modal> </Modal>
</div> </div>
@ -62,14 +94,14 @@
saveFocusData, saveFocusData,
disableFocus, disableFocus,
enableFocus, enableFocus,
delFocus delFocus,
} from "@/api/pages"; } from "@/api/pages";
import uploadPicInput from "@/views/my-components/lili/upload-pic-input"; import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
export default { export default {
name: "mobileFocus", name: "mobileFocus",
components: { components: {
uploadPicInput uploadPicInput,
}, },
data() { data() {
return { return {
@ -78,14 +110,16 @@
modalType: 0, // modalType: 0, //
modalVisible: false, // modalVisible: false, //
modalTitle: "", // modalTitle: "", //
searchForm: { // searchForm: {
//
clientType: "MOBILE", // clientType: "MOBILE", //
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
order: "desc", // order: "desc", //
}, },
form: { // form: {
//
name: "", name: "",
operationType: "", operationType: "",
operationUrl: "", operationUrl: "",
@ -104,7 +138,7 @@
{ {
type: "selection", type: "selection",
width: 60, width: 60,
align: "center" align: "center",
}, },
{ {
title: "名称", title: "名称",
@ -118,26 +152,26 @@
minWidth: 100, minWidth: 100,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
if (params.row.status == 'CLOSE') { if (params.row.status == "CLOSE") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "error", status: "error",
text: "禁用" text: "禁用",
} },
}) }),
]); ]);
} else if (params.row.status == 'OPEN') { } else if (params.row.status == "OPEN") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "success", status: "success",
text: "启用" text: "启用",
} },
}) }),
]); ]);
} }
} },
}, },
{ {
title: "图片", title: "图片",
@ -148,17 +182,17 @@
return h("img", { return h("img", {
attrs: { attrs: {
src: params.row.url, src: params.row.url,
alt: "加载图片失败" alt: "加载图片失败",
}, },
style: { style: {
cursor: "pointer", cursor: "pointer",
width: "80px", width: "80px",
height: "60px", height: "60px",
margin: "10px 0", margin: "10px 0",
"object-fit": "contain" "object-fit": "contain",
} },
}); });
} },
}, },
{ {
title: "排序", title: "排序",
@ -179,16 +213,16 @@
{ {
props: { props: {
type: "success", type: "success",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.enable(params.row); this.enable(params.row);
} },
} },
}, },
"启用" "启用"
); );
@ -197,16 +231,16 @@
"Button", "Button",
{ {
props: { props: {
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.disable(params.row); this.disable(params.row);
} },
} },
}, },
"禁用" "禁用"
); );
@ -217,16 +251,16 @@
{ {
props: { props: {
type: "primary", type: "primary",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.edit(params.row); this.edit(params.row);
} },
} },
}, },
"编辑" "编辑"
), ),
@ -238,23 +272,23 @@
size: "small", size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.remove(params.row); this.remove(params.row);
} },
} },
}, },
"删除" "删除"
), ),
enableOrDisable, enableOrDisable,
]); ]);
} },
} },
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -300,7 +334,7 @@
getDataList() { getDataList() {
this.loading = true; this.loading = true;
// //
getFocusData(this.searchForm).then(res => { getFocusData(this.searchForm).then((res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
@ -321,14 +355,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
enableFocus(v.id).then(res => { enableFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disable(v) { disable(v) {
@ -339,26 +373,26 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
disableFocus(v.id).then(res => { disableFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate(valid => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
this.form.ClientType = "MOBILE" this.form.ClientType = "MOBILE";
this.submitLoading = true; this.submitLoading = true;
if (this.modalType === 0) { if (this.modalType === 0) {
this.form.status = "OPEN" this.form.status = "OPEN";
// id // id
delete this.form.id; delete this.form.id;
saveFocusData(this.form).then(res => { saveFocusData(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -368,7 +402,7 @@
}); });
} else { } else {
// //
saveFocusData(this.form).then(res => { saveFocusData(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -410,14 +444,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
delFocus(v.id).then(res => { delFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disableAll() { disableAll() {
@ -436,7 +470,7 @@
}); });
ids = ids.substring(0, ids.length - 1); ids = ids.substring(0, ids.length - 1);
// //
disableFocus(ids).then(res => { disableFocus(ids).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("禁用成功"); this.$Message.success("禁用成功");
@ -444,13 +478,13 @@
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -1,13 +1,13 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
<Button @click="disableAll" icon="md-trash">批量禁用</Button> <Button @click="disableAll" icon="md-trash">批量禁用</Button>
<Button @click="getDataList" icon="md-refresh">刷新</Button> <Button @click="getDataList" icon="md-refresh">刷新</Button>
<Button type="dashed" @click="openTip=!openTip">{{openTip ? "" : ""}}</Button> <Button type="dashed" @click="openTip = !openTip">{{
openTip ? "关闭提示" : "开启提示"
}}</Button>
</Row> </Row>
<Row v-show="openTip"> <Row v-show="openTip">
<Alert show-icon> <Alert show-icon>
@ -15,24 +15,54 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> :loading="loading"
</Row> border
:columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page
:current="searchForm.pageNumber"
:total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col> <Modal
</Row> :title="modalTitle"
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500"> v-model="modalVisible"
<Form ref="form" :model="form" :label-width="100" :rules="formValidate" > <FormItem label="名称" prop="name" > :mask-closable="false"
:width="500"
>
<Form ref="form" :model="form" :label-width="100" :rules="formValidate">
<FormItem label="名称" prop="name">
<Input v-model="form.name" clearable style="width: 100%" /> <Input v-model="form.name" clearable style="width: 100%" />
</FormItem> </FormItem>
<FormItem label="图片" prop="url"> <FormItem label="图片" prop="url">
<upload-pic-input v-model="form.url" style="width:100%"></upload-pic-input> <upload-pic-input
v-model="form.url"
style="width: 100%"
></upload-pic-input>
</FormItem> </FormItem>
<FormItem label="操作类型" prop="operationType"> <FormItem label="操作类型" prop="operationType">
<Select v-model="form.operationType" placeholder="请选择" clearable style="width: 200px"> <Select
v-model="form.operationType"
placeholder="请选择"
clearable
style="width: 200px"
>
<Option value="NONE">无操作</Option> <Option value="NONE">无操作</Option>
<Option value="URL">链接地址</Option> <Option value="URL">链接地址</Option>
<Option value="GOODS">商品序号</Option> <Option value="GOODS">商品序号</Option>
@ -50,7 +80,9 @@
</Form> </Form>
<div slot="footer"> <div slot="footer">
<Button type="text" @click="modalVisible = false">取消</Button> <Button type="text" @click="modalVisible = false">取消</Button>
<Button type="primary" :loading="submitLoading" @click="handleSubmit"></Button> <Button type="primary" :loading="submitLoading" @click="handleSubmit"
>提交</Button
>
</div> </div>
</Modal> </Modal>
</div> </div>
@ -62,14 +94,14 @@
saveFocusData, saveFocusData,
disableFocus, disableFocus,
enableFocus, enableFocus,
delFocus delFocus,
} from "@/api/pages"; } from "@/api/pages";
import uploadPicInput from "@/views/my-components/lili/upload-pic-input"; import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
export default { export default {
name: "pcFocus", name: "pcFocus",
components: { components: {
uploadPicInput uploadPicInput,
}, },
data() { data() {
return { return {
@ -78,14 +110,16 @@
modalType: 0, // modalType: 0, //
modalVisible: false, // modalVisible: false, //
modalTitle: "", // modalTitle: "", //
searchForm: { // searchForm: {
//
clientType: "PC", // clientType: "PC", //
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
order: "desc", // order: "desc", //
}, },
form: { // form: {
//
name: "", name: "",
operationType: "", operationType: "",
operationUrl: "", operationUrl: "",
@ -104,7 +138,7 @@
{ {
type: "selection", type: "selection",
width: 60, width: 60,
align: "center" align: "center",
}, },
{ {
title: "名称", title: "名称",
@ -118,26 +152,26 @@
minWidth: 100, minWidth: 100,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
if (params.row.status == 'CLOSE') { if (params.row.status == "CLOSE") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "error", status: "error",
text: "禁用" text: "禁用",
} },
}) }),
]); ]);
} else if (params.row.status == 'OPEN') { } else if (params.row.status == "OPEN") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "success", status: "success",
text: "启用" text: "启用",
} },
}) }),
]); ]);
} }
} },
}, },
{ {
title: "图片", title: "图片",
@ -148,17 +182,17 @@
return h("img", { return h("img", {
attrs: { attrs: {
src: params.row.url, src: params.row.url,
alt: "加载图片失败" alt: "加载图片失败",
}, },
style: { style: {
cursor: "pointer", cursor: "pointer",
width: "80px", width: "80px",
height: "60px", height: "60px",
margin: "10px 0", margin: "10px 0",
"object-fit": "contain" "object-fit": "contain",
} },
}); });
} },
}, },
{ {
title: "排序", title: "排序",
@ -179,16 +213,16 @@
{ {
props: { props: {
type: "success", type: "success",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.enable(params.row); this.enable(params.row);
} },
} },
}, },
"启用" "启用"
); );
@ -197,16 +231,16 @@
"Button", "Button",
{ {
props: { props: {
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.disable(params.row); this.disable(params.row);
} },
} },
}, },
"禁用" "禁用"
); );
@ -217,16 +251,16 @@
{ {
props: { props: {
type: "primary", type: "primary",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.edit(params.row); this.edit(params.row);
} },
} },
}, },
"编辑" "编辑"
), ),
@ -238,23 +272,23 @@
size: "small", size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.remove(params.row); this.remove(params.row);
} },
} },
}, },
"删除" "删除"
), ),
enableOrDisable, enableOrDisable,
]); ]);
} },
} },
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -300,7 +334,7 @@
getDataList() { getDataList() {
this.loading = true; this.loading = true;
// //
getFocusData(this.searchForm).then(res => { getFocusData(this.searchForm).then((res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
@ -321,14 +355,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
enableFocus(v.id).then(res => { enableFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disable(v) { disable(v) {
@ -339,26 +373,26 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
disableFocus(v.id).then(res => { disableFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate(valid => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
this.form.ClientType = "PC" this.form.ClientType = "PC";
this.submitLoading = true; this.submitLoading = true;
if (this.modalType === 0) { if (this.modalType === 0) {
this.form.status = "OPEN" this.form.status = "OPEN";
// id // id
delete this.form.id; delete this.form.id;
saveFocusData(this.form).then(res => { saveFocusData(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -368,7 +402,7 @@
}); });
} else { } else {
// //
saveFocusData(this.form).then(res => { saveFocusData(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -410,14 +444,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
delFocus(v.id).then(res => { delFocus(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disableAll() { disableAll() {
@ -436,7 +470,7 @@
}); });
ids = ids.substring(0, ids.length - 1); ids = ids.substring(0, ids.length - 1);
// //
disableFocus(ids).then(res => { disableFocus(ids).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("禁用成功"); this.$Message.success("禁用成功");
@ -444,13 +478,13 @@
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -1,13 +1,13 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
<Button @click="disableAll" icon="md-trash">批量禁用</Button> <Button @click="disableAll" icon="md-trash">批量禁用</Button>
<Button @click="getDataList" icon="md-refresh">刷新</Button> <Button @click="getDataList" icon="md-refresh">刷新</Button>
<Button type="dashed" @click="openTip=!openTip">{{openTip ? "" : ""}}</Button> <Button type="dashed" @click="openTip = !openTip">{{
openTip ? "关闭提示" : "开启提示"
}}</Button>
</Row> </Row>
<Row v-show="openTip"> <Row v-show="openTip">
<Alert show-icon> <Alert show-icon>
@ -15,19 +15,37 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row> <Table
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" :loading="loading"
@on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> border
</Row> :columns="columns"
:data="data"
ref="table"
sortable="custom"
@on-sort-change="changeSort"
@on-selection-change="changeSelect"
></Table>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" <Page
@on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" :current="searchForm.pageNumber"
size="small" show-total show-elevator show-sizer></Page> :total="total"
:page-size="searchForm.pageSize"
@on-change="changePage"
@on-page-size-change="changePageSize"
:page-size-opts="[10, 20, 50]"
size="small"
show-total
show-elevator
show-sizer
></Page>
</Row> </Row>
</Card> </Card>
</Col> <Modal
</Row> :title="modalTitle"
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500"> v-model="modalVisible"
:mask-closable="false"
:width="500"
>
<Form ref="form" :model="form" :label-width="100" :rules="formValidate"> <Form ref="form" :model="form" :label-width="100" :rules="formValidate">
<FormItem label="导航栏名称" prop="navigationName"> <FormItem label="导航栏名称" prop="navigationName">
<Input v-model="form.navigationName" clearable style="width: 100%" /> <Input v-model="form.navigationName" clearable style="width: 100%" />
@ -36,12 +54,17 @@
<Input v-model="form.url" clearable style="width: 100%" /> <Input v-model="form.url" clearable style="width: 100%" />
</FormItem> </FormItem>
<FormItem label="品牌图标" prop="image"> <FormItem label="品牌图标" prop="image">
<upload-pic-input v-model="form.image" style="width:100%"></upload-pic-input> <upload-pic-input
v-model="form.image"
style="width: 100%"
></upload-pic-input>
</FormItem> </FormItem>
</Form> </Form>
<div slot="footer"> <div slot="footer">
<Button type="text" @click="modalVisible = false">取消</Button> <Button type="text" @click="modalVisible = false">取消</Button>
<Button type="primary" :loading="submitLoading" @click="handleSubmit"></Button> <Button type="primary" :loading="submitLoading" @click="handleSubmit"
>提交</Button
>
</div> </div>
</Modal> </Modal>
</div> </div>
@ -54,14 +77,14 @@
disableNavigation, disableNavigation,
enableNavigation, enableNavigation,
delNavigation, delNavigation,
update update,
} from "@/api/pages"; } from "@/api/pages";
import uploadPicInput from "@/views/my-components/lili/upload-pic-input"; import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
export default { export default {
name: "mobileNavigation", name: "mobileNavigation",
components: { components: {
uploadPicInput uploadPicInput,
}, },
data() { data() {
return { return {
@ -71,21 +94,27 @@
modalType: 0, // modalType: 0, //
modalVisible: false, // modalVisible: false, //
modalTitle: "", // modalTitle: "", //
searchForm: { // searchForm: {
//
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
order: "desc", // order: "desc", //
}, },
form: { // form: {
//
navigationName: "", navigationName: "",
image: "", image: "",
url: "", url: "",
}, },
// //
formValidate: { formValidate: {
url: [{required: true, message: "导航栏url不能为空", trigger: "blur"}], url: [
navigationName: [{required: true, message: "导航栏不能为空", trigger: "blur"}], { required: true, message: "导航栏url不能为空", trigger: "blur" },
],
navigationName: [
{ required: true, message: "导航栏不能为空", trigger: "blur" },
],
}, },
submitLoading: false, // submitLoading: false, //
selectList: [], // selectList: [], //
@ -95,7 +124,7 @@
{ {
type: "selection", type: "selection",
width: 60, width: 60,
align: "center" align: "center",
}, },
{ {
title: "导航名称", title: "导航名称",
@ -109,26 +138,26 @@
minWidth: 100, minWidth: 100,
sortable: false, sortable: false,
render: (h, params) => { render: (h, params) => {
if (params.row.status == 'CLOSE') { if (params.row.status == "CLOSE") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "error", status: "error",
text: "禁用" text: "禁用",
} },
}) }),
]); ]);
} else if (params.row.status == 'OPEN') { } else if (params.row.status == "OPEN") {
return h("div", [ return h("div", [
h("Badge", { h("Badge", {
props: { props: {
status: "success", status: "success",
text: "启用" text: "启用",
} },
}) }),
]); ]);
} }
} },
}, },
{ {
title: "图片", title: "图片",
@ -139,17 +168,17 @@
return h("img", { return h("img", {
attrs: { attrs: {
src: params.row.image, src: params.row.image,
alt: "加载图片失败" alt: "加载图片失败",
}, },
style: { style: {
cursor: "pointer", cursor: "pointer",
width: "80px", width: "80px",
height: "60px", height: "60px",
margin: "10px 0", margin: "10px 0",
"object-fit": "contain" "object-fit": "contain",
} },
}); });
} },
}, },
{ {
title: "排序", title: "排序",
@ -163,7 +192,7 @@
align: "center", align: "center",
width: 250, width: 250,
render: (h, params) => { render: (h, params) => {
console.warn(params.status) console.warn(params.status);
let enableOrDisable = ""; let enableOrDisable = "";
if (params.row.status == "CLOSE") { if (params.row.status == "CLOSE") {
enableOrDisable = h( enableOrDisable = h(
@ -171,16 +200,16 @@
{ {
props: { props: {
type: "success", type: "success",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.enable(params.row); this.enable(params.row);
} },
} },
}, },
"启用" "启用"
); );
@ -189,16 +218,16 @@
"Button", "Button",
{ {
props: { props: {
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.disable(params.row); this.disable(params.row);
} },
} },
}, },
"禁用" "禁用"
); );
@ -209,16 +238,16 @@
{ {
props: { props: {
type: "primary", type: "primary",
size: "small" size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.edit(params.row); this.edit(params.row);
} },
} },
}, },
"编辑" "编辑"
), ),
@ -230,23 +259,23 @@
size: "small", size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.del(params.row); this.del(params.row);
} },
} },
}, },
"删除" "删除"
), ),
enableOrDisable, enableOrDisable,
]); ]);
} },
} },
], ],
data: [], // data: [], //
total: 0 // total: 0, //
}; };
}, },
methods: { methods: {
@ -290,10 +319,10 @@
this.selectCount = e.length; this.selectCount = e.length;
}, },
getDataList() { getDataList() {
this.searchForm.clientType = this.type this.searchForm.clientType = this.type;
this.loading = true; this.loading = true;
// //
getNavigationData(this.searchForm).then(res => { getNavigationData(this.searchForm).then((res) => {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
@ -304,14 +333,14 @@
this.loading = false; this.loading = false;
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate(valid => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
this.submitLoading = true; this.submitLoading = true;
this.form.clientType = this.type this.form.clientType = this.type;
if (this.modalType === 0) { if (this.modalType === 0) {
// id // id
delete this.form.id; delete this.form.id;
save(this.form).then(res => { save(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -321,7 +350,7 @@
}); });
} else { } else {
// //
update(this.form).then(res => { update(this.form).then((res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -363,14 +392,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
enableNavigation(v.id).then(res => { enableNavigation(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disable(v) { disable(v) {
@ -381,14 +410,14 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
disableNavigation(v.id).then(res => { disableNavigation(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
disableAll() { disableAll() {
@ -407,7 +436,7 @@
}); });
ids = ids.substring(0, ids.length - 1); ids = ids.substring(0, ids.length - 1);
// //
disableNavigation(ids).then(res => { disableNavigation(ids).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
@ -415,7 +444,7 @@
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
}, },
del(v) { del(v) {
@ -426,21 +455,21 @@
loading: true, loading: true,
onOk: () => { onOk: () => {
// //
delNavigation(v.id).then(res => { delNavigation(v.id).then((res) => {
this.$Modal.remove(); this.$Modal.remove();
if (res.success) { if (res.success) {
this.$Message.success("操作成功"); this.$Message.success("操作成功");
this.getDataList(); this.getDataList();
} }
}); });
} },
}); });
} },
}, },
mounted() { mounted() {
this.init(); this.init();
} },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
@ -15,18 +13,14 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"
@on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize"
@on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500"> <Modal :title="modalTitle" v-model="modalVisible" :mask-closable='false' :width="500">
<Form ref="form" :model="form" :label-width="100" :rules="formValidate"> <Form ref="form" :model="form" :label-width="100" :rules="formValidate">
<FormItem label="导航栏名称" prop="navigationName"> <FormItem label="导航栏名称" prop="navigationName">

View File

@ -42,7 +42,6 @@
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
<!-- <Button @click="upAll" >批量上架</Button> --> <!-- <Button @click="upAll" >批量上架</Button> -->
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -54,13 +53,6 @@
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
> >
<template slot-scope="{ row }" slot="action"> <template slot-scope="{ row }" slot="action">
<!-- <Button
type="info"
size="small"
style="margin-right: 10px"
@click="receiveInfo(row)"
>查看</Button
> -->
<Button <Button
v-if="row.promotionStatus === 'NEW' || row.promotionStatus === 'CLOSE'" v-if="row.promotionStatus === 'NEW' || row.promotionStatus === 'CLOSE'"
type="primary" type="primary"
@ -81,7 +73,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -72,9 +72,7 @@
</div> </div>
<h4>适用品类范围</h4> <h4>适用品类范围</h4>
<div> <div>
<Row>
<Table :loading="loading" border :columns="columns1" :data="data1" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns1" :data="data1" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>

View File

@ -1,9 +1,6 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -28,7 +25,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -44,8 +40,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -43,7 +43,6 @@
<Button @click="handleSearch" type="primary" class="search-btn" icon="ios-search">搜索</Button> <Button @click="handleSearch" type="primary" class="search-btn" icon="ios-search">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -71,7 +70,6 @@
</div> </div>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page operation"> <Row type="flex" justify="end" class="page operation">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -45,7 +45,6 @@
> >
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -72,7 +71,6 @@
</Button> </Button>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -10,10 +10,10 @@
></Table> ></Table>
<h4>商品信息</h4> <h4>商品信息</h4>
<Row class="operation">
<Table <Table
:loading="loading" :loading="loading"
border border
class="operation"
:columns="goodsColumns" :columns="goodsColumns"
:data="goodsData" :data="goodsData"
ref="table" ref="table"
@ -34,7 +34,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page operation"> <Row type="flex" justify="end" class="page operation">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -61,7 +61,6 @@
<Button @click="addPointsGoods" type="primary" >添加积分商品</Button> <Button @click="addPointsGoods" type="primary" >添加积分商品</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -124,7 +123,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -53,7 +53,6 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button type="primary" @click="add"></Button> <Button type="primary" @click="add"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -112,7 +111,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -29,10 +29,10 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row class="operation">
<Table <Table
:loading="loading" :loading="loading"
border border
class="operation"
:columns="goodsColumns" :columns="goodsColumns"
:data="goodsList" :data="goodsList"
ref="table" ref="table"
@ -106,7 +106,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -16,17 +14,13 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -48,7 +48,6 @@
<Tabs active-key="key1" @on-click="clickTabs"> <Tabs active-key="key1" @on-click="clickTabs">
<Tab-pane label="入账流水" key="key1"> <Tab-pane label="入账流水" key="key1">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -56,7 +55,6 @@
:data="order" :data="order"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="orderParam.pageNumber" :current="orderParam.pageNumber"
@ -73,7 +71,6 @@
</Tab-pane> </Tab-pane>
<Tab-pane label="退款流水" key="key2"> <Tab-pane label="退款流水" key="key2">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -81,7 +78,6 @@
:data="refund" :data="refund"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="refundParam.pageNumber" :current="refundParam.pageNumber"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -26,17 +24,13 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-selection-change="changeSelect">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -29,16 +27,12 @@
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button> <Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -246,7 +246,6 @@
</Form> </Form>
</Row> </Row>
<div style="min-height: 180px"> <div style="min-height: 180px">
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -261,7 +260,6 @@
<a @click="$router.push({name: 'order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a> <a @click="$router.push({name: 'order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -349,7 +347,6 @@
</Form> </Form>
</Row> </Row>
<div style="min-height: 180px"> <div style="min-height: 180px">
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -386,7 +383,6 @@
<a @click="$router.push({name: 'after-order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a> <a @click="$router.push({name: 'after-order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page
@ -474,7 +470,6 @@
</Form> </Form>
</Row> </Row>
<div style="min-height: 180px"> <div style="min-height: 180px">
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -511,7 +506,6 @@
<a @click="$router.push({name: 'after-order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a> <a @click="$router.push({name: 'after-order-detail',query: {sn: scope.row.sn}})">{{scope.row.sn}}</a>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page" style="margin-top: 10px"> <Row type="flex" justify="end" class="page" style="margin-top: 10px">
<Page <Page

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -41,16 +39,12 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,13 +1,10 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -18,7 +15,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -34,8 +30,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -55,7 +55,6 @@
</i-switch> </i-switch>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
v-if="showDev" v-if="showDev"
@ -78,8 +77,6 @@
> >
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -35,7 +35,6 @@
<Row class="operation" style="margin-top: 20px"> <Row class="operation" style="margin-top: 20px">
<Button @click="sendMessage" type="primary">发送消息</Button> <Button @click="sendMessage" type="primary">发送消息</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -46,7 +45,6 @@
@on-sort-change="messageChangeSort" @on-sort-change="messageChangeSort"
@on-selection-change="messageChangeSelect" @on-selection-change="messageChangeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchMessageForm.pageNumber" :current="searchMessageForm.pageNumber"
@ -64,7 +62,6 @@
</TabPane> </TabPane>
<TabPane label="通知类站内信" name="SETTING"> <TabPane label="通知类站内信" name="SETTING">
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -75,7 +72,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -206,7 +202,6 @@
</RadioGroup> </RadioGroup>
</FormItem> </FormItem>
<FormItem label="指定商家"> <FormItem label="指定商家">
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -217,7 +212,6 @@
@on-sort-change="messageChangeSort" @on-sort-change="messageChangeSort"
@on-selection-change="messageChangeSelect" @on-selection-change="messageChangeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchShopMessageForm.pageNumber" :current="searchShopMessageForm.pageNumber"

View File

@ -1,17 +1,13 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Tabs value="LIST" @on-click="paneChange"> <Tabs value="LIST" @on-click="paneChange">
<TabPane label="发送任务列表" name="LIST"> <TabPane label="发送任务列表" name="LIST">
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="sendBatchSmsModal" type="primary">发送短信</Button> <Button @click="sendBatchSmsModal" type="primary">发送短信</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="smsColumns" :data="smsData" ref="table" sortable="custom" @on-sort-change="templateChangeSort"> <Table :loading="loading" border :columns="smsColumns" :data="smsData" ref="table" sortable="custom" @on-sort-change="templateChangeSort">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="smsSearchForm.pageNumber" :total="smsTotal" :page-size="smsSearchForm.pageSize" @on-change="smsChangePage" @on-page-size-change="smsChangePageSize" <Page :current="smsSearchForm.pageNumber" :total="smsTotal" :page-size="smsSearchForm.pageSize" @on-change="smsChangePage" @on-page-size-change="smsChangePageSize"
@ -23,10 +19,8 @@
<Button @click="addTemplate" type="primary">添加短信模板</Button> <Button @click="addTemplate" type="primary">添加短信模板</Button>
<Button @click="syncTemplate" type="info">同步</Button> <Button @click="syncTemplate" type="info">同步</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="templateColumns" :data="templateData" ref="table" sortable="custom" @on-sort-change="smsChangeSort"> <Table :loading="loading" border :columns="templateColumns" :data="templateData" ref="table" sortable="custom" @on-sort-change="smsChangeSort">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="templateSearchForm.pageNumber" :total="templateTotal" :page-size="templateSearchForm.pageSize" @on-change="templateChangePage" <Page :current="templateSearchForm.pageNumber" :total="templateTotal" :page-size="templateSearchForm.pageSize" @on-change="templateChangePage"
@on-page-size-change="templateChangePageSize" :page-size-opts="[10, 20, 50]" size="small" show-total show-elevator show-sizer></Page> @on-page-size-change="templateChangePageSize" :page-size-opts="[10, 20, 50]" size="small" show-total show-elevator show-sizer></Page>
@ -37,7 +31,6 @@
<Button @click="addSign" type="primary">添加短信签名</Button> <Button @click="addSign" type="primary">添加短信签名</Button>
<Button @click="syncSign" type="info">同步</Button> <Button @click="syncSign" type="info">同步</Button>
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="signColumns" :data="signData" ref="table" sortable="custom" @on-sort-change="signChangeSort"> <Table :loading="loading" border :columns="signColumns" :data="signData" ref="table" sortable="custom" @on-sort-change="signChangeSort">
<template slot="signStatus" slot-scope="scope"> <template slot="signStatus" slot-scope="scope">
<div v-if="scope.row.signStatus ==2 "> <div v-if="scope.row.signStatus ==2 ">
@ -55,18 +48,13 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="signSearchForm.pageNumber" :total="signTotal" :page-size="signSearchForm.pageSize" @on-change="signChangePage" @on-page-size-change="signChangePageSize" <Page :current="signSearchForm.pageNumber" :total="signTotal" :page-size="signSearchForm.pageSize" @on-change="signChangePage" @on-page-size-change="signChangePageSize"
:page-size-opts="[10, 20, 50]" size="small" show-total show-elevator show-sizer></Page> :page-size-opts="[10, 20, 50]" size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</TabPane> </TabPane>
</Tabs> </Tabs>
</Card> </Card>
</Col>
</Row>
<Modal :title="templateModalTitle" v-model="templateModalVisible" :mask-closable="false" :width="500"> <Modal :title="templateModalTitle" v-model="templateModalVisible" :mask-closable="false" :width="500">
<Form ref="templateForm" :model="templateForm" :label-width="100" :rules="templateFormValidate"> <Form ref="templateForm" :model="templateForm" :label-width="100" :rules="templateFormValidate">
<FormItem label="模板名称" prop="templateName"> <FormItem label="模板名称" prop="templateName">

View File

@ -103,7 +103,6 @@
> >
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -114,7 +113,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
</div> </div>
<div v-show="showType == 'thumb'"> <div v-show="showType == 'thumb'">
<div class="oss-wrapper"> <div class="oss-wrapper">

View File

@ -9,7 +9,6 @@
<Button @click="addRole" type="primary">添加角色</Button> <Button @click="addRole" type="primary">添加角色</Button>
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -20,7 +19,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="pageNumber" :current="pageNumber"

View File

@ -1,16 +1,11 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Tabs value="RESOURCE" @on-click="handleClickType"> <Tabs value="RESOURCE" @on-click="handleClickType">
<TabPane label="图片源" name="RESOURCE"> <TabPane label="图片源" name="RESOURCE">
<Row>
<Col>
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -21,16 +16,16 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
> >
<!-- 商品栏目格式化 --> <!-- 商品栏目格式化 -->
<template slot="imageSlot" slot-scope="scope"> <template slot="imageSlot" slot-scope="scope">
<div style=""> <div style="">
<img :src="scope.row.resource" style="height: 60px;margin-top: 1px;width: 90px"> <img
:src="scope.row.resource"
style="height: 60px; margin-top: 1px; width: 90px"
/>
</div> </div>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -46,16 +41,11 @@
> >
</Page> </Page>
</Row> </Row>
</Col>
</Row>
</TabPane> </TabPane>
<TabPane label="滑块源" name="SLIDER"> <TabPane label="滑块源" name="SLIDER">
<Row>
<Col>
<Row class="operation" style="margin-bottom: 10px"> <Row class="operation" style="margin-bottom: 10px">
<Button @click="add" type="primary" icon="md-add">添加</Button> <Button @click="add" type="primary" icon="md-add">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -69,11 +59,13 @@
<!-- 商品栏目格式化 --> <!-- 商品栏目格式化 -->
<template slot="imageSlot" slot-scope="scope"> <template slot="imageSlot" slot-scope="scope">
<div style=""> <div style="">
<img :src="scope.row.resource" style="height: 60px;margin-top: 1px;width: 60px"> <img
:src="scope.row.resource"
style="height: 60px; margin-top: 1px; width: 60px"
/>
</div> </div>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -88,13 +80,9 @@
show-sizer show-sizer
></Page> ></Page>
</Row> </Row>
</Col>
</Row>
</TabPane> </TabPane>
</Tabs> </Tabs>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"
@ -103,7 +91,12 @@
> >
<Form ref="form" :model="form" :label-width="100" :rules="formValidate"> <Form ref="form" :model="form" :label-width="100" :rules="formValidate">
<FormItem label="名称" prop="name"> <FormItem label="名称" prop="name">
<Input v-model="form.name" maxlength="20" clearable style="width: 100%"/> <Input
v-model="form.name"
maxlength="20"
clearable
style="width: 100%"
/>
</FormItem> </FormItem>
<FormItem label="图片" prop="resource"> <FormItem label="图片" prop="resource">
<Input v-model="form.resource" clearable style="width: 100%" /> <Input v-model="form.resource" clearable style="width: 100%" />
@ -119,8 +112,7 @@
<Button type="text" @click="modalVisible = false">取消</Button> <Button type="text" @click="modalVisible = false">取消</Button>
<Button type="primary" :loading="submitLoading" @click="handleSubmit" <Button type="primary" :loading="submitLoading" @click="handleSubmit"
>提交 >提交
</Button </Button>
>
</div> </div>
</Modal> </Modal>
</div> </div>
@ -165,18 +157,19 @@ export default {
pageSize: 10, // pageSize: 10, //
sort: "createTime", // sort: "createTime", //
order: "desc", // order: "desc", //
type: "RESOURCE" type: "RESOURCE",
}, },
columns: [ columns: [
{ {
title: "名称", title: "名称",
key: "name", key: "name",
minWidth: 80, minWidth: 80,
},{ },
{
title: "图片", title: "图片",
key: "resource", key: "resource",
width: 150, width: 150,
slot: "imageSlot" slot: "imageSlot",
}, },
{ {
title: "创建人", title: "创建人",
@ -213,13 +206,13 @@ export default {
size: "small", size: "small",
}, },
style: { style: {
marginRight: "5px" marginRight: "5px",
}, },
on: { on: {
click: () => { click: () => {
this.edit(params.row); this.edit(params.row);
} },
} },
}, },
"编辑" "编辑"
), ),
@ -233,11 +226,11 @@ export default {
on: { on: {
click: () => { click: () => {
this.remove(params.row); this.remove(params.row);
} },
} },
}, },
"删除" "删除"
) ),
]); ]);
}, },
}, },
@ -264,15 +257,15 @@ export default {
}, },
//tab //tab
handleClickType(v) { handleClickType(v) {
this.searchForm.pageNumber = 1 // this.searchForm.pageNumber = 1; //
this.searchForm.pageSize = 10 // this.searchForm.pageSize = 10; //
// //
if (v == "RESOURCE") { if (v == "RESOURCE") {
this.searchForm.type = "RESOURCE" this.searchForm.type = "RESOURCE";
} }
// //
if (v == "SLIDER") { if (v == "SLIDER") {
this.searchForm.type = "SLIDER" this.searchForm.type = "SLIDER";
} }
this.getDataList(); this.getDataList();
}, },
@ -283,7 +276,7 @@ export default {
this.loading = false; this.loading = false;
if (res.success) { if (res.success) {
this.data = res.result.records; this.data = res.result.records;
this.total = res.result.total this.total = res.result.total;
} }
}); });
this.loading = false; this.loading = false;
@ -294,25 +287,25 @@ export default {
}, },
// //
add() { add() {
this.form.type = this.searchForm.type this.form.type = this.searchForm.type;
this.modalVisible = true this.modalVisible = true;
this.modalType = 0 this.modalType = 0;
this.modalTitle = "添加验证码源" this.modalTitle = "添加验证码源";
}, },
// //
edit(v) { edit(v) {
this.form.name = v.name this.form.name = v.name;
this.form.id = v.id this.form.id = v.id;
this.form.resource = v.resource this.form.resource = v.resource;
this.form.type = v.type this.form.type = v.type;
this.modalType = 1 this.modalType = 1;
this.modalVisible = true this.modalVisible = true;
this.modalTitle = "修改验证码源" this.modalTitle = "修改验证码源";
}, },
// //
handleSubmit() { handleSubmit() {
this.form.type = this.searchForm.type this.form.type = this.searchForm.type;
this.$refs.form.validate((valid) => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
this.submitLoading = true; this.submitLoading = true;
@ -329,14 +322,16 @@ export default {
}); });
} else { } else {
// //
API_Setting.editVerification(this.form.id, this.form).then((res) => { API_Setting.editVerification(this.form.id, this.form).then(
(res) => {
this.submitLoading = false; this.submitLoading = false;
if (res.success) { if (res.success) {
this.$Message.success("修改成功"); this.$Message.success("修改成功");
this.getDataList(); this.getDataList();
this.modalVisible = false; this.modalVisible = false;
} }
}); }
);
} }
} }
}); });
@ -359,8 +354,7 @@ export default {
}); });
}, },
}); });
} },
}, },
mounted() { mounted() {
this.getDataList(); this.getDataList();

View File

@ -43,7 +43,6 @@
<Button @click="delAll"></Button> <Button @click="delAll"></Button>
<Button @click="resetPass"></Button> <Button @click="resetPass"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -54,7 +53,6 @@
@on-selection-change="showSelect" @on-selection-change="showSelect"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -18,14 +18,14 @@ export default {
* @description api请求基础路径 * @description api请求基础路径
*/ */
api_dev: { api_dev: {
// common: 'https://common-api.pickmall.cn', common: 'https://common-api.pickmall.cn',
// buyer: 'https://buyer-api.pickmall.cn', buyer: 'https://buyer-api.pickmall.cn',
// seller: 'https://store-api.pickmall.cn', seller: 'https://store-api.pickmall.cn',
// manager: 'https://admin-api.pickmall.cn' manager: 'https://admin-api.pickmall.cn'
common: 'http://192.168.0.103:8890', // common: 'http://192.168.0.103:8890',
buyer: 'http://192.168.0.103:8888', // buyer: 'http://192.168.0.103:8888',
seller: 'http://192.168.0.103:8889', // seller: 'http://192.168.0.103:8889',
manager: 'http://192.168.0.103:8887' // manager: 'http://192.168.0.103:8887'
}, },
api_prod: { api_prod: {
common: 'https://common-api.pickmall.cn', common: 'https://common-api.pickmall.cn',

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -20,7 +18,6 @@
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
<!-- <Button @click="add" type="default">批量删除</Button>--> <!-- <Button @click="add" type="default">批量删除</Button>-->
</Row> </Row>
<Row>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
<!-- 商品栏目格式化 --> <!-- 商品栏目格式化 -->
<template slot="goodsSlot" slot-scope="{row}"> <template slot="goodsSlot" slot-scope="{row}">
@ -44,13 +41,10 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page> <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<liliDialog <liliDialog
ref="liliDialog" ref="liliDialog"
@selectedGoodsData="selectedGoodsData" @selectedGoodsData="selectedGoodsData"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row v-show="openSearch" @keydown.enter.native="handleSearch"> <Row v-show="openSearch" @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -15,16 +13,12 @@
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"></Table> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small" <Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10,20,50]" size="small"
show-total show-elevator show-sizer></Page> show-total show-elevator show-sizer></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row v-show="openSearch" @keydown.enter.native="handleSearch"> <Row v-show="openSearch" @keydown.enter.native="handleSearch">
<Form <Form
@ -54,7 +52,6 @@
</Form-item> </Form-item>
</Form> </Form>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -65,7 +62,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -81,8 +77,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,6 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">

View File

@ -68,7 +68,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -79,7 +78,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> </Row> <Row @keydown.enter.native="handleSearch"> </Row>
<Row class="operation"> <Row class="operation">
@ -17,7 +15,6 @@
<a class="select-clear" @click="clearSelectAll"></a> <a class="select-clear" @click="clearSelectAll"></a>
</Alert> </Alert>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -28,7 +25,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -44,8 +40,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -45,7 +43,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -56,7 +53,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -72,8 +68,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -38,7 +36,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -59,7 +56,6 @@
</Poptip> </Poptip>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -75,8 +71,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
<Modal <Modal
:title="modalTitle" :title="modalTitle"
v-model="modalVisible" v-model="modalVisible"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -48,7 +46,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -82,7 +79,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -98,8 +94,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -48,7 +46,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -82,7 +79,6 @@
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -98,8 +94,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,8 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col style="width:100%;">
<Row style="flex-direction: column;width: 100%;">
<Card style="height: 60px"> <Card style="height: 60px">
<div style=""> <div style="">
<Button v-if="allowOperation.editPrice" @click="modifyPrice" type="primary"></Button> <Button v-if="allowOperation.editPrice" @click="modifyPrice" type="primary"></Button>
@ -109,8 +106,6 @@
</div> </div>
</div> </div>
</Card> </Card>
</Row>
</Col>
<Card> <Card>
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom"> <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom">
@ -125,7 +120,7 @@
<div class="div-zoom"> <div class="div-zoom">
<a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a> <a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
</div> </div>
<span v-for="(item, key) in JSON.parse(row.specs)"> <span v-for="(item, key) in JSON.parse(row.specs)" :key="key">
<span v-show="key!='images'" style="font-size: 12px;color: #999999;"> <span v-show="key!='images'" style="font-size: 12px;color: #999999;">
{{key}} : {{item}} {{key}} : {{item}}
</span> </span>
@ -173,7 +168,6 @@
</ul> </ul>
</div> </div>
</Card> </Card>
</Row>
<Modal v-model="modal" width="530"> <Modal v-model="modal" width="530">
<p slot="header"> <p slot="header">
<Icon type="edit"></Icon> <Icon type="edit"></Icon>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -50,7 +48,6 @@
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -61,7 +58,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -77,8 +73,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -48,7 +46,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -65,7 +62,6 @@
@click="$router.push({name: 'order-detail',query: {sn: scope.row.orderSn}})">{{scope.row.orderSn}}</a> @click="$router.push({name: 'order-detail',query: {sn: scope.row.orderSn}})">{{scope.row.orderSn}}</a>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -81,8 +77,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -55,7 +55,6 @@
<Button @click="delAll" class="ml_10">批量下架</Button> <Button @click="delAll" class="ml_10">批量下架</Button>
<!-- <Button @click="upAll"></Button> --> <!-- <Button @click="upAll"></Button> -->
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -84,7 +83,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -47,7 +47,6 @@
<Row class="operation"> <Row class="operation">
<Button type="primary" @click="newAct"></Button> <Button type="primary" @click="newAct"></Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -90,7 +89,6 @@
</div> </div>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page operation"> <Row type="flex" justify="end" class="page operation">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -1,9 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
</Col>
</Row>
<Card> <Card>
<Row> <Row>
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form"> <Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
@ -45,7 +41,6 @@
<Row class="operation padding-row"> <Row class="operation padding-row">
<Button @click="newAct" type="primary">添加</Button> <Button @click="newAct" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -104,7 +99,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -16,7 +16,6 @@
</Alert> </Alert>
</Row> </Row>
<h3 class="act-goods">活动商品</h3> <h3 class="act-goods">活动商品</h3>
<Row class="operation">
<Table :loading="loading" border :columns="goodsColumns" :data="goodsData" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"> <Table :loading="loading" border :columns="goodsColumns" :data="goodsData" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
<template slot-scope="{ row, index }" slot="price"> <template slot-scope="{ row, index }" slot="price">
<Input v-model="row.price" :disabled="status==='view'" @input="goodsData[index].price = row.price" /> <Input v-model="row.price" :disabled="status==='view'" @input="goodsData[index].price = row.price" />
@ -25,7 +24,6 @@
<Button type="error" size="small" ghost v-if="status === 'manager'" @click="delGoods(index)"></Button> <Button type="error" size="small" ghost v-if="status === 'manager'" @click="delGoods(index)"></Button>
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page operation"> <Row type="flex" justify="end" class="page operation">
<Page :current="searchForm.pageNumber + 1" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" <Page :current="searchForm.pageNumber + 1" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
size="small" show-total show-elevator show-sizer></Page> size="small" show-total show-elevator show-sizer></Page>

View File

@ -45,7 +45,6 @@
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -79,7 +78,6 @@
> >
</template> </template>
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber + 1" :current="searchForm.pageNumber + 1"

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row @keydown.enter.native="handleSearch"> <Row @keydown.enter.native="handleSearch">
<Form <Form
@ -36,7 +34,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -47,7 +44,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"
@ -63,8 +59,6 @@
></Page> ></Page>
</Row> </Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -47,7 +47,6 @@
<Tabs active-key="tab" @on-click="clickTabs"> <Tabs active-key="tab" @on-click="clickTabs">
<Tab-pane label="订单列表" name="order"> <Tab-pane label="订单列表" name="order">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -55,7 +54,6 @@
:data="orderData" :data="orderData"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="orderParam.pageNumber" :current="orderParam.pageNumber"
@ -72,7 +70,6 @@
</Tab-pane> </Tab-pane>
<Tab-pane label="退单列表" name="refund"> <Tab-pane label="退单列表" name="refund">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -80,7 +77,6 @@
:data="refundData" :data="refundData"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="refundParam.pageNumber" :current="refundParam.pageNumber"
@ -97,7 +93,6 @@
</Tab-pane> </Tab-pane>
<Tab-pane label="分销费用列表" name="distribution"> <Tab-pane label="分销费用列表" name="distribution">
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -105,7 +100,6 @@
:data="distributionData" :data="distributionData"
ref="table" ref="table"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="distributionParam.pageNumber" :current="distributionParam.pageNumber"

View File

@ -43,7 +43,6 @@
<Button @click="handleReset" class="search-btn">重置</Button> <Button @click="handleReset" class="search-btn">重置</Button>
</Form> </Form>
</Row> </Row>
<Row class="padding-row">
<Table <Table
:loading="loading" :loading="loading"
border border
@ -54,7 +53,6 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -1,9 +1,6 @@
<template> <template>
<div class="search"> <div class="search">
<Row>
<Col>
<Card> <Card>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -14,12 +11,7 @@
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
</Card> </Card>
</Col>
</Row>
</div> </div>
</template> </template>

View File

@ -7,7 +7,6 @@
<Row class="operation"> <Row class="operation">
<Button @click="add" type="primary">添加</Button> <Button @click="add" type="primary">添加</Button>
</Row> </Row>
<Row>
<Table <Table
:loading="loading" :loading="loading"
border border
@ -17,7 +16,6 @@
sortable="custom" sortable="custom"
@on-selection-change="changeSelect" @on-selection-change="changeSelect"
></Table> ></Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page <Page
:current="searchForm.pageNumber" :current="searchForm.pageNumber"

View File

@ -150,7 +150,6 @@
</div> </div>
<div> <div>
<Table stripe :columns="columns" :data="data"></Table> <Table stripe :columns="columns" :data="data"></Table>
</div> </div>
<Page @on-change="(index)=>{refundParams.pageNumber = index}" @on-page-size-change="(size)=>{refundParams.pageSize= size}" class="page" show-total show-elevator :total="total" /> <Page @on-change="(index)=>{refundParams.pageNumber = index}" @on-page-size-change="(size)=>{refundParams.pageSize= size}" class="page" show-total show-elevator :total="total" />

View File

@ -59,7 +59,6 @@
<Card style="margin-top: 2px"> <Card style="margin-top: 2px">
<Row>
<Table :loading="loading" <Table :loading="loading"
border border
:columns="columns" :columns="columns"
@ -67,9 +66,7 @@
sortable="custom" sortable="custom"
@on-sort-change="changeSort" @on-sort-change="changeSort"
@on-selection-change="changeSelect"> @on-selection-change="changeSelect">
</Table> </Table>
</Row>
<Row type="flex" justify="end" class="page"> <Row type="flex" justify="end" class="page">
<Page :current="searchForm.pageNumber" <Page :current="searchForm.pageNumber"
:total="total" :total="total"