Status.js 2.55 KB
Newer Older
liuxin committed
1 2 3 4 5 6 7 8 9
const Status = {
	nameSpaced: true,
	state: {
		role: '0',
		authMenus: [],
		authButtons: [],
		mode: 'normal',
		highlights: [],
		highlightChanges: [],
10 11 12 13
		checkRuleData:[
			"1\t此证不允许保兑\t{dedgrp.rec.bdflg}==Y\t2022-02-21\tzl",
			"2\t单据必须自货物装运日后15日内提交,但不能晚于信用证有效期\t{doc.crtdate} - {didgrp.rec.shpdat} <=15 && {doc.crtdate} <= {didgrp.rec.expdate}\t2022-02-20\tmbf"
		],
liuxin committed
14 15 16 17 18 19
		remark: '', //复核意见
		homeStatus: { // 任务列表页状态
			listConfig: undefined,
			params: undefined,
			searchParams: undefined,
			activeName: undefined
潘际乾 committed
20 21 22 23 24 25 26
		},
		loading: {
			// 提交
			submit: false,
			// 校验
			check: false,
			// 暂存
27 28 29
			stash: false,
			freshReview: false,
			freshPending: false,
潘际乾 committed
30
		},
liushikai committed
31 32 33 34 35 36 37 38
		taskListTabVal: '',
		taskList: {
			sptsel: 0,
			trnrel: 0,
			bopsel: 0,
			sptbrk: 0,
			diasel: 0,
		}
liuxin committed
39 40 41 42 43 44 45 46
	},
	mutations: {
		setMode(state, value) {
			state.mode = value
		},
		setHighlights(state, value) {
			state.highlights = value
		},
47 48 49
		setCheckRuleData(state, value) {
			state.checkRuleData = value
		},
liuxin committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
		setHighlightChanges (state, value) {
			state.highlightChanges = value
		},
		setRole(state, value) {
			state.role = value
		},
		setAuthMenus(state, value) {
			state.authMenus = value
		},
		setAuthButtons(state, value) {
			state.authButtons = value
		},
		setRemark(state, value) {
			state.remark = value
		},
		updateRemark(state, id) {
			state.remark = state.remark + `\n ${id}:`
		},
		setHomeListConfig(state, value) {
			console.log(value)
			console.log('list config save')
			state.homeStatus.listConfig = value
		},
		setHomeActiveName(state, value) {
			state.homeStatus.activeName = value
		},
		setHomeParams(state, value) {
			state.homeStatus.params = value
		},
		setHomeSearchParams(state, value) {
			state.homeStatus.searchParams = value
		},
		resetHomeStatus(state) {
			state.homeStatus = { // 任务列表页状态
				listConfig: undefined,
				params: undefined,
				searchParams: undefined,
				activeName: undefined
			}
潘际乾 committed
89 90 91 92 93 94 95
		},
		setLoadingSubmit(state, value) {
			state.loading.submit = value;
		},
		setLoadingCheck(state, value) {
			state.loading.check = value;
		},
96 97 98 99 100 101
		setLoadingFreshReview(state, value) {
			state.loading.freshReview = value;
		},
		setLoadingFreshPending(state, value) {
			state.loading.freshPending = value;
		},
潘际乾 committed
102 103
		setLoadingStash(state, value) {
			state.loading.stash = value;
潘际乾 committed
104 105 106
		},
		setTaskListTabVal(state, value) {
			state.taskListTabVal = value;
liushikai committed
107 108 109
		},
		setTaskList(state, options) {
			state.taskList[options.key] = options.val;
110
		},
liuxin committed
111 112 113
	}
}
export default Status