Xiao_123 6 місяців тому
батько
коміт
c54dbc9021

+ 0 - 2
components.d.ts

@@ -60,14 +60,12 @@ declare module 'vue' {
     RouterLink: typeof import('vue-router')['RouterLink']
     RouterView: typeof import('vue-router')['RouterView']
     SimilarPositions: typeof import('./src/components/Position/similarPositions.vue')['default']
-    Src: typeof import('./src/components/Verifition/src/index.vue')['default']
     SvgIcon: typeof import('./src/components/SvgIcon/index.vue')['default']
     TextArea: typeof import('./src/components/FormUI/textArea/index.vue')['default']
     TextInput: typeof import('./src/components/FormUI/TextInput/index.vue')['default']
     TipDialog: typeof import('./src/components/CtDialog/tipDialog.vue')['default']
     VerificationCode: typeof import('./src/components/VerificationCode/index.vue')['default']
     Verifition: typeof import('./src/components/Verifition/index.vue')['default']
-    Verify: typeof import('./src/components/Verifition/src/Verify.vue')['default']
     VerifyPoints: typeof import('./src/components/Verifition/Verify/VerifyPoints.vue')['default']
     VerifySlide: typeof import('./src/components/Verifition/Verify/VerifySlide.vue')['default']
     WangEditor: typeof import('./src/components/FormUI/wangEditor/index.vue')['default']

+ 1 - 1
src/components/FormUI/cascade/index.vue

@@ -44,7 +44,7 @@ const prop = {
   size: item.size || 'large', // 'large' | 'default' | 'small'
   multiple: item.multiple || false,
   emitPath: item.emitPath || false, // 在选中节点改变时,是否返回由该节点所在的各级菜单的值所组成的数组,若设置 false,则只返回该节点的值
-  checkStrictly: item.checkStrictly || false, // 是否严格的遵守父子节点不互相关联
+  // checkStrictly: item.checkStrictly || false, // 是否严格的遵守父子节点不互相关联
 }
 
 const value = ref()

+ 1 - 2
src/components/Position/item.vue

@@ -5,7 +5,7 @@
         <div class="job-info" @click="handlePosition(item)" @mouseenter="item.active = true" @mouseleave="item.active = false">
           <div class="sub-li-top">
             <div class="sub-li-info">
-              <p :class="['name', {'default-active': item.active }]">{{ item.name }}</p>
+              <p :class="['name', {'default-active': item.active }]" :style="{'max-width': !item.payFrom && !item.payTo ? '100%' : '170px'}">{{ item.name }}</p>
               <svg-icon v-if="tab === 3 && item.hire" name="pin" size="30"></svg-icon>
             </div>
             <p v-if="!item.payFrom && !item.payTo" class="salary">面议</p>
@@ -161,7 +161,6 @@ const handleEnterprise = (item) => {
 }
 .sub-li-info .name {
   position: relative;
-  max-width: 140px;
   margin-right: 8px;
   overflow: hidden;
   text-overflow: ellipsis;

+ 1 - 1
src/views/mall/purchasePackage/components/packageList.vue

@@ -48,7 +48,7 @@
     </div>
   </div>
   
-  <CtDialog :visible="open" :widthType="1" :footer="false" titleClass="text-h6" title="开通会员" @close="open = false">
+  <CtDialog :visible="open" :widthType="3" :footer="false" titleClass="text-h6" title="开通会员" @close="open = false">
     <m-pay
       :payPrice="payPrice"
       :qrCode="qrCode"