Merge branch 'dev_vite' of ssh://18.167.251.121:10002/aidlab/aida_front into dev_vite

This commit is contained in:
X1627315083
2025-12-19 16:03:16 +08:00
5 changed files with 14 additions and 13 deletions

View File

@@ -1362,7 +1362,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
} }
.admin_page .admin_state_item > span { .admin_page .admin_state_item > span {
white-space: nowrap; white-space: nowrap;
width: 13rem; min-width: 13rem;
} }
.admin_page .admin_state_item > span > span { .admin_page .admin_state_item > span > span {
color: red; color: red;

View File

@@ -1494,7 +1494,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
align-items: center; align-items: center;
>span{ >span{
white-space: nowrap; white-space: nowrap;
width: 13rem; min-width: 13rem;
>span{ >span{
color: red; color: red;
} }

View File

@@ -1671,7 +1671,7 @@ export default defineComponent({
.ant-upload-select-picture-card { .ant-upload-select-picture-card {
width: 100%; width: 100%;
height: 100%; height: 100%;
border: 1px solid #000; border: 0.1rem solid #000;
background: #fff; background: #fff;
} }
} }

View File

@@ -65,7 +65,7 @@ defineExpose({
<style lang="less" scoped> <style lang="less" scoped>
.promptInput { .promptInput {
--promptInputBorderRadius: 10px; --promptInputBorderRadius: 10px;
--promptInputBorder: 2px solid #dcdfe6; --promptInputBorder: 1px solid #000;
--promptInputPadding: 1.5rem; --promptInputPadding: 1.5rem;
width: 100%; width: 100%;
@@ -86,7 +86,7 @@ defineExpose({
.sender-container { .sender-container {
position: relative; position: relative;
border-radius: 10px; border-radius: 10px;
border: 2px solid #dcdfe6; border: 1px solid #000;
padding: 1.5rem; padding: 1.5rem;
font-size: 1.8rem; font-size: 1.8rem;
.sender-wrapper { .sender-wrapper {
@@ -100,7 +100,7 @@ defineExpose({
.textarea-container { .textarea-container {
position: relative; position: relative;
border-radius: 10px; border-radius: 10px;
border: 2px solid #dcdfe6; border: 1px solid #000;
padding: 1.5rem; padding: 1.5rem;
height: auto; height: auto;
font-size: 1.8rem; font-size: 1.8rem;

View File

@@ -1101,13 +1101,13 @@ export default defineComponent({
const showPromptAssist = ref(false) const showPromptAssist = ref(false)
const handleClickAssistBtn = () => { const handleClickAssistBtn = () => {
// const { httpType } = store.state.Workspace.probjects // const { httpType } = store.state.Workspace.probjects
// const isSingleDesign = httpType === 'SINGLE_DESIGN' // const isSingleDesign = httpType === 'SINGLE_DESIGN'
// if (props.isDesignPage && !isSingleDesign) { // if (props.isDesignPage && !isSingleDesign) {
// const promptText = t('ProductImg.Series') // const promptText = t('ProductImg.Series')
// productImgData.searchName[props.productimgMenu.value] = promptText // productImgData.searchName[props.productimgMenu.value] = promptText
// return // return
// } // }
showPromptAssist.value = true showPromptAssist.value = true
} }
@@ -1536,6 +1536,7 @@ export default defineComponent({
height: 17.8rem; height: 17.8rem;
border-width: 1px; border-width: 1px;
background: #fff; background: #fff;
border: 0.1rem solid #000;
} }
} }
} }