报价系统修改了材料部分的名称,改为部件部分
This commit is contained in:
parent
2728d51fce
commit
8e1b5f1972
|
|
@ -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
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
|
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
|
||||||
</vxe-form>
|
</vxe-form>
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
<a-collapse-panel key="2" header="材料部分">
|
<a-collapse-panel key="2" header="部件部分">
|
||||||
|
|
||||||
<div slot="extra">
|
<div slot="extra">
|
||||||
(合计)板材数量:{{ parseFloat(formOptions.data.fittings_total_quantity || 0).toFixed(0) }}
|
(合计)板材数量:{{ parseFloat(formOptions.data.fittings_total_quantity || 0).toFixed(0) }}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
|
:title-align="formOptions.titleAlign" :rules="formOptions.rules" :items="formOptions.items" titleColon>
|
||||||
</vxe-form>
|
</vxe-form>
|
||||||
</a-collapse-panel>
|
</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="{
|
<vxe-table border show-overflow keep-source ref="fittings_xTable" :data="fittings_detailsData" :keyboard-config="{
|
||||||
isArrow: true, isDel: true,
|
isArrow: true, isDel: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue