123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import mutations from "./mutations.js";
- import actions from "./actions.js";
- import getters from "./getters.js";
- export default {
- namespaced: true,
- state() {
- return {
- benchMap: {},
- benchList: [],
- filterBenchList: [],
- benchImgList:[],
- statusOptions:[{
- value: 'Status',
- label: ''
- }],
- projectOptions:[{
- value: 'Project',
- label: ''
- }],
- carlineOptions:[{
- value: 'Carline',
- label: ''
- }],
- variantOptions:[{
- value: 'Variant',
- label: ''
- }],
- clusterOptions:[{
- value: 'Cluster',
- label: ''
- }],
- marketOptions:[{
- value: 'Market',
- label: ''
- }],
- resultOptions: [{
- value: 'Result',
- label: ''
- }],
- TBTypeOptions: [{
- value: 'TBType',
- label: ''
- }],
- isOpenSquare: false,
- isOpen3d: false
- };
- },
- mutations,
- actions,
- getters,
- };
|