整体提交

This commit is contained in:
PC-202311141343\Administrator
2025-08-29 14:43:12 +08:00
parent b3b0207757
commit 8739cb4a34
7 changed files with 446 additions and 268 deletions

View File

@@ -93,7 +93,7 @@ export function viewingMarketInfgetDetail(data) {
//市场信审核列表接口 //市场信审核列表接口
export function approvalMarketInfget(data) { export function approvalMarketInfget(data) {
return request.get({ return request.get({
url: 'app/informationMarketInformation/Approval', url: '/crm/app/informationMarketInformation/Approval',
data data
},{ },{
isTransformResponse:false isTransformResponse:false

View File

@@ -25,7 +25,7 @@ export function saveappCrmCusUserNew(params){
// 查询业务员名下所有的客户 // 查询业务员名下所有的客户
export function SearchForAllCustomersSalesperson(params){ export function SearchForAllCustomersSalesperson(params){
return request.get({ return request.get({
url: 'app/appCrmCusUserNewController/SearchForAllCustomersSalesperson', url: '/crm/app/appCrmCusUserNewController/SearchForAllCustomersSalesperson',
data: params data: params
},{isTransformResponse: false}) },{isTransformResponse: false})
} }

View File

@@ -1,170 +1,256 @@
<template> <template>
<view class="con-body"> <view class="con-body">
<view > <view class="con-bg">
<!-- 头部 --> <!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'选择客户单位'" :leftFlag="true" :rightFlag="false"> <customHeader ref="customHeaderRef" :title="'客户名称列表'" :leftFlag="true" :rightFlag="false">
<template #right>
<view class="head-right" @click="handleAdd">
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>
新增
</view>
</template>
</customHeader> </customHeader>
<!-- 高度来避免头部遮挡 --> <!-- 高度来避免头部遮挡 -->
<view class="top-height"></view> <view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
<uni-easyinput prefixIcon="search" v-model="searchContent" placeholder="请输入客户单位名称" clearable
@iconClick="iconClick">
</uni-easyinput>
<!-- 正文内容 -->
<view class="all-body">
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
<view class="search">
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto"
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
v-model="searchValue" @clear="searchValue=''"
/>
<!-- <button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>-->
</view>
<view class="inner-box"> <!-- 分页部分 -->
<view class="list-cont"> <mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
class="scroll-h" :class="{'loading-scroll':cssFlag}"
><!-- @down="downCallback"-->
<radio-group class="block" @change="radioChange"> <radio-group class="block" @change="radioChange">
<view class="item" v-for="(item, index) in dataList"> <view class="white-bg" v-for="(item, index) in list" :key="index" @click="handleDetail(item)">
<radio class='radio' :value="index" ></radio> <radio class='radio'
<view class="name">{{item.cusName+""+item.shortName+""}}</view> :class="index === selectIndex ? 'checked' : ''"
:checked="index === selectIndex"
:value="index+''">
</radio>
<view class="report-list">
<view class="title">{{ item.cusName }}</view>
<!-- <view class="r-list">
<view class="r-name">{{ item.shortName }}</view>
<view class="r-right btn-orange" size="mini">{{ item.statusName }}</view>
</view>-->
<view class="border-bottom"></view>
<!-- <view class="r-list">
<view class="r-left">日期</view>
<view class="r-right">{{ new Date(item.createTime).toLocaleDateString()}}</view>
</view>-->
</view>
</view> </view>
</radio-group> </radio-group>
</mescroll-uni>
</view> </view>
</view> </view>
</view>
</view> </view>
</template> </template>
<script setup> <script setup>
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
import customHeader from '@/components/customHeader.vue' import customHeader from '@/components/customHeader.vue'
import { getYsCustomerList } from '../../../api/crm/api_ys.js' import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
import { onMounted, reactive, ref, watch } from 'vue' import {getNavBarPaddingTop} from '@/utils/system.js'
import { onLoad } from '@dcloudio/uni-app' import {onLoad} from "@dcloudio/uni-app";
import { useMessage } from '../../../utils/message.js' import {getCustomerList} from "@/api/crm/customer/getCustomer";
let instance = null;
// 获取导航栏高度用于内容区域padding
const navBarPaddingTop = ref(0);
// 查询列表
let list = ref([]);
const mescrollRef = ref(null);
let searchValue = ref('')
let cssFlag=ref(false);//控制样式
const message = useMessage(); const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});
//点击查询客户人员 const downOption = ref({
const queryParams = ref({ auto: true,
cusName: '', textInOffset: '下拉刷新',
nickName:'', textOutOffset: '释放更新',
pageNum: 1, textLoading: '刷新中...'
pageSize: 10 });
})
const mescrollInit = (mescroll) => {
cssFlag.value = true;
mescrollRef.value = mescroll;
};
onMounted(() => { onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
}) })
onLoad(options => {
queryParams.value.cusName = options.cusName
})
const dataList = ref([])
onLoad((options)=>{
instance = getCurrentInstance().proxy;
const eventChannel = instance.getOpenerEventChannel();
//查询某一客户人员 eventChannel.on('requestCusList', async (res) => {
let searchContent = ref('') let {cusName} = res.data;
// console.log(cusName, "客户选择页读取到参数");
function iconClick() { searchValue.value = cusName;
message.toast('点击了查询,当前内容:' + searchContent.value)
}
//监视查询的内容的变化
let queryCusForm = reactive({})
watch(searchContent,(newValue,oldValue)=>{
console.log("输入内容:",searchContent.value)
queryCusForm.cusName = searchContent.value
getYsCustomerList(queryCusForm).then(res=>{
dataList.value = res.rows
}) })
}) })
function radioChange(event) { let timerId = null;
const selectedIndex = event.detail.value // 搜索
let test = dataList.value[selectedIndex] watch(searchValue, (newValue, oldValue) => {
// 发送全局事件 // console.log(`新值: ${newValue}, 旧值: ${oldValue}`);
uni.$emit('onCustomerSelected', test) if(timerId) clearTimeout(timerId);
let cusName = test.cusName;//客户名称 timerId = setTimeout(async ()=>{
let cusId = test.cusId;//客户ID handleSearch();
uni.navigateBack()//返回上一页 clearTimeout(timerId);
timerId = null;
}, 500);
});
// 下拉刷新
const downCallback = async (mescroll) => {
try {
const res = await getList(1, upOption.value.page.size);
list.value = res.list;
// 正确结束下拉刷新状态
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
} catch (error) {
console.log(error)
// 发生错误时结束下拉刷新
mescroll.endErr();
}
} }
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
list.value = res.list;
} else {
list.value.push(...res.list);
}
// 正确结束上拉加载状态
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
} catch (error) {
console.log(error)
// 发生错误时结束上拉加载
mescroll.endErr();
}
}
// 查询搜索跳转
let handleSearch = async () => {
// 触发下拉刷新以重新加载数据
if (mescrollRef.value) {
cssFlag.value = true;
uni.showLoading()
await downCallback(mescrollRef.value.mescroll);
uni.hideLoading()
cssFlag.value = false;
}
}
// 获取数据列表
const getList = async (pageIndex, pageSize) => {
let param = {
pageNum: pageIndex,
pageSize,
cusName: searchValue.value
}
let { rows, total } = await getCustomerList(param)
return {list: rows, total};
}
// 选中项的索引号
const selectIndex = ref(null);
const radioChange = (e) => {
let {value} = e.detail; // index
// console.log(value);
const eventChannel = instance.getOpenerEventChannel();
eventChannel.emit('onCustomerSelected', list.value[value]);
uni.navigateBack()
}
</script> </script>
<style scoped lang="scss"> <style lang="scss" scoped>
.all-body {
.con-body{ /* #ifdef APP-PLUS */
background: white; top: 150rpx;
height: calc(100vh - 75px);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
/* #endif */
} }
.search .btn-search {
/* Container for the checkbox group */ border: none;
.checkbox-group.block { background: none;
width: 100%; line-height: normal;
color: #fff;
line-height: 56rpx !important;
padding: 10rpx 0 0;
text-align: left;
cursor: pointer;
} }
/* Each item row */ .search .btn-search::after {
.itemClass { display: none;
}
.scroll-h {
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
/* #endif */
}
.white-bg {
//padding-bottom:10rpx;
margin-bottom: 0;
overflow: hidden;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 10rpx 0;
margin-left: 15rpx;
border-bottom: 1px solid #eee;
/* optional divider */
}
/* Checkbox styling */
.checkBoxClass {
margin-right: 12rpx;
}
/* Content container */
.clientClass {
flex: 1;
display: flex;
align-items: center;
flex-wrap: wrap;
font-size: 36rpx;
color: #333;
/* default text color */
}
/* Blue username text */
.blue-text {
/* or any blue you prefer */
margin-right: 5rpx;
}
.inner-box {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.list-cont {
width: 100%;
}
.block {
width: 100%;
}
.item {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #eee;
} }
.radio { .radio {
margin-right: 12px; padding-right: 20rpx;
transform: scale(0.9);
} }
.name { .title {
flex: 1; font-size: 32rpx;
font-size: 16px; line-height: 48rpx;
color: #333;
} }
.checked { .report-list {
color: #007AFF; /* 选中状态的颜色 */ width: calc(100% - 70rpx);
//background-color: pink;
}
.border-bottom {
margin-top: 6rpx;
} }
</style> </style>

View File

@@ -17,7 +17,7 @@
<view class="all-body"> <view class="all-body">
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"--> <!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
<view class="search"> <view class="search">
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto" <uni-search-bar class="custom-search" radius="28" placeholder="请输入客户人员名称" clearButton="auto"
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff" cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
@clear="clearSearchValue" @clear="clearSearchValue"
v-model="searchValue" v-model="searchValue"

View File

@@ -1,170 +1,256 @@
<template> <template>
<view class="con-body"> <view class="con-body">
<view > <view class="con-bg">
<!-- 头部 --> <!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'选择客户单位'" :leftFlag="true" :rightFlag="false"> <customHeader ref="customHeaderRef" :title="'客户名称列表'" :leftFlag="true" :rightFlag="false">
<template #right>
<view class="head-right" @click="handleAdd">
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>
新增
</view>
</template>
</customHeader> </customHeader>
<!-- 高度来避免头部遮挡 --> <!-- 高度来避免头部遮挡 -->
<view class="top-height"></view> <view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
<uni-easyinput prefixIcon="search" v-model="searchContent" placeholder="请输入客户单位名称" clearable
@iconClick="iconClick">
</uni-easyinput>
<!-- 正文内容 -->
<view class="all-body">
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
<view class="search">
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto"
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
v-model="searchValue" @clear="searchValue=''"
/>
<!-- <button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>-->
</view>
<view class="inner-box"> <!-- 分页部分 -->
<view class="list-cont"> <mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
class="scroll-h" :class="{'loading-scroll':cssFlag}"
><!-- @down="downCallback"-->
<radio-group class="block" @change="radioChange"> <radio-group class="block" @change="radioChange">
<view class="item" v-for="(item, index) in dataList"> <view class="white-bg" v-for="(item, index) in list" :key="index" @click="handleDetail(item)">
<radio class='radio' :value="index" ></radio> <radio class='radio'
<view class="name">{{item.cusName+""+item.shortName+""}}</view> :class="index === selectIndex ? 'checked' : ''"
:checked="index === selectIndex"
:value="index+''">
</radio>
<view class="report-list">
<view class="title">{{ item.cusName }}</view>
<!-- <view class="r-list">
<view class="r-name">{{ item.shortName }}</view>
<view class="r-right btn-orange" size="mini">{{ item.statusName }}</view>
</view>-->
<view class="border-bottom"></view>
<!-- <view class="r-list">
<view class="r-left">日期</view>
<view class="r-right">{{ new Date(item.createTime).toLocaleDateString()}}</view>
</view>-->
</view>
</view> </view>
</radio-group> </radio-group>
</mescroll-uni>
</view> </view>
</view> </view>
</view>
</view> </view>
</template> </template>
<script setup> <script setup>
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
import customHeader from '@/components/customHeader.vue' import customHeader from '@/components/customHeader.vue'
import { getYsCustomerList } from '../../../../api/crm/activity/activity' import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
import { onMounted, reactive, ref, watch } from 'vue' import {getNavBarPaddingTop} from '@/utils/system.js'
import { onLoad } from '@dcloudio/uni-app' import {onLoad} from "@dcloudio/uni-app";
import { useMessage } from '../../../../utils/message' import {getCustomerList} from "@/api/crm/customer/getCustomer";
let instance = null;
// 获取导航栏高度用于内容区域padding
const navBarPaddingTop = ref(0);
// 查询列表
let list = ref([]);
const mescrollRef = ref(null);
let searchValue = ref('')
let cssFlag=ref(false);//控制样式
const message = useMessage(); const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});
//点击查询客户人员 const downOption = ref({
const queryParams = ref({ auto: true,
cusName: '', textInOffset: '下拉刷新',
nickName:'', textOutOffset: '释放更新',
pageNum: 1, textLoading: '刷新中...'
pageSize: 10 });
})
const mescrollInit = (mescroll) => {
cssFlag.value = true;
mescrollRef.value = mescroll;
};
onMounted(() => { onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
}) })
onLoad(options => {
queryParams.value.cusName = options.cusName
})
const dataList = ref([])
onLoad((options)=>{
instance = getCurrentInstance().proxy;
const eventChannel = instance.getOpenerEventChannel();
//查询某一客户人员 eventChannel.on('requestCusList', async (res) => {
let searchContent = ref('') let {cusName} = res.data;
// console.log(cusName, "客户选择页读取到参数");
function iconClick() { searchValue.value = cusName;
message.toast('点击了查询,当前内容:' + searchContent.value)
}
//监视查询的内容的变化
let queryCusForm = reactive({})
watch(searchContent,(newValue,oldValue)=>{
queryCusForm.cusName = searchContent.value
getYsCustomerList(queryCusForm).then(res=>{
dataList.value = res.rows
}) })
}) })
function radioChange(event) { let timerId = null;
const selectedIndex = event.detail.value // 搜索
let test = dataList.value[selectedIndex] watch(searchValue, (newValue, oldValue) => {
// 发送全局事件 // console.log(`新值: ${newValue}, 旧值: ${oldValue}`);
uni.$emit('onCustomerSelected', test) if(timerId) clearTimeout(timerId);
let cusName = test.cusName;//客户名称 timerId = setTimeout(async ()=>{
let cusId = test.cusId;//客户ID handleSearch();
uni.navigateBack()//返回上一页 clearTimeout(timerId);
timerId = null;
}, 500);
});
// 下拉刷新
const downCallback = async (mescroll) => {
try {
const res = await getList(1, upOption.value.page.size);
list.value = res.list;
// 正确结束下拉刷新状态
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
} catch (error) {
console.log(error)
// 发生错误时结束下拉刷新
mescroll.endErr();
}
} }
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
list.value = res.list;
} else {
list.value.push(...res.list);
}
// 正确结束上拉加载状态
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
} catch (error) {
console.log(error)
// 发生错误时结束上拉加载
mescroll.endErr();
}
}
// 查询搜索跳转
let handleSearch = async () => {
// 触发下拉刷新以重新加载数据
if (mescrollRef.value) {
cssFlag.value = true;
uni.showLoading()
await downCallback(mescrollRef.value.mescroll);
uni.hideLoading()
cssFlag.value = false;
}
}
// 获取数据列表
const getList = async (pageIndex, pageSize) => {
let param = {
pageNum: pageIndex,
pageSize,
cusName: searchValue.value
}
let { rows, total } = await getCustomerList(param)
return {list: rows, total};
}
// 选中项的索引号
const selectIndex = ref(null);
const radioChange = (e) => {
let {value} = e.detail; // index
// console.log(value);
const eventChannel = instance.getOpenerEventChannel();
eventChannel.emit('onCustomerSelected', list.value[value]);
uni.navigateBack()
}
</script> </script>
<style scoped lang="scss"> <style lang="scss" scoped>
.all-body {
.con-body{ /* #ifdef APP-PLUS */
background: white; top: 150rpx;
height: calc(100vh - 75px);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
/* #endif */
} }
.search .btn-search {
/* Container for the checkbox group */ border: none;
.checkbox-group.block { background: none;
width: 100%; line-height: normal;
color: #fff;
line-height: 56rpx !important;
padding: 10rpx 0 0;
text-align: left;
cursor: pointer;
} }
/* Each item row */ .search .btn-search::after {
.itemClass { display: none;
}
.scroll-h {
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
/* #endif */
}
.white-bg {
//padding-bottom:10rpx;
margin-bottom: 0;
overflow: hidden;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 10rpx 0;
margin-left: 15rpx;
border-bottom: 1px solid #eee;
/* optional divider */
}
/* Checkbox styling */
.checkBoxClass {
margin-right: 12rpx;
}
/* Content container */
.clientClass {
flex: 1;
display: flex;
align-items: center;
flex-wrap: wrap;
font-size: 36rpx;
color: #333;
/* default text color */
}
/* Blue username text */
.blue-text {
/* or any blue you prefer */
margin-right: 5rpx;
}
.inner-box {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.list-cont {
width: 100%;
}
.block {
width: 100%;
}
.item {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #eee;
} }
.radio { .radio {
margin-right: 12px; padding-right: 20rpx;
transform: scale(0.9);
} }
.name { .title {
flex: 1; font-size: 32rpx;
font-size: 16px; line-height: 48rpx;
color: #333;
} }
.checked { .report-list {
color: #007AFF; /* 选中状态的颜色 */ width: calc(100% - 70rpx);
//background-color: pink;
}
.border-bottom {
margin-top: 6rpx;
} }
</style> </style>

View File

@@ -17,7 +17,7 @@
<view class="top-height"></view> <view class="top-height"></view>
<view class="week-plan-title"> <view class="week-plan-title">
<view>姓名<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view> <view v-if="userInfo.nickName">姓名<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view>
<view v-if="weekNum"> <view v-if="weekNum">
{{ yearMonth }} {{ yearMonth }}
<view v-if="isThisWeek" style=" display: inline-block;"> <view v-if="isThisWeek" style=" display: inline-block;">
@@ -54,10 +54,11 @@
</view> </view>
</view> </view>
</view> </view>
<view class='bottom-spliter bg-gray'></view>
</block> </block>
<!-- 底部加高度来避免tabbar遮挡 --> <!-- 底部加高度来避免tabbar遮挡 -->
<view class="bottom-height"></view> <!-- <view class="bottom-height bg-gray"></view> -->
</view> </view>
@@ -106,12 +107,12 @@ let getWorkEvent = (index) => {
const refreshPlanList = () => { const refreshPlanList = () => {
message.showLoading(); message.showLoading();
// 获取用户信息 // 获取用户信息
getUserInfo().then(res => { // getUserInfo().then(res => {
userInfo.value = res.user; // userInfo.value = res.user;
console.log(route.path, ":用户信息获取成功"); // console.log(route.path, ":用户信息获取成功");
}).catch(err => { // }).catch(err => {
console.warn(err, "用户信息获取失败") // console.warn(err, "用户信息获取失败")
}); // });
// 获取周计划列表 // 获取周计划列表
getWeeklyPlanList(queryParams.value).then(res => { getWeeklyPlanList(queryParams.value).then(res => {
const {rows} = res; const {rows} = res;
@@ -180,11 +181,11 @@ function handleCreate() {
handlePlanEdit({itemList, selectIndex: result.tapIndex}, true); handlePlanEdit({itemList, selectIndex: result.tapIndex}, true);
}).catch((err) => { }).catch((err) => {
console.warn(err, "已存在周计划") console.warn(err, "已存在周计划")
uni.showToast({ // uni.showToast({
icon: 'error', // icon: 'error',
title: '已有本周或下周计划', // title: '已有本周或下周计划',
duration: 2000 // duration: 2000
}) // })
}) })
// }else{ // 创建下周计划 // }else{ // 创建下周计划
// } // }
@@ -234,7 +235,7 @@ function handleEdit(index) {
// console.log(JSON.stringify(formData)) // console.log(JSON.stringify(formData))
console.log(route.path, formData, "前往修改页面"); console.log(route.path, formData, "前往修改页面");
const editFields = [OrdinalDate[index], WorkType[index], WorkEvent[index]]; const editFields = [OrdinalDate[index], WorkType[index], WorkEvent[index]];
let userName = userInfo.value.nickName || userInfo.value.userName; let userName = null; // userInfo.value.userName || userInfo.value.nickName;
handlePlanEdit({userName, formData, editFields}, false); handlePlanEdit({userName, formData, editFields}, false);
} }
@@ -268,9 +269,14 @@ function handleEdit(index) {
} }
.white-bg.white-bg-2 { .white-bg.white-bg-2 {
margin-bottom: 20rpx; /* margin-bottom: 20rpx; */
}
.bottom-spliter{
height: 20rpx;
}
.bg-gray{
background-color: #f0f0f0;
} }
.report-list .w-b-title .btn-edit { .report-list .w-b-title .btn-edit {
background-color: #5C96F7; background-color: #5C96F7;
} }

View File

@@ -4,7 +4,7 @@
<!-- 头部 --> <!-- 头部 -->
<customHeader ref="customHeaderRef" :title="title" :leftFlag="true" :rightFlag="true"> <customHeader ref="customHeaderRef" :title="title" :leftFlag="true" :rightFlag="true">
<template #right> <template #right>
<view class="head-right" @click="submitForm" v-if="userInfo.nickName || userInfo.userName"> <view class="head-right" @click="submitForm">
<uni-icons custom-prefix="iconfont" type="icon-phonebaocun" size="22" <uni-icons custom-prefix="iconfont" type="icon-phonebaocun" size="22"
color="#B7D2FF"></uni-icons> color="#B7D2FF"></uni-icons>
保存 保存
@@ -16,7 +16,7 @@
<!-- 正文内容 --> <!-- 正文内容 -->
<view class="week-plan-title"> <view class="week-plan-title">
<view>姓名<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view> <view v-if="userInfo.nickName">姓名<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view>
<view>{{ currentEditDate.yearMonth }} <strong>{{ currentEditDate.weekNum }}</strong> </view> <view>{{ currentEditDate.yearMonth }} <strong>{{ currentEditDate.weekNum }}</strong> </view>
</view> </view>
<uni-forms ref="formRef" :model="weekPlanFormData" :rules="rules" label-width="100px" label-position="top"> <uni-forms ref="formRef" :model="weekPlanFormData" :rules="rules" label-width="100px" label-position="top">