index.vue 2.6 KB
Newer Older
wangdanlei's avatar
wangdanlei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
<template>
  <div><p v-for="el in tipsList" :key="el.title" :style="{'color': el.color}">{{ el.title }}</p></div>
</template>

<script>
export default {
  data() {
    return {
      tipsList: Object.freeze([{ title: 'SN号填写规则:', color: 'rgb(89,155,204)' },
        { title: '1、自动生成编号:填写“-x”,按数量自动生成', color: 'rgb(89,155,204)' },
        { title: '2、单个零件编号:直接填写,首尾不加其他符号;', color: 'rgb(89,155,204)' },
        { title: '正确写法:2011002', color: '#000' },
        { title: '3、多个不连续的编号:中间用单个逗号“,”或分号“;”间隔,半角全角均可,首尾不要加其他符号;', color: 'rgb(89,155,204)' },
        { title: '正确写法:2011001,2011003,2011007', color: '#000' },
        { title: '4、多个连续编号:只写首尾两个编号,并在两个编号之间加单个波浪号“~”分隔,半角全角均可,起始编号和结束编号必须有相同的字符数', color: 'rgb(89,155,204)' },
        { title: '正确写法:2011001~2011010', color: '#000' },
        { title: '5、连续多个编号有相同的前缀字符符号:在起始编号前面增加一个成对左右方括号“[]”,并在方括号中间加前缀字符符号,前缀字符符号可以多个,起始编号和结束编号必须有相同的字符数;', color: 'rgb(89,155,204)' },
        { title: '正确写法:[QC]2011001~2011005或[QC2011]001~005或[QC201100]1~5', color: '#000' },
        { title: '6、连续多个编号有相同的后缀字符符号:在结束编号后面增加一个成对左右方括号“[]”,并在方括号中间加字符符号,后缀字符符号可以为多个', color: 'rgb(89,155,204)' },
        { title: '正确写法:2011001~2011005[L]', color: '#000' },
        { title: '7、连续多个编号同时有相同的前缀和后缀字符:同时应用规则4和规则5', color: 'rgb(89,155,204)' },
        { title: '正确写法:[QC]2011001~2011005[L]或[QC2011]001~005[L]或[QC201100]1~5[L]', color: '#000' },
        { title: '8、不连续编号和连续编号同时出现:同时适用规则1~6,不连续编号和连续编号之间用单个逗号“,”或分号“;”间隔,半角全角均可,整个编号字符串首尾不能加实际产品编号中没有其他字符,如空格、No:、句号等。', color: 'rgb(89,155,204)' },
        { title: '正确写法:a.2011001,2011003,2011006~2011008', color: '#000' },
        { title: 'b.QC2011001,[QC2011]006~018,QC2011015,[QC20110]10~20', color: '#000' }
      ])

    }
  }
}
</script>

<style>

</style>