123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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,
- },
- ]
|