InvoiceHead.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. <template>
  2. <el-row>
  3. <el-col :span="24">
  4. <el-form
  5. ref="examForm"
  6. :model="examForm"
  7. :rules="examsThis"
  8. label-width="0px"
  9. :size="'mini'"
  10. class="demo-examForm-view"
  11. >
  12. <el-row :gutter="10">
  13. <el-col :span="24">
  14. <el-row :gutter="10">
  15. <el-col :span="1">
  16. <div class="tc">购</div>
  17. <div class="tc">买</div>
  18. <div class="tc">方</div>
  19. <div class="tc">信</div>
  20. <div class="tc">息</div>
  21. </el-col>
  22. <el-col :span="11">
  23. <el-form-item
  24. prop="buyer_name"
  25. :class="{ errorForm: ratioItem && !ratioItem.buyer_name }"
  26. >
  27. <el-input
  28. :readonly="isDetail"
  29. v-model="examForm.buyer_name"
  30. placeholder="请输入单位名称"
  31. ></el-input>
  32. </el-form-item>
  33. <el-form-item
  34. prop="buyer_id"
  35. :class="{ errorForm: ratioItem && !ratioItem.buyer_id }"
  36. >
  37. <el-input
  38. :readonly="isDetail"
  39. v-model="examForm.buyer_id"
  40. placeholder="请输入纳税人识别号"
  41. ></el-input>
  42. </el-form-item>
  43. <el-form-item
  44. prop="buyer_bank"
  45. :class="{ errorForm: ratioItem && !ratioItem.buyer_bank }"
  46. >
  47. <el-input
  48. :readonly="isDetail"
  49. v-model="examForm.buyer_bank"
  50. placeholder="请输入开户行及帐号"
  51. ></el-input>
  52. </el-form-item>
  53. <el-form-item
  54. prop="buyer_address"
  55. :class="{ errorForm: ratioItem && !ratioItem.buyer_address }"
  56. >
  57. <el-input
  58. :readonly="isDetail"
  59. v-model="examForm.buyer_address"
  60. placeholder="请输入地址、电话"
  61. ></el-input>
  62. </el-form-item>
  63. </el-col>
  64. <el-col :span="11">
  65. <el-form-item
  66. prop="seller_name"
  67. :class="{ errorForm: ratioItem && !ratioItem.seller_name }"
  68. >
  69. <el-input
  70. :readonly="isDetail"
  71. v-model="examForm.seller_name"
  72. placeholder="请输入单位名称"
  73. ></el-input>
  74. </el-form-item>
  75. <el-form-item
  76. prop="seller_id"
  77. :class="{ errorForm: ratioItem && !ratioItem.seller_id }"
  78. >
  79. <el-input
  80. :readonly="isDetail"
  81. v-model="examForm.seller_id"
  82. placeholder="请输入纳税人识别号"
  83. ></el-input>
  84. </el-form-item>
  85. <el-form-item
  86. prop="seller_bank"
  87. :class="{ errorForm: ratioItem && !ratioItem.seller_bank }"
  88. >
  89. <el-input
  90. :readonly="isDetail"
  91. v-model="examForm.seller_bank"
  92. placeholder="请输入开户行及帐号"
  93. ></el-input>
  94. </el-form-item>
  95. <el-form-item
  96. prop="seller_address"
  97. :class="{ errorForm: ratioItem && !ratioItem.seller_address }"
  98. >
  99. <el-input
  100. :readonly="isDetail"
  101. v-model="examForm.seller_address"
  102. placeholder="请输入地址、电话"
  103. ></el-input>
  104. </el-form-item>
  105. </el-col>
  106. <el-col :span="1">
  107. <div class="tc">销</div>
  108. <div class="tc">售</div>
  109. <div class="tc">方</div>
  110. <div class="tc">信</div>
  111. <div class="tc">息</div>
  112. </el-col>
  113. </el-row>
  114. </el-col>
  115. <el-col :span="24" style="text-align: right" v-if="!isDetail">
  116. <img
  117. v-viewer
  118. style="width: 80px; heigth: 52px"
  119. class="fl"
  120. :src="img"
  121. alt=""
  122. />
  123. <!-- <el-button type="primary" @click="abnormal"
  124. >已发现发票异常,重新修改发票
  125. </el-button> -->
  126. <el-button type="primary" @click="submitForm"
  127. >查看明细数据
  128. </el-button>
  129. </el-col>
  130. </el-row>
  131. </el-form>
  132. </el-col>
  133. </el-row>
  134. </template>
  135. <script>
  136. import asyncRequest from "@/apis/service/purchase/orderRecord";
  137. import resToken from "@/mixins/resToken";
  138. export default {
  139. name: "orderRecord",
  140. props: ["newTime", "oldItem", "newItem", "isDetail", "img", "ratioItem","id", "payNo", "companyNo"],
  141. mixins: [resToken],
  142. data() {
  143. return {
  144. examForm: {
  145. buyer_address: "",
  146. buyer_bank: "",
  147. buyer_id: "",
  148. buyer_name: "",
  149. seller_address: "",
  150. seller_bank: "",
  151. seller_id: "",
  152. seller_name: "",
  153. },
  154. examsThis: this.exams,
  155. exams: {
  156. buyer_address: [
  157. {
  158. required: true,
  159. message: "请输入购买方地址、电话",
  160. trigger: "blur",
  161. },
  162. ],
  163. buyer_bank: [
  164. {
  165. required: true,
  166. message: "请输入购买方开户行及帐号",
  167. trigger: "blur",
  168. },
  169. ],
  170. buyer_id: [
  171. {
  172. required: true,
  173. message: "请输入购买方纳税人识别号",
  174. trigger: "blur",
  175. },
  176. ],
  177. buyer_name: [
  178. { required: true, message: "请输入购买方单位名称", trigger: "blur" },
  179. ],
  180. seller_address: [
  181. {
  182. required: true,
  183. message: "请输入销售方地址、电话",
  184. trigger: "blur",
  185. },
  186. ],
  187. seller_bank: [
  188. {
  189. required: true,
  190. message: "请输入销售方开户行及帐号",
  191. trigger: "blur",
  192. },
  193. ],
  194. seller_id: [
  195. {
  196. required: true,
  197. message: "请输入销售方纳税人识别号",
  198. trigger: "blur",
  199. },
  200. ],
  201. seller_name: [
  202. { required: true, message: "请输入销售方单位名称", trigger: "blur" },
  203. ],
  204. },
  205. };
  206. },
  207. watch: {
  208. newTime: function (old, val) {
  209. if (old !== val) {
  210. this.initForm();
  211. }
  212. },
  213. },
  214. mounted() {
  215. this.initForm();
  216. },
  217. methods: {
  218. async initForm() {
  219. // console.log(this.payNo);
  220. this.loading = true;
  221. await this.resetForm();
  222. this.examsThis = this.exams;
  223. this.loading = false;
  224. },
  225. async abnormal() {
  226. console.log(this.id,this.payNo);
  227. this.loading = true;
  228. let model1 = {
  229. sid: this.id,
  230. payNo: this.payNo,
  231. status: "3",
  232. };
  233. let res = await asyncRequest.again(model1);
  234. if (res && res.code === 0) {
  235. const title = "异常已提交,成功返回上一步!";
  236. this.$notify.success({
  237. title,
  238. message: "",
  239. });
  240. this.showModelThis = false;
  241. // 刷新
  242. this.$emit("refreshAll");
  243. } else if (res && res.code >= 100 && res.code <= 104) {
  244. await this.logout();
  245. } else {
  246. this.$message.warning(res.message);
  247. }
  248. this.loading = false;
  249. },
  250. async resetForm() {
  251. // 重置
  252. await this.$nextTick(() => {
  253. if (this.$refs.examForm) {
  254. this.$refs.examForm.resetFields();
  255. this.$refs.examForm.clearValidate();
  256. if (this.newItem.buyer_address) {
  257. this.examForm.buyer_address = JSON.parse(
  258. JSON.stringify(this.newItem.buyer_address)
  259. );
  260. this.examForm.buyer_bank = JSON.parse(
  261. JSON.stringify(this.newItem.buyer_bank)
  262. );
  263. this.examForm.buyer_id = JSON.parse(
  264. JSON.stringify(this.newItem.buyer_id)
  265. );
  266. this.examForm.buyer_name = JSON.parse(
  267. JSON.stringify(this.newItem.buyer_name)
  268. );
  269. this.examForm.seller_address = JSON.parse(
  270. JSON.stringify(this.newItem.seller_address)
  271. );
  272. this.examForm.seller_bank = JSON.parse(
  273. JSON.stringify(this.newItem.seller_bank)
  274. );
  275. this.examForm.seller_id = JSON.parse(
  276. JSON.stringify(this.newItem.seller_id)
  277. );
  278. this.examForm.seller_name = JSON.parse(
  279. JSON.stringify(this.newItem.seller_name)
  280. );
  281. }
  282. }
  283. });
  284. },
  285. async submitForm() {
  286. await this.$refs.examForm.validate(async (valid) => {
  287. if (valid) {
  288. this.loading = true;
  289. const obj = JSON.parse(JSON.stringify(this.examForm));
  290. if (obj.buyer_address !== this.oldItem.buyer_address) {
  291. console.log(obj.buyer_address);
  292. console.log(this.oldItem.buyer_address);
  293. this.$message.error("购买方地址、电话不正确!");
  294. return;
  295. }
  296. if (obj.buyer_bank !== this.oldItem.buyer_bank) {
  297. this.$message.error("购买方开户行及帐号不正确!");
  298. return;
  299. }
  300. if (obj.buyer_id !== this.oldItem.buyer_id) {
  301. this.$message.error("购买方纳税人识别号不正确!");
  302. return;
  303. }
  304. if (obj.buyer_name !== this.oldItem.buyer_name) {
  305. this.$message.error("购买方单位名称不正确!");
  306. return;
  307. }
  308. let arr = [];
  309. for (let i in obj) {
  310. if (obj[i] !== this.newItem[i]) {
  311. arr.push(i);
  312. }
  313. }
  314. obj.field = arr;
  315. this.loading = false;
  316. this.$emit("nextStep", obj);
  317. } else {
  318. console.log("error submit!!");
  319. return false;
  320. }
  321. });
  322. },
  323. },
  324. };
  325. </script>
  326. <style lang="scss" scoped>
  327. .orderRecord {
  328. .setWidth {
  329. width: 100% !important;
  330. // display: flex;
  331. // display: block !important;
  332. // .el-input__inner {
  333. // display: flex;
  334. // width: 1000px !important;
  335. // display: block !important;
  336. // }
  337. }
  338. .imgrq {
  339. max-width: 100%;
  340. display: flex;
  341. display: -webkit-flex;
  342. justify-content: space-between;
  343. flex-direction: row;
  344. flex-wrap: wrap;
  345. padding-bottom: 12px;
  346. li {
  347. width: 80px;
  348. height: 52px;
  349. border: 2px solid transparent;
  350. &.active {
  351. border: 2px solid #63cbe7;
  352. }
  353. img {
  354. display: inline-block;
  355. width: 100%;
  356. height: 100%;
  357. }
  358. }
  359. }
  360. .buy-title {
  361. display: flex;
  362. text-align: center;
  363. align-items: flex-end;
  364. padding-bottom: 20px;
  365. > div {
  366. width: 100%;
  367. display: block;
  368. font-size: 17px;
  369. font-family: "Microsoft Yahei", sans-serif;
  370. color: #606266;
  371. font-weight: 700;
  372. }
  373. }
  374. .el-carousel__item h3 {
  375. color: #475669;
  376. font-size: 14px;
  377. opacity: 0.75;
  378. line-height: 200px;
  379. margin: 0;
  380. }
  381. .el-carousel__item:nth-child(2n) {
  382. background-color: #99a9bf;
  383. }
  384. .el-carousel__item:nth-child(2n + 1) {
  385. background-color: #d3dce6;
  386. }
  387. .scale {
  388. li {
  389. height: 40px;
  390. line-height: 40px;
  391. &.fuhao {
  392. width: 40px;
  393. height: 40px;
  394. line-height: 40px;
  395. text-align: center;
  396. i {
  397. width: 40px;
  398. height: 40px;
  399. text-align: center;
  400. line-height: 40px;
  401. color: #97a8be;
  402. font-size: 20px;
  403. }
  404. &.dengyu {
  405. i {
  406. // font-size: 26px;
  407. transform: rotate(90deg);
  408. -ms-transform: rotate(90deg); /* IE 9 */
  409. -moz-transform: rotate(90deg); /* Firefox */
  410. -webkit-transform: rotate(90deg); /* Safari 和 Chrome */
  411. -o-transform: rotate(90deg);
  412. }
  413. }
  414. }
  415. .Addend {
  416. i.fuhao-i {
  417. width: 40px;
  418. height: 40px;
  419. text-align: center;
  420. line-height: 40px;
  421. color: #97a8be;
  422. font-size: 20px;
  423. }
  424. }
  425. }
  426. }
  427. }
  428. </style>