mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-18 15:26:48 +08:00
讲师费用Fee , log 日志 , 监听日志 当弹框弹起 获取数据分析 , 点击图标确认
This commit is contained in:
@@ -173,6 +173,7 @@ const expenseList = ref([])
|
|||||||
const searchList = ref([])
|
const searchList = ref([])
|
||||||
const timesList = ref([])
|
const timesList = ref([])
|
||||||
const clickItem = (item,i) => {
|
const clickItem = (item,i) => {
|
||||||
|
console.log("clickItem gx item",item,i);
|
||||||
indexList.value = i
|
indexList.value = i
|
||||||
resetData(i,false)
|
resetData(i,false)
|
||||||
}
|
}
|
||||||
@@ -197,6 +198,7 @@ watch(()=>props.visible,(val)=>{
|
|||||||
if(res.data.code === 200){
|
if(res.data.code === 200){
|
||||||
forData.value = res.data.data;
|
forData.value = res.data.data;
|
||||||
console.log("getListByAffiliation gx forData.value ",forData.value)
|
console.log("getListByAffiliation gx forData.value ",forData.value)
|
||||||
|
console.log("getListByAffiliation gx forData.value value",forData.value)
|
||||||
forData.value.forEach((item,i) => {
|
forData.value.forEach((item,i) => {
|
||||||
searchConditions.value.push({ nameUserNo: '', dateValue: [] });
|
searchConditions.value.push({ nameUserNo: '', dateValue: [] });
|
||||||
expenseList.value.push(forData.value[i]?.expenseList || [])
|
expenseList.value.push(forData.value[i]?.expenseList || [])
|
||||||
@@ -466,6 +468,7 @@ const columns = [
|
|||||||
const closeDrawer = () => emit("update:visible", false);
|
const closeDrawer = () => emit("update:visible", false);
|
||||||
const activeList = ref([])
|
const activeList = ref([])
|
||||||
const setList = (item) => {
|
const setList = (item) => {
|
||||||
|
console.log("setList gx item",item)
|
||||||
const index = activeList.value.findIndex(listItem => listItem === item);
|
const index = activeList.value.findIndex(listItem => listItem === item);
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
activeList.value.splice(index, 1);
|
activeList.value.splice(index, 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user