任务列表页面
This commit is contained in:
@@ -2,7 +2,7 @@ const setCookie = (name,value) => {
|
||||
var Days = 100;
|
||||
var exp = new Date();
|
||||
exp.setTime(exp.getTime() + Days*24*60*60*1000);
|
||||
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
|
||||
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString()+ ";Path=/";
|
||||
}
|
||||
|
||||
const getCookie = (name) => {
|
||||
|
||||
@@ -111,14 +111,15 @@ function createDriver(){
|
||||
{ element: '.Guide_1_25_1', popover: { title: '', description: i18n.guide47 ,side: "right",align: 'end' } },
|
||||
{ element: '.Guide_1_26', popover: { title: '', description: i18n.guide48 } },
|
||||
{ element: '.Guide_1_31', popover: { title: '', description: i18n.guide49 } },
|
||||
{ element: '.Guide_1_99', popover: { title: 'Begin Your Design', description: i18n.guide50 } },
|
||||
{ element: '.Guide_1_32', popover: { title: '', description: i18n.guide50 } },
|
||||
{ element: '.Guide_1_99', popover: { title: 'Begin Your Design', description: i18n.guide51 } },
|
||||
],
|
||||
// showProgress: true,//控制总页数和当前页数是否显示
|
||||
allowClose:false,
|
||||
showButtons:false,
|
||||
stagePadding:10,//切口到元素的距离
|
||||
stageRadius:5,//切口圆弧度
|
||||
allowKeyboardControl:false,//控制是否可以键盘控制下一步
|
||||
allowKeyboardControl:true,//控制是否可以键盘控制下一步
|
||||
disableActiveInteraction:false,//是否禁用显示元素的交互
|
||||
overlayOpacity:.4,
|
||||
overlay: true,
|
||||
@@ -136,6 +137,7 @@ function createDriver(){
|
||||
driver : true,
|
||||
stepsLenth:stepsLenth,
|
||||
}
|
||||
console.log(111);
|
||||
store?.commit("setGuide", data);
|
||||
if(options.state.activeIndex == 0 ||
|
||||
options.state.activeIndex == 39
|
||||
|
||||
@@ -210,6 +210,9 @@ export const Https = {
|
||||
//查询某个时间内design点击次数
|
||||
getDesignStatistic:`/api/inquiry/getDesignStatistic`,//拒绝审批
|
||||
|
||||
getTasksList:`/api/tasks/getList`,//获取档期那任务列表
|
||||
getDesignStatistic:`/api/inquiry/getDesignStatistic`,//拒绝审批
|
||||
|
||||
},
|
||||
|
||||
axiosGet(url,config) {
|
||||
|
||||
Reference in New Issue
Block a user