| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <template>
- <div>
- <use-table ref="tbl"></use-table>
- <div class="container padding_b_0">
- <div class="dflex_wrap">
- <div class="dflex_vertical_c margin_r_40 margin_b_20">
- <div class="search_name">页面名称:</div>
- <el-input v-model="req.name" placeholder="请输入" class="search_input" @input="loadData"></el-input>
- </div>
- <div class="dflex_vertical_c margin_r_40 margin_b_20">
- <div class="search_name">URL地址:</div>
- <el-input v-model="req.url" placeholder="请输入" class="search_input" @input="loadData"></el-input>
- </div>
- <div class="dflex_vertical_c margin_r_40 margin_b_20" v-if="advancedSearch">
- <div class="search_name">页面类型:</div>
- <el-select v-model="req.type" class="search_input" @change="loadData">
- <el-option v-for="(item, idx) in typeOptions" :key="idx" :label="item.label"
- :value="item.value"></el-option>
- </el-select>
- </div>
- <div class="dflex_vertical_c margin_r_40 margin_b_20" v-if="advancedSearch">
- <div class="search_name">状态:</div>
- <el-select v-model="req.state" class="search_input" @change="loadData">
- <el-option v-for="(item, idx) in stateOptions" :key="idx" :label="item.label"
- :value="item.value"></el-option>
- </el-select>
- </div>
- <el-button size="mini" class="search_btn margin_b_20 margin_r_40" @click="loadData">搜索</el-button>
- <div class="search_advanced margin_b_20" @click="advancedSearch = !advancedSearch"
- v-if="!advancedSearch">高级筛选</div>
- <div class="search_common margin_b_20" @click="advancedSearch = !advancedSearch" v-if="advancedSearch">
- 常用筛选</div>
- </div>
- </div>
- <div class="container use-table">
- <div class="dflex_sb margin_b_15">
- <div>
- <el-button class="batch_btn padding0" @click="removes">删除</el-button>
- </div>
- <el-button class="add_btn pos_r padding0" icon="iconfont iconxinzeng" @click="toAdd">新增</el-button>
- </div>
- <el-table :height="tblHeight" :data="tableDatas" @selection-change="handleSelectionChange"
- highlight-current-row>
- <el-table-column type="selection"></el-table-column>
- <el-table-column label="排序" width="200" align="center">
- <template slot-scope="scope">
- <el-input-number size="small" :min="1" v-model="scope.row.sort" @change="sortChange(scope.row)"
- @blur="sortChange(scope.row)"></el-input-number>
- </template>
- </el-table-column>
- <el-table-column property="name" label="页面名称" align="center"></el-table-column>
- <el-table-column property="type" label="页面类型" align="center"></el-table-column>
- <el-table-column property="url" label="url地址" align="center"></el-table-column>
- <el-table-column property="remark" label="备注" align="center"></el-table-column>
- <el-table-column label="状态" align="center">
- <template slot-scope="scope">
- <el-tooltip :content="scope.row.state == '启用' ? '点击禁用' : '点击启用'" placement="top"
- :hide-after="1000" :enterable="false" effect="light">
- <el-switch v-model="scope.row.state" active-color="#ff6a6c" inactive-color="#bbb"
- active-value="启用" inactive-value="禁用" @change="stateChange(scope.row)"></el-switch>
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" fixed="right">
- <template slot-scope="scope">
- <el-tooltip content="编辑" placement="top" :hide-after="1000" :enterable="false" effect="light">
- <el-button type="text" icon="iconfont iconbianji" class="bbb"
- @click="toEdit(scope.row._id)"></el-button>
- </el-tooltip>
- <el-tooltip content="删除" placement="top" :hide-after="1000" :enterable="false" effect="light">
- <el-button type="text" icon="iconfont iconshanchu" class="bbb"
- @click="remove(scope.row._id)"></el-button>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination :current-page="req.page" :page-sizes="[10, 20, 30, 50, 100]" :page-size="req.rows"
- layout="total, sizes, prev, pager, next, jumper" :total="tableTotal" @size-change="sizeChange"
- @current-change="currentChange"></el-pagination>
- </div>
- </div>
- </template>
- <script>
- const __name = 'usemall-app-wxmini-page';
- export default {
- data() {
- return {
- advancedSearch: false,
- typeOptions: [{
- value: '',
- label: '全部'
- },
- {
- value: '网页',
- label: '网页'
- },
- {
- value: '页面',
- label: '页面'
- }
- ],
- stateOptions: [{
- value: '',
- label: '全部'
- },
- {
- value: '启用',
- label: '启用'
- },
- {
- value: '禁用',
- label: '禁用'
- }
- ],
- req: {
- page: 1,
- rows: 10,
- orderby: 'sort asc',
- name: '',
- url: '',
- type: '',
- state: ''
- },
- tblHeight: 0,
- tableDatas: [],
- tableTotal: 0,
- selectDatas: []
- };
- },
- methods: {
- async loadData() {
- await this.$db[__name]
- .whereif(this.req.name, {
- name: new RegExp(this.req.name)
- })
- .whereif(this.req.type, {
- type: this.req.type
- })
- .whereif(this.req.url, {
- url: new RegExp(this.req.url)
- })
- .whereif(this.req.state, {
- state: this.req.state
- })
- .totable(this.req)
- .then(res => {
- if (res.code == 200) {
- this.tableDatas = res.datas.rows;
- this.tableTotal = res.datas.total;
- }
- });
- },
- toAdd() {
- uni.navigateTo({
- url: `/pages/app/mp/mp_page_add_edit?tab=添加小程序`,
- events: {
- refreshData: () => {
- this.loadData();
- }
- }
- });
- },
- toEdit(id) {
- uni.navigateTo({
- url: `/pages/app/mp/mp_page_add_edit?id=${id}&tab=编辑小程序`,
- events: {
- refreshData: () => {
- this.loadData();
- }
- }
- });
- },
- remove(id) {
- this.$confirm('此操作将永久删除该数据!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$db[__name].remove(id).then(res => {
- if (res.code == 200) {
- this.loadData();
- }
- });
- });
- },
- selectionChange(datas) {
- this.selectDatas = datas;
- },
- removes() {
- if (this.selectDatas.length <= 0) {
- this.$message('请勾选需要删除的数据');
- return;
- }
- let ids = this.selectDatas.map(x => x._id);
- this.$confirm('此操作将永久删除勾选数据!', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$db[__name]
- .where({
- _id: this.$db.$cmd.in(ids)
- })
- .remove()
- .then(res => {
- if (res.code == 200) {
- this.loadData();
- }
- });
- });
- },
- stateChange(row) {
- this.$db[__name].update(row._id, {
- state: row.state
- }).then(res => {
- if (res.code == 200) this.loadData();
- });
- },
- sortChange(row) {
- if (row.sort == '') {
- return;
- }
- this.$db[__name].update(row._id, {
- sort: row.sort
- }).then(res => {
- if (res.code == 200) this.loadData();
- });
- },
- sizeChange(size) {
- this.req.rows = size;
- this.loadData();
- },
- currentChange(current) {
- this.req.page = current;
- this.loadData();
- }
- },
- created() {
- this.loadData();
- },
- updated() {
- if (!this.tblHeight) {
- this.tblHeight = this.$refs.tbl.tblHeight;
- }
- }
- };
- </script>
- <style></style>
|