1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <el-form-item class="form-item-min" label="指纹:" prop="searchValue" label-width="120px">
- <div class="fingerprint_no" v-if="Quantity==0">
- <p>暂未录入指纹</p>
- <p>(请在小程序端操作)</p>
- </div>
- <div class="fingerprint_yes" v-if="Quantity!=0">
- <div class="fingerprint_yes_img">
- <img src="@/assets/ZDimages/icon_zw_bk.png">
- <img src="@/assets/ZDimages/icon_wd_zw.png">
- </div>
- <p>已录入{{Quantity}}个指纹</p>
- </div>
- </el-form-item>
- </template>
- <script>
- export default {
- name: 'fingerprintSubPagePublic',
- props: {
- Quantity:{},
- },
- }
- </script>
- <style scoped lang="scss">
- .fingerprint_no{
- >p:nth-of-type(1){
- color: #666666;
- }
- >p:nth-of-type(2){
- color: #F56C6C;
- }
- }
- .fingerprint_yes{
- .fingerprint_yes_img{
- width: 122px;
- height: 142px;
- position: relative;
- >img:nth-of-type(1){
- width: 122px;
- height: 142px;
- position: absolute;
- }
- >img:nth-of-type(2){
- width: 65px;
- height: 88px;
- position: absolute;
- left: 29px;
- top: 29px;
- }
- }
- >p{
- color: #666;
- text-align: center;
- }
- }
- .form-item-min{
- margin-top:40px;
- }
- </style>
|