export const test = [ { text: 'ccc', value: 1, }, { text: 'ddd', value: 2, }, ] /** * 01:入仓验收;02:出仓检验;03:3 月末普检;04:9 月末普检;05:入仓初检;06:月度检查;07:3 月末库内普查;08:9 月末库内普查;09:定检 */ export const OPT1 = [ { text: '入仓验收', value: '01', }, { text: '出仓检验', value: '02', }, { text: '3 月末普检', value: '03', }, { text: '9 月末普检', value: '04', }, { text: '入仓初检', value: '05', }, { text: '月度检查', value: '06', }, { text: '3 月末库内普查', value: '07', }, { text: '9 月末库内普查', value: '08', }, { text: '定检', value: '09', }, ] export const OPT2 = [ { text: '否', value: 0, }, { text: '是', value: 1, }, ] export const JYYJ = [ { value: '1', text: '国标'}, { value: '0', text: '其他'}, ] export const OPT3 = [ { text: '不合格', value: 0, }, { text: '合格', value: 1, } ] export const OPT4 = [ { text: '符合', value: 1, }, { text: '不符合', value: 0, } ] export const OPT5 = [ { text: '省级', value: 1, }, { text: '市级', value: 2, }, { text: '县级', value: 3, }, ]