From 74736f94e4fa4952802a95536097a83ad25ea662 Mon Sep 17 00:00:00 2001 From: amaguri1505 Date: Fri, 18 Jun 2021 15:58:30 +0900 Subject: [PATCH] #1 --- .ideavimrc | 1 + ..._alter_insurance_from_house_properties.php | 32 +++++++++++++++++++ public/js/app.js | 6 ++-- .../components/organism/corp/CorpRegister.vue | 5 ++- 4 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 .ideavimrc create mode 100644 database/migrations/2021_06_18_034112_alter_insurance_from_house_properties.php diff --git a/.ideavimrc b/.ideavimrc new file mode 100644 index 0000000..2febb38 --- /dev/null +++ b/.ideavimrc @@ -0,0 +1 @@ +set surround diff --git a/database/migrations/2021_06_18_034112_alter_insurance_from_house_properties.php b/database/migrations/2021_06_18_034112_alter_insurance_from_house_properties.php new file mode 100644 index 0000000..97f9b10 --- /dev/null +++ b/database/migrations/2021_06_18_034112_alter_insurance_from_house_properties.php @@ -0,0 +1,32 @@ +string('insurance')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('house_properties', function (Blueprint $table) { + $table->dropColumn('insurance'); + }); + } +} diff --git a/public/js/app.js b/public/js/app.js index 4afeb01..37ffe48 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -10947,7 +10947,6 @@ __webpack_require__.r(__webpack_exports__); // // // -// /* harmony default export */ __webpack_exports__["default"] = ({ @@ -67021,9 +67020,8 @@ var render = function() { [ _c("v-text-field", { attrs: { - count: 10, - type: "number", - prefix: "¥", + count: 200, + rules: _vm.rule_limit200, label: "保険等" }, model: { diff --git a/resources/js/components/organism/corp/CorpRegister.vue b/resources/js/components/organism/corp/CorpRegister.vue index 2974965..00bdda1 100644 --- a/resources/js/components/organism/corp/CorpRegister.vue +++ b/resources/js/components/organism/corp/CorpRegister.vue @@ -236,9 +236,8 @@