[update] 修改标准选择组件,删除文档库,修改个人中心和企标中标准号跳转

This commit is contained in:
lideqin
2023-09-14 15:17:09 +08:00
parent a1e4a12ff6
commit 05a0c929d6
20 changed files with 52 additions and 2178 deletions
@@ -8,7 +8,7 @@
{{this.$t('standardSelect.standardSelection')}}
</a-button>
</div>
<standard-selection-modal ref="standardSelectionModal" v-bind="$attrs" @input="modalInput" @change="modalChange"></standard-selection-modal>
<standard-selection-modal ref="standardSelectionModal" v-bind="$attrs" :query="query" @input="modalInput" @change="modalChange"></standard-selection-modal>
</div>
</template>
@@ -19,7 +19,7 @@ export default {
name: 'StandardSelection',
components: { StandardSelectionModal },
props: {
type: {
query: {
type: Object,
default: () => {
return {}
@@ -28,12 +28,6 @@ export default {
value: {
type: String,
default: ''
},
standard: {
type: String,
default: () => {
return {}
}
}
},
computed: {
@@ -55,6 +49,7 @@ export default {
},
// 输入框输入监听
indexClick (event) {
console.log(event.target.value)
this.$emit('input', event.target.value)
},
modalInput (value) {