| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /*整改*/
- import request from '@util/gw_ajax_request'
- const state = {
- reformState: [
- {
- label: "未提交监督处",
- value: "0"
- },
- {
- label: "监督处审核",
- value: "1"
- },
- {
- label: "监督处驳回",
- value: "2"
- },
- {
- label: "监督处下发",
- value: "3"
- },
- {
- label: "市提交",
- value: "4"
- },
- {
- label: "业务处室驳回",
- value: "5"
- },
- {
- label: "业务处室提交",
- value: "6"
- },
- {
- label: "监督处归档",
- value: "7"
- }
- ],
- reformStateSjdc: [
- {
- label: "监督处审核",
- value: "1"
- },
- {
- label: "监督处驳回",
- value: "2"
- },
- {
- label: "监督处下发",
- value: "3"
- },
- {
- label: "市提交",
- value: "4"
- },
- {
- label: "业务处室驳回",
- value: "5"
- },
- {
- label: "业务处室提交",
- value: "6"
- },
- {
- label: "监督处归档",
- value: "7"
- }
- ],
- reformStateSjXj: [
- {
- label: "监督处下发",
- value: "3"
- },
- {
- label: "市提交",
- value: "4"
- },
- {
- label: "业务处室驳回",
- value: "5"
- },
- {
- label: "业务处室提交",
- value: "6"
- },
- {
- label: "监督处归档",
- value: "7"
- }
- ]
- };
- const mutations = {
- };
- const actions = {};
- const getters = {};
- // 不要忘记把state, mutations等暴露出去。
- export default {
- state,
- mutations,
- actions,
- getters
- }
|