lhl 4 hónapja
szülő
commit
8a5560a813

+ 10 - 0
src/api/finance.js

@@ -281,4 +281,14 @@ export function djList(data) {
 		method: 'get',
 		params: data
 	});
+}
+
+//添加资金流动记录
+//adminapi/finance/flow/create _flow
+export function addFlow(data) {
+	return request({
+		url: `/finance/flow/create_flow`,
+		method: 'post',
+		data
+	});
 }

+ 2 - 1
src/pages/order/serveList/index.vue

@@ -79,7 +79,8 @@
 					</div>
 				</template>
 				<template slot-scope="{ row, index }" slot="pay_price">
-					<span class="tabBox_pice">{{'¥' +(((showPrice(row.info)*100 - (row.coupon_price*100))/100).toFixed(2) > 0 ? ((showPrice(row.info)*100 - (row.coupon_price*100))/100).toFixed(2): '0.00')   }}</span>
+					<!-- <span class="tabBox_pice">{{'¥' +(((showPrice(row.info)*100 - (row.coupon_price*100))/100).toFixed(2) > 0 ? ((showPrice(row.info)*100 - (row.coupon_price*100))/100).toFixed(2): '0.00')   }}</span> -->
+					<span class="tabBox_pice">{{'¥' +(((showPrice(row.info)*100)/100).toFixed(2))   }}</span>
 				</template>
 				<template slot-scope="{ row, index }" slot="reservation_time">
 					<span class="tabBox_pice">{{showTime(row.reservation_time)}}</span>

+ 16 - 0
src/pages/product/productAdd/index.vue

@@ -56,6 +56,11 @@
 					<FormItem label="商品名称:" prop="store_name">
 						<Input v-model="formValidate.store_name" placeholder="请输入商品名称" v-width="'50%'" />
 					</FormItem>
+					<Col span="24">
+					<FormItem label="服务时间(分钟):" prop="service_time" v-if="formValidate.product_type == 6">
+						<Input v-model="formValidate.service_time" placeholder="请输入服务时间(分钟)" v-width="'50%'" :min="0"></Input>
+					</FormItem>
+					</Col>
 					</Col>
 					<Col span="24" class="brandName">
 					<FormItem label="商品品牌:" prop="">
@@ -1091,6 +1096,14 @@
 				</Row>
 				<!-- 其他设置-->
 				<Row v-show="currentTab === '6'">
+					<Col span="24" class="ml10">
+						<FormItem label="享受会员折扣:" prop="">
+					<RadioGroup v-model="formValidate.vip_unaffected" class="radioGroup">
+						<Radio :label="0">享受</Radio>
+						<Radio :label="1">不享受</Radio>
+					</RadioGroup>
+					</FormItem>
+					</Col>
 					<Col span="24">
 					<FormItem label="商品关键字:" prop="">
 						<Input v-model="formValidate.keyword" placeholder="请输入商品关键字" v-width="'50%'" />
@@ -1810,6 +1823,7 @@
 					auto_on_time: '',
 					video_open: false, //视频按钮是否显示
 					store_name: "",
+					service_time: '',
 					freight: 1, //运费设置
 					postage: 0, //设置运费金额
 					custom_form: [], //自定义留言
@@ -1817,6 +1831,7 @@
 					label_id: [],
 					ensure_id: [],
 					keyword: "",
+					vip_unaffected: 0,
 					product_ratio:0,
 					bonus_ratio: 0,
 					top:0,
