Commit a753f990 by xiaohai

小细节修改

parent 1098fcad
......@@ -57,7 +57,7 @@
width="150px"
show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.updateType == 1 ? '每天一次' : scope.row.updateType == 2 ? '每周一次' : '每月一次' }}
{{ scope.row.updateType == 1 ? '每天一次' : scope.row.updateType == 2 ? (scope.row.updateDay ? '每周'+ weekArr[scope.row.updateDay - 1] : '每周一次') : (scope.row.updateDay ? '每月' + scope.row.updateDay + '号' : '每月一次')}}
</template>
</el-table-column>
<el-table-column
......@@ -160,6 +160,7 @@
return {
tableData: [],
pageSize: 20,
weekArr: ['一', '二', '三', '四', '五', '六', '日'],
currentPage: 1,
dataSearch: "",
baseUrl: "",
......
<template>
<div class="memberGroupList-wrap common-wrap">
<nav-crumb :navpath="navpath"></nav-crumb>
<div class="p-20">
<group-transfer></group-transfer>
</div>
<div class="right-content">
<div class="right-box">
<div class="common-wrap__opt">
......@@ -158,7 +155,6 @@
import timeFormat from '@/common/js/timeFormat';
import { _debounce } from "@/common/js/public";
import { getRequest, postRequest, postJson, postForm } from '@/api/api';
import groupTransfer from '@/components/groupTransfer';
export default {
name: 'memberGroupList',
data() {
......@@ -430,8 +426,7 @@
that.getGroupList()
},
components: {
navCrumb,
groupTransfer
navCrumb
}
}
</script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment