Browse Source

修改页面显示,调整登陆页面

dev
caoyizhong 2 years ago
parent
commit
58c0955f92
  1. 5
      src/components/layouts/UserLayout.vue
  2. 2
      src/components/page/GlobalHeader.vue
  3. 8
      src/views/activiti/form/ProcessMaterialBorrowingForm.vue
  4. 6
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  5. 10
      src/views/activiti/form/ProcessMaterialsAllotForm.vue
  6. 12
      src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
  7. 8
      src/views/activiti/form/ProcessMaterialsReturnForm.vue
  8. 6
      src/views/activiti/form/ProcessSmaterialsScrapForm.vue
  9. 2
      src/views/activiti/form/ProcessSpecialMaterialsForm.vue
  10. 4
      src/views/activiti/form/ProcessUdgetPlanForm.vue

5
src/components/layouts/UserLayout.vue

@ -65,8 +65,9 @@
.container { .container {
width: 100%; width: 100%;
min-height: 100%; min-height: 100%;
background: #f0f2f5 url(~@assets/background1.jpg) no-repeat 50%; background: #f0f2f5 url(~@assets/background1.jpg) no-repeat;
background-size: 100%; background-size: 100% 100% ;
background-attachment: fixed;
padding: 110px 0 144px; padding: 110px 0 144px;
position: relative; position: relative;

2
src/components/page/GlobalHeader.vue

@ -18,7 +18,7 @@
@click="toggle"/> @click="toggle"/>
<span v-if="device === 'desktop'">欢迎进入 昊易信息管理平台</span> <span v-if="device === 'desktop'">欢迎进入 昊易信息管理平台</span>
<span v-else>Jeecg-Boot</span> <span v-else>欢迎进入 昊易信息管理平台</span>
<user-menu :theme="theme"/> <user-menu :theme="theme"/>
</div> </div>

8
src/views/activiti/form/ProcessMaterialBorrowingForm.vue

@ -172,7 +172,7 @@
key: 'materialUnit', key: 'materialUnit',
type: FormTypes.select, type: FormTypes.select,
dictCode:"", dictCode:"",
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -180,7 +180,7 @@
title: '借用数量', title: '借用数量',
key: 'borrowedQuantity', key: 'borrowedQuantity',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -196,7 +196,7 @@
title: '单价', title: '单价',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -204,7 +204,7 @@
title: '金额', title: '金额',
key: 'materialAmount', key: 'materialAmount',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },

6
src/views/activiti/form/ProcessMaterialWarehousingForm.vue

@ -252,7 +252,7 @@
type: FormTypes.select, type: FormTypes.select,
disabled: true, disabled: true,
dictCode: '', dictCode: '',
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -260,7 +260,7 @@
title: '单价(元)', title: '单价(元)',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -268,7 +268,7 @@
title: '数量', title: '数量',
key: 'materialQuantity', key: 'materialQuantity',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },

10
src/views/activiti/form/ProcessMaterialsAllotForm.vue

@ -220,7 +220,7 @@
key: 'materialUnit', key: 'materialUnit',
type: FormTypes.input, type: FormTypes.input,
dictCode: '', dictCode: '',
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''
@ -229,7 +229,7 @@
title: '调拨数量', title: '调拨数量',
key: 'allotNumber', key: 'allotNumber',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''
@ -256,7 +256,7 @@
title: '单价(元)', title: '单价(元)',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''
@ -265,7 +265,7 @@
title: '金额(元)', title: '金额(元)',
key: 'materialAmount', key: 'materialAmount',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''
@ -292,7 +292,7 @@
title: '保质期', title: '保质期',
key: 'expirationDate', key: 'expirationDate',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''

12
src/views/activiti/form/ProcessMaterialsDeliveryForm.vue

@ -249,7 +249,7 @@
key: 'materialUnit', key: 'materialUnit',
type: FormTypes.input, type: FormTypes.input,
dictCode: '', dictCode: '',
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -265,7 +265,7 @@
title: '请发数', title: '请发数',
key: 'pleaseSendNumber', key: 'pleaseSendNumber',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
// slotName: 'qing' // slotName: 'qing'
@ -274,7 +274,7 @@
title: '实发数', title: '实发数',
key: 'actualSendNumber', key: 'actualSendNumber',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '', defaultValue: '',
disabled: true disabled: true
@ -292,7 +292,7 @@
title: '单价(元)', title: '单价(元)',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '', defaultValue: '',
disabled: true disabled: true
@ -301,7 +301,7 @@
title: '金额(元)', title: '金额(元)',
key: 'materialAmount', key: 'materialAmount',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '', defaultValue: '',
disabled: true disabled: true
@ -319,7 +319,7 @@
title: '保质期', title: '保质期',
key: 'expirationDate', key: 'expirationDate',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
disabled: this.disabled, disabled: this.disabled,
defaultValue: '' defaultValue: ''

8
src/views/activiti/form/ProcessMaterialsReturnForm.vue

@ -173,7 +173,7 @@
key: 'materialUnit', key: 'materialUnit',
type: FormTypes.select, type: FormTypes.select,
dictCode:"", dictCode:"",
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -181,7 +181,7 @@
title: '归还数量', title: '归还数量',
key: 'returnNumber', key: 'returnNumber',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -198,7 +198,7 @@
title: '单价', title: '单价',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },
@ -206,7 +206,7 @@
title: '金额', title: '金额',
key: 'materialAmount', key: 'materialAmount',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },

6
src/views/activiti/form/ProcessSmaterialsScrapForm.vue

@ -208,7 +208,7 @@
key: 'scrapNumber', key: 'scrapNumber',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
disabled: false, disabled: false,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -217,7 +217,7 @@
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
disabled: false, disabled: false,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -226,7 +226,7 @@
key: 'materialAmount', key: 'materialAmount',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
disabled: true, disabled: true,
width: '200px', width: '130px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },

2
src/views/activiti/form/ProcessSpecialMaterialsForm.vue

@ -199,7 +199,7 @@
title: '单价', title: '单价',
key: 'materialPrice', key: 'materialPrice',
type: FormTypes.inputNumber, type: FormTypes.inputNumber,
width:"200px", width:"130px",
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue:'', defaultValue:'',
}, },

4
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -427,7 +427,7 @@
type: FormTypes.input, type: FormTypes.input,
disabled: this.disabled, disabled: this.disabled,
// dictCode: '', // dictCode: '',
width: '200px', width: '180px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },
@ -438,7 +438,7 @@
disabled: this.disabled, disabled: this.disabled,
// type: FormTypes.select, // type: FormTypes.select,
// dictCode: '', // dictCode: '',
width: '200px', width: '120px',
placeholder: '请输入${title}', placeholder: '请输入${title}',
defaultValue: '' defaultValue: ''
}, },

Loading…
Cancel
Save