@@ -1915,6 +1930,7 @@
 				picTit: "",
 				tableIndex: 0,
 				ruleValidate: {
+					
 					store_name: [{
 						required: true,
 						message: "请输入商品名称",

+ 525 - 393
src/pages/statistic/capital/index.vue

@@ -1,403 +1,535 @@
 <template>
-<!-- 财务-资金流水 -->
-  <div>
-    <Card :bordered="false" dis-hover class="ivu-mt box">
-      <!-- 查询条件 -->
-      <Form
-        ref="formValidate"
-        inline
-        :model="formValidate"
-        :label-width="labelWidth"
-        :label-position="labelPosition"
-        @submit.native.prevent
-      >
-        <FormItem label="创建时间:">
-          <DatePicker
-            :editable="false"
-            @on-change="onchangeTime"
-            :value="timeVal"
-            format="yyyy/MM/dd HH:mm"
-            type="datetimerange"
-            placement="bottom-start"
-            placeholder="自定义时间"
-            class="input-add"
-            :options="options"
-          ></DatePicker>
-        </FormItem>
-        <FormItem label="交易类型:">
-          <Select
-            v-model="formValidate.trading_type"
-            placeholder="请选择"
-            clearable
-            @on-change="search"
-             class="input-add"
-          >
-            <Option
-              :label="item"
-              :value="index"
-              v-for="(item, index) in withdrawal"
-              :key="index"
-              >{{ item }}</Option
-            >
-          </Select>
-        </FormItem>
-        <FormItem label="订单搜索:" label-for="status1">
-          <Input
-            @on-search="getList"
- 
-            v-model="formValidate.keywords"
-            placeholder="订单号/昵称/电话/用户ID"
-             class="input-add mr14"
-          ></Input>
-          <Button type="primary" @click="search()">查询</Button>
-        </FormItem>
-      </Form>
-    </Card>
+	<!-- 财务-资金流水 -->
+	<div>
+		<Card :bordered="false" dis-hover class="ivu-mt box">
+			<!-- 查询条件 -->
+			<Form ref="formValidate" inline :model="formValidate" :label-width="labelWidth"
+				:label-position="labelPosition" @submit.native.prevent>
+				<FormItem label="创建时间:">
+					<DatePicker :editable="false" @on-change="onchangeTime" :value="timeVal" format="yyyy/MM/dd HH:mm"
+						type="datetimerange" placement="bottom-start" placeholder="自定义时间" class="input-add"
+						:options="options"></DatePicker>
+				</FormItem>
+				<FormItem label="交易类型:">
+					<Select v-model="formValidate.trading_type" placeholder="请选择" clearable @on-change="search"
+						class="input-add">
+						<Option :label="item" :value="index" v-for="(item, index) in withdrawal" :key="index">{{ item }}
+						</Option>
+					</Select>
+				</FormItem>
+				<FormItem label="订单搜索:" label-for="status1">
+					<Input @on-search="getList" v-model="formValidate.keywords" placeholder="订单号/昵称/电话/用户ID"
+						class="input-add mr14"></Input>
+					<Button type="primary" @click="search()">查询</Button>
+					<Button class="ml14" @click="add()">添加</Button>
+				</FormItem>
+			</Form>
+		</Card>
 
-    <Card :bordered="false" dis-hover class="ive-mt tablebox">
-      <div class="btnbox"></div>
-      <div class="table">
-        <!-- 表格 -->
-        <Table
-          :columns="columns"
-          :data="tabList"
-          ref="table"
-          :loading="loading"
-          highlight-row
-          no-userFrom-text="暂无数据"
-          no-filtered-userFrom-text="暂无筛选结果"
-        >
-          <template slot-scope="{ row }" slot="price">
-            <span :class="Number(row.price) < 0 ? 'colorgreen' : 'colorred'">{{
+		<Card :bordered="false" dis-hover class="ive-mt tablebox">
+			<div class="btnbox"></div>
+			<div class="table">
+				<!-- 表格 -->
+				<Table :columns="columns" :data="tabList" ref="table" :loading="loading" highlight-row
+					no-userFrom-text="暂无数据" no-filtered-userFrom-text="暂无筛选结果">
+					<template slot-scope="{ row }" slot="price">
+						<span :class="Number(row.price) < 0 ? 'colorgreen' : 'colorred'">{{
               row.price
             }}</span>
-          </template>
-          <template slot-scope="{ row }" slot="user_nickname">
-            <span>{{ row.uid ? row.user_nickname : "游客" }}</span>
-          </template>
-          <template slot-scope="{ row }" slot="action">
-            <a @click="remark(row)">备注</a>
-          </template>
-        </Table>
-      </div>
-      <div class="acea-row row-right page">
-        <Page
-          :total="total"
-          :current="formValidate.page"
-          show-elevator
-          show-total
-          @on-change="pageChange"
-          :page-size="formValidate.limit"
-        />
-      </div>
-    </Card>
-    <!-- 备注 -->
-    <Modal
-      v-model="modalmark"
-      scrollable
-      title="请修改内容"
-      class="order_box"
-      :closable="false"
-      :mask-closable="false"
-    >
-      <Form
-        ref="remarks"
-        :model="remarks"
-        :label-width="80"
-        @submit.native.prevent
-      >
-        <FormItem label="备注:">
-          <Input
-            v-model="remarks.mark"
-            maxlength="200"
-            show-word-limit
-            type="textarea"
-            placeholder="请填写备注~"
-            style="width: 100%"
-          />
-        </FormItem>
-      </Form>
-      <div slot="footer">
-        <Button type="primary" @click="putRemark()">提交</Button>
-        <Button @click="cancel()">取消</Button>
-      </div>
-    </Modal>
-  </div>
+					</template>
+					<template slot-scope="{ row }" slot="user_nickname">
+						<span>{{ row.uid ? row.user_nickname : "游客" }}</span>
+					</template>
+					<template slot-scope="{ row }" slot="action">
+						<a @click="remark(row)">备注</a>
+					</template>
+				</Table>
+			</div>
+			<div class="acea-row row-right page">
+				<Page :total="total" :current="formValidate.page" show-elevator show-total @on-change="pageChange"
+					:page-size="formValidate.limit" />
+			</div>
+		</Card>
+		<!-- 备注 -->
+		<Modal v-model="modalmark" scrollable title="请修改内容" class="order_box" :closable="false" :mask-closable="false">
+			<Form ref="remarks" :model="remarks" :label-width="80" @submit.native.prevent>
+				<FormItem label="备注:">
+					<Input v-model="remarks.mark" maxlength="200" show-word-limit type="textarea" placeholder="请填写备注~"
+						style="width: 100%" />
+				</FormItem>
+			</Form>
+			<div slot="footer">
+				<Button type="primary" @click="putRemark()">提交</Button>
+				<Button @click="cancel()">取消</Button>
+			</div>
+		</Modal>
+		<Modal v-model="modal" scrollable title="添加" class="order_box" :closable="false" :mask-closable="false">
+			<Form ref="adds" :model="adds" :label-width="80" @submit.native.prevent>
+				<FormItem label="门店:">
+					<Select v-model="adds.uid">
+						<Option v-for="item in storeList" :value="item.value" :key="item.value">{{ item.label }}</Option>
+					</Select>
+					<!-- <Input v-model="adds.pay_type" type="text" placeholder="请输入支付方式" style="width: 100%" /> -->
+				</FormItem>
+				<FormItem label="金额:">
+					<Input v-model="adds.price" type="number" placeholder="请输入金额" style="width: 100%" />
+				</FormItem>
+				
+				<FormItem label="支付方式:">
+					<Select v-model="adds.pay_type">
+						<Option v-for="item in payTypeList" :value="item.value" :key="item.value">{{ item.label }}</Option>
+					</Select>
+					<!-- <Input v-model="adds.pay_type" type="text" placeholder="请输入支付方式" style="width: 100%" /> -->
+				</FormItem>
+				<FormItem label="类型:">
+					<Select v-model="adds.type">
+						<Option v-for="item in typeList" :value="item.value" :key="item.value">{{ item.label }}</Option>
+					</Select>
+					<!-- <Input v-model="adds.pay_type" type="text" placeholder="请输入支付方式" style="width: 100%" /> -->
+				</FormItem>
+				<FormItem label="备注:">
+					<Input v-model="adds.mark" maxlength="200" show-word-limit type="textarea" placeholder="请填写备注~"
+						style="width: 100%" />
+				</FormItem>
+			</Form>
+			<div slot="footer">
+				<Button type="primary" @click="putRemarks()">提交</Button>
+				<Button @click="cancels()">取消</Button>
+			</div>
+		</Modal>
+	</div>
 </template>
 
 <script>
-import { mapState } from "vuex";
-import { getFlowList, setMarks } from "@/api/statistic";
-import timeOptions from "@/utils/timeOptions";
-export default {
-  name: "order",
-  data() {
-    return {
-      modalmark: false,
-      options: timeOptions,
-      remarks: {
-        mark: "",
-      },
-      staff: [],
-      total: 0,
-      grid: {
-        xl: 7,
-        lg: 7,
-        md: 12,
-        sm: 24,
-        xs: 24,
-      },
-      loading: false,
-      columns: [
-        {
-          title: "交易单号",
-          key: "flow_id",
-          minWidth: 180,
-        },
-        {
-          title: "关联订单",
-          key: "order_id",
-          minWidth: 180,
-        },
-        {
-          title: "交易金额",
-          slot: "price",
-          minWidth: 80,
-        },
-        {
-          title: "交易用户",
-          key: "nickname",
-          ellipsis: true,
-          minWidth: 80,
-        },
-        {
-          title: "交易时间",
-          key: "add_time",
-          minWidth: 150,
-        },
-        {
-          title: "交易类型",
-          key: "trading_type",
-          minWidth: 80,
-        },
-        {
-          title: "支付方式",
-          key: "pay_type",
-          minWidth: 80,
-        },
-        {
-          title: "备注",
-          key: "mark",
-          minWidth: 120,
-        },
-        {
-          title: "操作",
-          slot: "action",
-          // fixed: "right",
-          minWidth: 80,
-          align: "center",
-        },
-      ],
-      tabList: [],
-      withdrawal: [],
-      formValidate: {
-        trading_type: '',
-        time: "",
-        keywords: "",
-        page: 1,
-        limit: 20,
-      },
-      timeVal: [],
-      fromList: {
-        title: "选择时间",
-        custom: true,
-        fromTxt: [
-          { text: "全部", val: "" },
-          { text: "昨天", val: "yesterday" },
-          { text: "今天", val: "today" },
-          { text: "本周", val: "week" },
-          { text: "本月", val: "month" },
-          { text: "本季度", val: "quarter" },
-          { text: "本年", val: "year" },
-        ],
-      },
-    };
-  },
-  computed: {
-    ...mapState("admin/layout", ["isMobile"]),
-    labelWidth() {
-      return this.isMobile ? undefined : 96;
-    },
-    labelPosition() {
-      return this.isMobile ? "top" : "right";
-    },
-  },
-  mounted() {
-    this.getList();
-  },
-  methods: {
-    getList() {
-      this.loading = true;
-      getFlowList(this.formValidate)
-        .then(async (res) => {
-          let data = res.data;
-          this.tabList = data.list;
-          this.total = data.count;
-          this.withdrawal = data.status;
-          this.loading = false;
-        })
-        .catch((res) => {
-          this.loading = false;
-          this.$Message.error(res.msg);
-        });
-    },
-    search() {
-      this.formValidate.page = 1;
-      // this.formValidate.trading_type = e;
-      this.getList();
-    },
-    reset() {
-      this.formValidate = {
-        trading_type: 0,
-        time: "",
-        keywords: "",
-        page: 1,
-        limit: 20,
-      };
-      this.timeVal = [];
-      this.getList();
-    },
-    // 选择时间
-    selectChange(tab) {
-      this.formValidate.page = 1;
-      this.formValidate.time = tab;
-      this.timeVal = [];
-      this.getList();
-    },
-    // 具体日期
-    onchangeTime(e) {
-      this.timeVal = e;
-      this.formValidate.time = this.timeVal[0] ? this.timeVal.join("-") : "";
-      this.formValidate.page = 1;
-      this.getList();
-    },
-    //分页
-    pageChange(status) {
-      this.formValidate.page = status;
-      this.getList();
-    },
-    remark(e) {
-      this.remarkId = e.id;
-      this.modalmark = true;
-      this.remarks.mark = e.mark;
-    },
-    //备注的提交
-    putRemark() {
-      this.modalmark = false;
-      setMarks(this.remarkId, this.remarks)
-        .then((res) => {
-          this.$Message.success(res.msg);
-          this.modal_loading = false;
-          this.modals = false;
-          this.getList();
-        })
-        .catch((err) => {
-          this.modal_loading = false;
-          this.$Message.error(err.msg);
-        });
-    },
-    // 取消备注按钮
-    cancel() {
-      this.remarks = { mark: "" };
-      this.modalmark = false;
-    },
-  },
-};
+	import {
+		mapState
+	} from "vuex";
+	import {
+		getFlowList,
+		setMarks
+	} from "@/api/statistic";
+	import timeOptions from "@/utils/timeOptions";
+	import {
+		addFlow
+	} from '@/api/finance'
+	import { storeListApi } from '@/api/store.js'
+	export default {
+		name: "order",
+		data() {
+			return {
+				storeList: [],
+				typeList: [
+					{
+						value: 11,
+						label: '租金'
+					},
+					{
+						value: 12,
+						label: '水电费'
+					},
+					{
+						value: 13,
+						label: '费易耗品'
+					},
+				],
+				payTypeList:[
+				{
+					value: 'weixin',
+					label: '微信'
+				},
+				{
+					value: 'yue',
+					label: '余额'
+				},
+				{
+					value: 'offline',
+					label: '线下'
+				},
+				{
+					value: 'alipay',
+					label: '支付宝'
+				},
+				{
+					value: 'cash',
+					label: '现金'
+				}	
+				] 
+					
+				,
+				modals: false,
+				modal: false,
+				modalmark: false,
+				options: timeOptions,
+				remarks: {
+					mark: "",
+				},
+				adds: {
+					add: '增加',
+					name: '',
+					price: '',
+					uid: '',
+					pay_type: '',
+					mark: '',
+				},
+				staff: [],
+				total: 0,
+				grid: {
+					xl: 7,
+					lg: 7,
+					md: 12,
+					sm: 24,
+					xs: 24,
+				},
+				loading: false,
+				columns: [{
+						title: "交易单号",
+						key: "flow_id",
+						minWidth: 180,
+					},
+					{
+						title: "关联订单",
+						key: "order_id",
+						minWidth: 180,
+					},
+					{
+						title: "交易金额",
+						slot: "price",
+						minWidth: 80,
+					},
+					{
+						title: "交易用户",
+						key: "nickname",
+						ellipsis: true,
+						minWidth: 80,
+					},
+					{
+						title: "交易时间",
+						key: "add_time",
+						minWidth: 150,
+					},
+					{
+						title: "交易类型",
+						key: "trading_type",
+						minWidth: 80,
+					},
+					{
+						title: "支付方式",
+						key: "pay_type",
+						minWidth: 80,
+					},
+					{
+						title: "备注",
+						key: "mark",
+						minWidth: 120,
+					},
+					{
+						title: "操作",
+						slot: "action",
+						// fixed: "right",
+						minWidth: 80,
+						align: "center",
+					},
+				],
+				tabList: [],
+				withdrawal: [],
+				formValidate: {
+					trading_type: '',
+					time: "",
+					keywords: "",
+					page: 1,
+					limit: 20,
+				},
+				timeVal: [],
+				fromList: {
+					title: "选择时间",
+					custom: true,
+					fromTxt: [{
+							text: "全部",
+							val: ""
+						},
+						{
+							text: "昨天",
+							val: "yesterday"
+						},
+						{
+							text: "今天",
+							val: "today"
+						},
+						{
+							text: "本周",
+							val: "week"
+						},
+						{
+							text: "本月",
+							val: "month"
+						},
+						{
+							text: "本季度",
+							val: "quarter"
+						},
+						{
+							text: "本年",
+							val: "year"
+						},
+					],
+				},
+			};
+		},
+		computed: {
+			...mapState("admin/layout", ["isMobile"]),
+			labelWidth() {
+				return this.isMobile ? undefined : 96;
+			},
+			labelPosition() {
+				return this.isMobile ? "top" : "right";
+			},
+		},
+		mounted() {
+			this.getList();
+			this.storeListApi()
+		},
+		methods: {
+			storeListApi() {
+				storeListApi({
+					page: 1,
+					limit: 100
+				}).then(res => {
+					this.storeList = res.data.list.map(item => {
+						return {
+							value: item.id,
+							label: item.name
+						}
+					})
+				})
+			},
+			getStoreId(data) {
+				this.modals = false;
+				let list = this.storesList.concat(data);
+				let uni = this.unique(list);
+				this.storesList = uni;
+			},
+			getProductId(res) {
+				console.log(res);
+				this.modals = false;
+				this.adds.uid = res.uid
+				this.adds.name = res.name
+			},
+			getList() {
+				this.loading = true;
+				getFlowList(this.formValidate)
+					.then(async (res) => {
+						let data = res.data;
+						this.tabList = data.list;
+						this.total = data.count;
+						this.withdrawal = data.status;
+						this.loading = false;
+					})
+					.catch((res) => {
+						this.loading = false;
+						this.$Message.error(res.msg);
+					});
+			},
+			search() {
+				this.formValidate.page = 1;
+				// this.formValidate.trading_type = e;
+				this.getList();
+			},
+			add() {
+				this.modal = true
+			},
+			reset() {
+				this.formValidate = {
+					trading_type: 0,
+					time: "",
+					keywords: "",
+					page: 1,
+					limit: 20,
+				};
+				this.timeVal = [];
+				this.getList();
+			},
+			// 选择时间
+			selectChange(tab) {
+				this.formValidate.page = 1;
+				this.formValidate.time = tab;
+				this.timeVal = [];
+				this.getList();
+			},
+			// 具体日期
+			onchangeTime(e) {
+				this.timeVal = e;
+				this.formValidate.time = this.timeVal[0] ? this.timeVal.join("-") : "";
+				this.formValidate.page = 1;
+				this.getList();
+			},
+			//分页
+			pageChange(status) {
+				this.formValidate.page = status;
+				this.getList();
+			},
+			remark(e) {
+				this.remarkId = e.id;
+				this.modalmark = true;
+				this.remarks.mark = e.mark;
+			},
+			//备注的提交
+			putRemark() {
+				this.modalmark = false;
+				setMarks(this.remarkId, this.remarks)
+					.then((res) => {
+						this.$Message.success(res.msg);
+						this.modal_loading = false;
+						this.modals = false;
+						this.getList();
+					})
+					.catch((err) => {
+						this.modal_loading = false;
+						this.$Message.error(err.msg);
+					});
+			},
+			putRemarks() {
+				if(this.adds.uid == '') {
+					return this.$Message.error('请选择门店');
+				}
+				if(this.adds.type == '') {
+					return this.$Message.error('请选择类型');
+				}
+				if(this.adds.pay_type == '') {
+					return this.$Message.error('请选择支付方式');
+				}
+				if(this.adds.price == '') {
+					return this.$Message.error('请输入金额');
+				}
+				addFlow({
+					type: this.adds.type,
+					price: this.adds.price,
+					store_id: this.adds.uid,
+					pay_type: this.adds.pay_type,
+					mark: this.adds.mark
+				}).then(res => {
+					this.$Message.success(res.msg);
+					this.modal = false
+					this.getList();
+				}).catch((err) => {
+					this.$Message.error(err.msg);
+				});
+			},
+			// 取消备注按钮
+			cancel() {
+				this.remarks = {
+					mark: ""
+				};
+				this.modalmark = false;
+			},
+			cancels() {
+				// this.remarks = {
+				// 	mark: ""
+				// };
+				this.modal = false;
+			},
+		},
+	};
 </script>
 
 <style scoped lang="less">
-.input-add {
- width: 250px;
-}
-.mr14 {
-  margin-right: 14px
-}
-/deep/.ivu-page-header,
-/deep/.ivu-tabs-bar {
-  border-bottom: 1px solid #ffffff;
-}
-/deep/.ivu-card-body {
-  padding: 0;
-}
-/deep/.ivu-tabs-nav {
-  height: 45px;
-}
-/deep/.ivu-form-label-left .ivu-form-item-label {
-  text-align: right;
-}
-.topbox {
-  padding: 20px;
-  font-size: 18px;
-  font-weight: 500;
-}
-.page {
-  padding-right: 30px;
-  padding-bottom: 10px;
-}
-.box {
-  padding: 20px;
-  padding-bottom: 0px;
-}
-.tablebox {
-  margin-top: 15px;
-  padding-bottom: 10px;
-}
-.btnbox {
-  padding: 20px 0px 0px 30px;
-  .btns {
-    width: 99px;
-    height: 32px;
-    background: #1890ff;
-    border-radius: 4px;
-    text-align: center;
-    line-height: 32px;
-    color: #ffffff;
-    cursor: pointer;
-  }
-}
-.table {
-  padding: 0px 30px 15px 30px;
-}
-.colorred {
-  color: #ff5722;
-}
-.colorgreen {
-  color: #009688;
-}
-.search {
-  width: 86px;
-  height: 32px;
-  background: #1890ff;
-  border-radius: 4px;
-  text-align: center;
-  line-height: 32px;
-  font-size: 13px;
-  font-family: PingFangSC-Regular, PingFang SC;
-  font-weight: 400;
-  color: #ffffff;
-  cursor: pointer;
-}
-.reset {
-  width: 86px;
-  height: 32px;
-  border-radius: 4px;
-  border: 1px solid rgba(151, 151, 151, 0.36);
-  text-align: center;
-  line-height: 32px;
-  font-size: 13px;
-  font-family: PingFangSC-Regular, PingFang SC;
-  font-weight: 400;
-  color: rgba(0, 0, 0, 0.85);
-  cursor: pointer;
-}
-</style>
+	.input-add {
+		width: 250px;
+	}
+
+	.mr14 {
+		margin-right: 14px
+	}
+
+	/deep/.ivu-page-header,
+	/deep/.ivu-tabs-bar {
+		border-bottom: 1px solid #ffffff;
+	}
+
+	/deep/.ivu-card-body {
+		padding: 0;
+	}
+
+	/deep/.ivu-tabs-nav {
+		height: 45px;
+	}
+
+	/deep/.ivu-form-label-left .ivu-form-item-label {
+		text-align: right;
+	}
+
+	.topbox {
+		padding: 20px;
+		font-size: 18px;
+		font-weight: 500;
+	}
+
+	.page {
+		padding-right: 30px;
+		padding-bottom: 10px;
+	}
+
+	.box {
+		padding: 20px;
+		padding-bottom: 0px;
+	}
+
+	.tablebox {
+		margin-top: 15px;
+		padding-bottom: 10px;
+	}
+
+	.btnbox {
+		padding: 20px 0px 0px 30px;
+
+		.btns {
+			width: 99px;
+			height: 32px;
+			background: #1890ff;
+			border-radius: 4px;
+			text-align: center;
+			line-height: 32px;
+			color: #ffffff;
+			cursor: pointer;
+		}
+	}
+
+	.table {
+		padding: 0px 30px 15px 30px;
+	}
+
+	.colorred {
+		color: #ff5722;
+	}
+
+	.colorgreen {
+		color: #009688;
+	}
+
+	.search {
+		width: 86px;
+		height: 32px;
+		background: #1890ff;
+		border-radius: 4px;
+		text-align: center;
+		line-height: 32px;
+		font-size: 13px;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: #ffffff;
+		cursor: pointer;
+	}
+
+	.reset {
+		width: 86px;
+		height: 32px;
+		border-radius: 4px;
+		border: 1px solid rgba(151, 151, 151, 0.36);
+		text-align: center;
+		line-height: 32px;
+		font-size: 13px;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: rgba(0, 0, 0, 0.85);
+		cursor: pointer;
+	}
+</style>