入表功调整
Showing
1 changed file
with
10 additions
and
7 deletions
| ... | @@ -54,7 +54,7 @@ const costForm = ref({ | ... | @@ -54,7 +54,7 @@ const costForm = ref({ |
| 54 | placeholder: "请选择", | 54 | placeholder: "请选择", |
| 55 | clearable: true, | 55 | clearable: true, |
| 56 | required: true, | 56 | required: true, |
| 57 | visible: false, | 57 | visible: true, |
| 58 | popperClass: 'date-year-popper', | 58 | popperClass: 'date-year-popper', |
| 59 | disabledDate: (date) => { | 59 | disabledDate: (date) => { |
| 60 | const curr = new Date(); | 60 | const curr = new Date(); |
| ... | @@ -69,7 +69,7 @@ const costForm = ref({ | ... | @@ -69,7 +69,7 @@ const costForm = ref({ |
| 69 | placeholder: "请选择", | 69 | placeholder: "请选择", |
| 70 | clearable: true, | 70 | clearable: true, |
| 71 | required: true, | 71 | required: true, |
| 72 | visible: false, | 72 | visible: true, |
| 73 | style: { width: 'calc(33.33% - 70px)', 'margin-right': '8px' }, | 73 | style: { width: 'calc(33.33% - 70px)', 'margin-right': '8px' }, |
| 74 | popperClass: 'date-month-popper', | 74 | popperClass: 'date-month-popper', |
| 75 | disabledDate: (date) => { | 75 | disabledDate: (date) => { |
| ... | @@ -1265,13 +1265,12 @@ onUpdated(() => { | ... | @@ -1265,13 +1265,12 @@ onUpdated(() => { |
| 1265 | 本工具提供的入表评估结果仅为初步测算参考,基于用户输入参数生成,不代表最终入表金额。实际入表需遵循《企业数据资源相关会计处理暂行规定》及会计准则要求,经专业审计机构确认后方可生效。 | 1265 | 本工具提供的入表评估结果仅为初步测算参考,基于用户输入参数生成,不代表最终入表金额。实际入表需遵循《企业数据资源相关会计处理暂行规定》及会计准则要求,经专业审计机构确认后方可生效。 |
| 1266 | </div> | 1266 | </div> |
| 1267 | </div> | 1267 | </div> |
| 1268 | <ContentWrap :title="step == 0 ? '设置成本项' : step == 1 ? '填写成本明细' : '文件预览'" | 1268 | <ContentWrap :title="step == 0 ? '设置成本项' : '文件预览'" description="" :expandSwicth="false" |
| 1269 | description="" | 1269 | :style="step == 1 ? { 'margin-top': '16px' } : {}"> |
| 1270 | :expandSwicth="false" :style="step == 1 ? { 'margin-top': '16px' } : {}"> | ||
| 1271 | <div class="table_tool_wrap"> | 1270 | <div class="table_tool_wrap"> |
| 1272 | <Form ref="costFormRef" :itemList="costForm.items" formId="dam-base-form" :rules="costForm.rules" col="col3" | 1271 | <Form ref="costFormRef" :itemList="costForm.items" formId="dam-base-form" :rules="costForm.rules" col="col3" |
| 1273 | @btnClick="btnClick" @selectChange="selectChange" /> | 1272 | @btnClick="btnClick" @selectChange="selectChange" /> |
| 1274 | <div class="tool_btn" v-if="step == 2"> | 1273 | <div class="tool_btn" v-if="step == 1"> |
| 1275 | <el-button type="primary" @click="exportClick">下载文件</el-button> | 1274 | <el-button type="primary" @click="exportClick">下载文件</el-button> |
| 1276 | <!-- <el-button type="primary" plain @click="senMessage">入表咨询</el-button> --> | 1275 | <!-- <el-button type="primary" plain @click="senMessage">入表咨询</el-button> --> |
| 1277 | </div> | 1276 | </div> |
| ... | @@ -1346,6 +1345,10 @@ onUpdated(() => { | ... | @@ -1346,6 +1345,10 @@ onUpdated(() => { |
| 1346 | </div> | 1345 | </div> |
| 1347 | </div> | 1346 | </div> |
| 1348 | </ContentWrap> | 1347 | </ContentWrap> |
| 1348 | <ContentWrap title="入表类型" description="" :expandSwicth="false" v-show="step == 0"> | ||
| 1349 | <Form ref="entryFormRef" :itemList="entryForm.items" formId="dam-base-form" :rules="entryForm.rules" | ||
| 1350 | col="col3" @selectChange="selectChange" /> | ||
| 1351 | </ContentWrap> | ||
| 1349 | </div> | 1352 | </div> |
| 1350 | </div> | 1353 | </div> |
| 1351 | <div class="tool_btns"> | 1354 | <div class="tool_btns"> |
| ... | @@ -1658,7 +1661,7 @@ onUpdated(() => { | ... | @@ -1658,7 +1661,7 @@ onUpdated(() => { |
| 1658 | background: #FFFBF2; | 1661 | background: #FFFBF2; |
| 1659 | border: 1px solid rgba(255, 241, 212, 1); | 1662 | border: 1px solid rgba(255, 241, 212, 1); |
| 1660 | border-radius: 4px; | 1663 | border-radius: 4px; |
| 1661 | margin: 5px 0px 8px; | 1664 | margin: 16px 0px 8px; |
| 1662 | padding: 2px 0px; | 1665 | padding: 2px 0px; |
| 1663 | 1666 | ||
| 1664 | .tip-icon { | 1667 | .tip-icon { | ... | ... |
-
Please register or sign in to post a comment