| | |
| | | </TabPane> |
| | | <TabPane label="债券发行上市" name="tab3"> |
| | | </TabPane> |
| | | <TabPane label="已到期债券" name="tab4"> |
| | | <TabPane label="到期兑付日" name="tab4"> |
| | | </TabPane> |
| | | </Tabs> |
| | | <div v-if="titName === 'tab1'"> |
| | |
| | | align: "left", |
| | | }); |
| | | columns.push({ |
| | | title: "实际发行量(亿))", |
| | | title: "实际发行量(亿)", |
| | | key: "IssueAmnt", |
| | | render: (h, params) => { |
| | | if (params.row.IssueAmnt) { |
| | |
| | | align: "center", |
| | | }); columns.push({ |
| | | title: "票面利率(%)", |
| | | key: "ItemStatus", |
| | | key: "ParCouponRate", |
| | | render: (h, params) => { |
| | | if (params.row.ItemStatus) { |
| | | return h("span", params.row.ItemStatus); |
| | | if (params.row.ParCouponRate) { |
| | | return h("span", params.row.ParCouponRate); |
| | | } else { |
| | | return h("span", "--"); |
| | | } |
| | |
| | | <div v-if="isShow"> |
| | | <div style="margin-top:0px"> |
| | | <span v-if="selectedName" style="display:inline-block;margin-top:8px;font-weight: 600;"> |
| | | {{ selectedName || realName }} ({{ IPODetail.TSCode }})</span> |
| | | {{ selectedName || realName }} {{ IPODetail.TSCode?`(${IPODetail.TSCode})`:'' }}</span> |
| | | <span> |
| | | <Button v-cloak v-if="accessShow === true && !disabledAdd === true" type="primary" |
| | | custom-icon="custom custom-tianjia" |
| | |
| | | return false |
| | | } |
| | | let reg_tel = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/; |
| | | let reg_name = /^[a-zA-Z]{4,20}$/; |
| | | let reg_name = /^[a-zA-Z0-9]{4,20}$/; |
| | | let reg_paw = /^(?=.*[a-zA-Z])(?=.*\d)(?=.*[@#$%^&+=!]).{6,20}$/; |
| | | let reg_code = /^\d{4}$/; |
| | | if (!this.form.phone || !this.form.code || !this.form.password || !this.form.userName) { |
| | |
| | | this.$Message.info("请补全信息"); |
| | | } else { |
| | | if (!reg_name.test(this.form.userName)) { |
| | | this.$Message.info("用户名必须是4-20位字母的组合!"); |
| | | this.$Message.info("用户名必须是4-20位字母和数字的组合!"); |
| | | } else if (!reg_tel.test(this.form.phone)) { |
| | | this.$Message.info("请填写正确手机账号!"); |
| | | } else if (!reg_paw.test(this.form.password)) { |