This commit is contained in:
xielue 2023-07-31 21:40:42 +08:00
commit 09573e3171
3 changed files with 24 additions and 2 deletions

22
.gitlab-ci.yaml Normal file
View File

@ -0,0 +1,22 @@
image: node:latest
stages:
- build
- package
build:
stage: build
script:
- npm install
- npm run build
artifacts:
paths:
- dist/
package:
stage: package
script:
- tar -czvf dist.tar.gz dist/
artifacts:
paths:
- dist.tar.gz

View File

@ -37,7 +37,7 @@
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
</vxe-form>
</a-collapse-panel>
<a-collapse-panel key="2" header="材料部分">
<a-collapse-panel key="2" header="部件部分">
<div slot="extra">
合计板材数量{{ parseFloat(formOptions.data.fittings_total_quantity || 0).toFixed(0) }}

View File

@ -19,7 +19,7 @@
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
</vxe-form>
</a-collapse-panel>
<a-collapse-panel key="2" header="材料部分">
<a-collapse-panel key="2" header="部件部分">
<vxe-table border show-overflow keep-source ref="fittings_xTable" :data="fittings_detailsData" :keyboard-config="{
isArrow: true, isDel: true,