Commit a753f990 by xiaohai

小细节修改

parent 1098fcad
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
width="150px" width="150px"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <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> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -160,6 +160,7 @@ ...@@ -160,6 +160,7 @@
return { return {
tableData: [], tableData: [],
pageSize: 20, pageSize: 20,
weekArr: ['一', '二', '三', '四', '五', '六', '日'],
currentPage: 1, currentPage: 1,
dataSearch: "", dataSearch: "",
baseUrl: "", baseUrl: "",
......
<template> <template>
<div class="memberGroupList-wrap common-wrap"> <div class="memberGroupList-wrap common-wrap">
<nav-crumb :navpath="navpath"></nav-crumb> <nav-crumb :navpath="navpath"></nav-crumb>
<div class="p-20">
<group-transfer></group-transfer>
</div>
<div class="right-content"> <div class="right-content">
<div class="right-box"> <div class="right-box">
<div class="common-wrap__opt"> <div class="common-wrap__opt">
...@@ -158,7 +155,6 @@ ...@@ -158,7 +155,6 @@
import timeFormat from '@/common/js/timeFormat'; import timeFormat from '@/common/js/timeFormat';
import { _debounce } from "@/common/js/public"; import { _debounce } from "@/common/js/public";
import { getRequest, postRequest, postJson, postForm } from '@/api/api'; import { getRequest, postRequest, postJson, postForm } from '@/api/api';
import groupTransfer from '@/components/groupTransfer';
export default { export default {
name: 'memberGroupList', name: 'memberGroupList',
data() { data() {
...@@ -430,8 +426,7 @@ ...@@ -430,8 +426,7 @@
that.getGroupList() that.getGroupList()
}, },
components: { components: {
navCrumb, navCrumb
groupTransfer
} }
} }
</script> </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